/* *{
  border: 1px solid red;
 
} */
h2, h4, h5{
  font-family: "Roboto", serif;
}
p{
  font-family:Arial, Helvetica, sans-serif;
}
.headingfont{
    font-family: "Roboto", serif;
    font-weight: 700;
    
}
.size{
    font-size: 50px;
}
.subheadingfont{
    font-family:Arial, Helvetica, sans-serif;
}

/* navbar */

.navbar {
    position: fixed; /* Fix the navbar at the top of the page */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it appears above the video */
   
  }
  #scroll-logo {
    display: none; /* Hidden by default */
  }
  
  #default-logo {
    display: block; /* Visible by default */
  }
  
  .navbar.scrolled #scroll-logo {
    display: block; /* Show the scroll logo when scrolled */
  }
  
  .navbar.scrolled #default-logo {
    display: none; /* Hide the default logo when scrolled */
  }
  
  .navbar.scrolled {
    background-color: #ffffff; /* White background */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for visibility */
    transition: all 0.3s ease; /* Smooth transition for style changes */
   }
   .navbar.scrolled .nav-link{
    color: #000!important;
   } 
   .navbar.scrolled .nav-link:hover{
    color: #ffffff!important;
   } 
  .nav-link{
    color: white!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
    font-family: "Roboto", serif;
  }
  .nav-item.dropdown .dropdown-menu {
    display: none; /* Hide the dropdown menu */
    position: absolute; /* Ensures it appears correctly */
  }
  
  /* Show the dropdown menu on hover */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block; /* Display the dropdown menu */
  }
  
  /* Optional: Adjust positioning */
  .nav-item.dropdown .dropdown-menu {
    top: 100%; /* Position directly below the parent */
    left: -100%;   /* Align with the parent */
    z-index: 1000; /* Ensure it appears above other elements */
    
  }
  .megamenu{
    width: 600px;
    
  }
  .megamenutitle::after{
    content: ""; /* Required to make the pseudo-element appear */
    display: block;
    width: 75%; /* Adjust as needed */
    border-bottom: 2px solid rgb(48, 171, 219) !important;
    margin-top: 10px; /* Optional: Adds spacing between the underline and the text */
    
  }
  /* Styling for smooth transitions (optional) */
  .nav-item.dropdown .dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .active{
    color: rgb(0, 204, 255)!important;
  }
  .active:hover{
    color: #ffffff!important;
  }
  .nav-link {
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    color: #000; /* Base text color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth color change */
  }
  
  .nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    overflow: hidden; /* Ensures background effect stays within the link */
    transition: color 0.3s ease; /* Smooth color change */
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start the background off-screen */
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #4ea3fd, #0067d4); /* Gradient background */
    z-index: -1; /* Push behind the text */
    transition: left 0.3s ease; /* Smooth animation for sliding effect */
  }
  
  .nav-link:hover {
    color: #fff; /* Text color changes to white on hover */
  }
  
  .nav-link:hover::before {
    left: 0; /* Slide the background into view */
  }
  
  /* hero section */
  /* For the video background */
  .video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
    z-index: -1; /* Puts the video behind the content */
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    color: white;
 
    z-index: 1; /* Keeps the content on top of the video */
 
  }


 .hero-img {
    height: 350px;
    width: 100%;
  }

  @media (min-width: 768px) {
   .hero-img{
      height: 450px;
    }
  }

  @media (min-width: 992px) {
    .hero-img {
       height: 580px;
    }
   }

   .row {
    position: relative;
  }
  
  
  .content {
    position: absolute;
    top: 60%;
    left: 0%;
    transform: translateY(-50%);
    color: white;
    z-index: 2; /* Ensure text is above overlay */
  }
  
  @media (min-width: 768px) { 
   .content {
    top: 55%;
    left: 13%;
   }
  }

  
  @media (min-width: 992px) { 
    .content {
      
     top: 50%;
     left: 27%;
    }
   }

   
 .bgvideo {
    position: relative;
  }
  
  .bgvideo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b0; /* Black color with 50% transparency */
   
  }
  /* about section */
  .aboutsectionbg{
    background-image: url(../images/Untitled-1.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 0px;
  }
  .abouttitle{
    color: rgb(255, 244, 142);
    font-family:Arial, Helvetica, sans-serif;
    font-weight: 600px!important;
  }


  .slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
  }
  
  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .slide {
    flex: 0 0 100%;
    position: relative;
  }
  
  .slide img {
    width: 100%;
    display: block;
  }
  
  .hover-text {
    position: absolute;
    bottom: 90%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 1.2em;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }
  
  .slide:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
  }
  
  .navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .prev, .next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
  }
  
.industries{
  list-style-type: decimal;

}
.text-colour{
  color: rgb(0, 151, 189);
}
.list-square-box li {
  padding: 0px 0 0px 25px;
  position: relative;
  margin-bottom: 30px;
  list-style-type: none; 
}
  .list-square-box li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    height: 12px;
    width: 12px;
    background: rgb(0, 203, 254);
    }
  .list-square-box li p {
    margin-bottom: 0;
    font-size: 17px; }

    /* counter */

    
    .counter-text {
      font-size: 20px;
      color: #fff;
    }
    .whyrow {
      display: flex;
      justify-content: space-around;
    }
    .whycounter {
      text-align: center;
      margin-bottom: 30px;
     
    }
    .counter-style-1 .counter-num {
      display: flex;
      align-items: center; }
      .counter-style-1 .counter-num .counter {
        font-size: 60px;
        line-height: 60px; }
      .counter-style-1 .counter-num small, .counter-style-1 .counter-num .small {
        /* font-size: 50px; */
        font-weight: 700;
        margin-left: 5px;
        line-height: 50px; }
    
    .counter-style-1 .counter-text {
      margin-bottom: 0; }
    
    .counter-style-2 .counter-num {
      display: flex;
 justify-content: center;
      margin-bottom: 10px; }
      .counter-style-2 .counter-num .counter {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 0; }
      .counter-style-2 .counter-num small, .counter-style-2 .counter-num .small {
        font-size: 50px;
        font-weight: 900;
        margin-left: 5px;
        line-height: 40px; }
    
    .counter-style-2 .counter-text {
      margin-bottom: 0;
      font-family: var(--font-family-base);
      font-size: 25px;
      font-weight: 500; }
    
    .counter-style-3 {
      display: flex;
      align-items: center; }
      .counter-style-3 .icon-bx {
        display: block;
        width: 80px;
        background-color: #000;
        height: 80px;
        min-width: 80px;
        text-align: center;
        line-height: 80px;
        outline: 2px solid #fff;
        outline-offset: 10px;
        margin: 12px 32px 12px 12px;
        overflow: hidden;
        -webkit-transition: all 0.2s;
        -ms-transition: all 0.2s;
        transition: all 0.2s; }
      .counter-style-3 .counter-num {
        display: flex;
        align-items: flex-end;
        margin-bottom: 10px; }
        .counter-style-3 .counter-num .counter {
          font-size: 45px;
          line-height: 45px;
          margin-bottom: 0; }
        .counter-style-3 .counter-num small, .counter-style-3 .counter-num .small {
          font-size: 36px;
          font-weight: 900;
          margin-left: 5px;
          line-height: 36px; }
      .counter-style-3 .counter-text {
        margin-bottom: 0;
        font-family: var(--font-family-base);
        font-size: 16px;
        font-weight: 400; }

     /* logo slider */
  

    /* Contact form container */
.contact-form-container {
  display: flex;
  justify-content: center; /* Align the form to the right */
  padding-right: 50px; /* Add some padding from the right edge */
}

/* Contact form styling */
.contact-form {
  background: rgb(255, 255, 255); /* Semi-transparent background */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form .form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form .btn {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form .btn:hover {
  background-color: #0056b3;
}
.input-with-icon {
  position: relative;
}

.input-with-icon .icon1 {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: rgb(26, 82, 118);
}

.input-with-icon .form-control {
  padding-left: 35px;
}
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .icon1 {
  position: absolute;
  left: 10px;
  color: rgb(26, 82, 118);
  z-index: 1;
}
.footericon{
  background-color: #ffffffcc;
  padding: 5px 10px 5px 10px;
  font-size: 20px;
  margin: 10px;
  border-radius: 10px ;
}
.footericon:hover{
  background-color: #6ccddf;

  color: #fff;
  border-radius: 15px ;

}
a{
  text-decoration: none;
  color: white;
}
.list {
  transition: letter-spacing 0.3s ease;
}
.list:hover{
  letter-spacing: 2px;
  color: #72e0f3;
}

/* ///////////////////////////////////////about page//////////////////////////////////////////////////////// */

.aboutpagemainbanner{
  background-image: url(../images/banneraboutmain.jfif);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px;
  
width: 100% !important;
}
.aboutcompany{
  font-size: 60px;
  /* padding-left: 70px; */
  margin-top: 50px;
}
.values{
  background-color: #003d47;
  
}
.emojo{
  font-size: 40px;
  padding-bottom: 20px;
  background-color: white;
  padding: 10px;
  border-radius: 100%;
}
/* testimonial */

.testimonial{
  margin: 0 20px 40px;
}
.testimonial .testimonial-content{
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #fff;
  height: 230px;
  position: relative;
}
@media screen and (max-width:600px) {
  .testimonial .testimonial-content{
    padding: 25px 25px 35px 30px;
    margin-bottom: 35px;
    background: #fff;
    height: 230px;
    position: relative;
  }
}
.testimonial .testimonial-content:before{
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  border-top: 15px solid #718076;
  border-left: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.testimonial .testimonial-content:after{
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  border-top: 15px solid #718076;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.testimonial-content .testimonial-icon{
  width: 50px;
  height: 45px;
  background: #0c7eca;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
}
.testimonial-content .testimonial-icon:before{
  content: "";
  border-bottom: 16px solid #0579a7;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}
.testimonial .description{
  font-size: 15px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  margin: 0;
}
.testimonial .title{
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #525252;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}
.testimonial .post{
  display: block;
  font-size: 14px;
  color: #ffffff;
}
.owl-theme .owl-controls{
  margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
  background: #ccc;
  opacity: 1;
  transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
  background: #0c94ca;
}

/* machiningtechnologybanner */
.machiningtechnologybanner{
  background-image: url(../images/machiningtechnology.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px;
  
width: 100% !important;
}
.bg-card{
  background-color: #a2e1fa;
}
.text-main{
  color: rgb(1, 157, 222);
}
.qualitybanner{
  background-image: url(../images/QualityAssurance.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px;
  width: 100% !important;
}
.valuebg{
  background-image: url(../images/valuesbanner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding:50px 0px;
  background-attachment: fixed;
}
.valueicon{
  font-size: 35px;
}
.valueboreder{
  border: 2px solid white;
  padding: 30px;
}
.productionbanner{
  background-image: url(../images/procuctionprocess.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px;
  width: 100% !important;
}
.equipmentbanner{
  background-image: url(../images/industrial\ equipment.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px;
  width: 100% !important;
}
.card-body{
  background-color: #c4dffc;
}
.card img {
  transition: transform 0.3s ease; /* Smooth zoom effect */
  width: 100%;
  height: auto;
}

.card img:hover {
  transform: scale(1.1); /* Zoom in by 10% */
}

.card {
  overflow: hidden; /* Prevent images from overflowing the card */
}

/* file */
.file-upload-section {
  cursor: pointer;
  border: 2px dashed transparent;
  transition: border-color 0.3s ease;
}

.file-upload-section.dragging {
  border-color: #EA543F;
  background-color: #fce4e2;
}
.bgborder:hover{
  border: 2px solid rgb(23, 109, 143)!important;
  background-color: white!important;
}
.sustainabilitybanner{
  background-image: url(../images/sus.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 170px 0px;
  width: 100% !important;
}
.susbg{
  background-color: rgb(231, 231, 231);
}
.sustitle{
  color: rgb(0, 39, 0);
}
.contactusbanner{
  background-image: url(../images/Contact_Us_Banner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 170px 0px;
  width: 100% !important;
}
.gallerybanner{
  background-image: url(../images/valuesbanner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px;
  width: 100% !important;
}

/**********************************/
/********** Effect #4 CSS *********/
/**********************************/
.effect-4 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.effect-4 .effect-img {
  font-size: 0;
  overflow: hidden;
}

.effect-4 .effect-img img {
  width: 100%;
  height: auto;
  transition: all .3s;
}

.effect-4:hover .effect-img img {
  transform: scale(1.2);
}

.effect-4 .effect-text {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.644);
  overflow: hidden;
  transition: all .3s ease-in;
  opacity: 0;
}

.effect-4 .effect-text .effect-text-inner {
  position: absolute;
  padding: 15px;
  z-index: 1;
}

.effect-4 .effect-text:before,
.effect-4 .effect-text:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 0;
  content: '';
}

.effect-4 .effect-text:before {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  left: -100%;
  top: 0;
}

.effect-4 .effect-text:after {
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  left: 100%;
  bottom: 0;
}

@-webkit-keyframes left-up {
  0% {
      left: 100%;
      height: 0;
  }
  50% {
      left: 0;
      height: 0;
  }
  100% {
      height: 100%;
      left: 0;
  }
}

@-webkit-keyframes right-dn {
  0% {
      left: -100%;
      height: 0;
  }
  50% {
      left: 0;
      height: 0;
  }
  100% {
      height: 100%;
      left: 0;
  }
}

.effect-4:hover .effect-text{
  opacity: 1;
}

.effect-4:hover .effect-text:after,
.effect-4:hover .effect-text:before {
  animation-delay: .1s;
  animation-duration: .5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards
}

.effect-4:hover .effect-text:after {
  animation-name: left-up;
}

.effect-4:hover .effect-text:before {
  animation-name: right-dn;
}

.effect-4 .effect-text h2 {
  height: 45px;
  color: #ffffff;
  font-size: 25px;
  margin: 0;
}

.effect-4 .effect-text p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
}


.effect-4 .effect-btn .btn {
  display: inline-block;
  height: 35px;
  padding: 7px 15px;
  color: #333333;
  background: #ffffff;
}

.productbanner{
  background-image: url(../images/product.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px;
  width: 100% !important;
}
.sustainabilitycon{
  font-size: 60px;
  /* padding-left: 70px; */
  margin-top: 50px;
}
/* mobile view media query */

@media screen and (max-width:600px){
  .size{
    font-size: 20px;
}
.counter-style-2 .counter-num .counter {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0;
}
.counter-style-2 .counter-num small, .counter-style-2 .counter-num .small {
  font-size: 40px;
  font-weight: 900;
  margin-left: 5px;
  line-height: 40px;
}
.counter-style-2 .counter-text {
  margin-bottom: 0;
  font-family: var(--font-family-base);
  font-size: 23px;
  font-weight: 500;
}
.contact-form-container {
  display: flex;
  justify-content: center;
  padding-right: 10px;
}
.productbanner {
  background-image: url(../images/product.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 80px 0px;
  width: 100% !important;
}
.aboutcompany {
  font-size: 30px;
  /* padding-left: 70px; */
  margin-top: 50px;
}

.equipmentbanner {
  background-image: url(../images/industrial\ equipment.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
.sustainabilitybanner {
  background-image: url(../images/sus.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
.sustainabilitycon{
  font-size: 23px;
  /* padding-left: 70px; */
  margin-top: 50px;
}
.gallerybanner {
  background-image: url(../images/valuesbanner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
.contactusbanner {
  background-image: url(../images/Contact_Us_Banner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
.aboutpagemainbanner {
  background-image: url(../images/banneraboutmain.jfif);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
.qualitybanner {
  background-image: url(../images/QualityAssurance.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
.productionbanner {
  background-image: url(../images/procuctionprocess.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
.machiningtechnologybanner {
  background-image: url(../images/machiningtechnology.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
  width: 100% !important;
}
}

