 /* quality page */


 /*** Navbar ***/
.navbar {
    background-color: white !important;
}

.quality-bgImg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url('../IMAGE/red-hot-crank-shafts-for-fluid-pump-2022-03-08-00-18-23-utc.webp');
    background-position: center top;
    background-repeat: no-repeat;
    /* background-size: contain; */
    padding: 120px 0 60px 0;
    transition: 0.5s;   
    background-size:  100% 100%;
}

/* .bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../IMAGE/quality.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
} */

.bg-breadcrumb .breadcrumb {
    position: relative;
    background: transparent !important;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-black);
    font-size: 17px;
    font-weight: bolder;
    outline: none;
    transition: .5s;
    
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 35px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    /* color: var(--bs-primary); */
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }


    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(241, 241, 241, 0.116);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 5px 0;
        margin-left: 0;
        /* color: var(--bs-dark); */
    }

    .navbar-light .navbar-brand img {
        height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
        padding-top: 20px !important;
        /* height: auto !important; */
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand img{
        max-height: 60px !important;
    }
}
 .quality-header {
    background: linear-gradient(90deg, #182d53, #6c63ff);
    color: white;
    padding: 60px 0;
    animation: fadeIn 1.5s ease-in-out;
}

.quality-card {
    transition: transform 0.3s, box-shadow 0.3s;
    animation: slideUp 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(32, 38, 124, 0.15);
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(71, 78, 179, 0.144);
    transform: scale(0);
    transition: transform 0.3s;
    border-radius: 5px;
}

.quality-card:hover::before {
    transform: scale(1);
}

.quote-section {
    animation: fadeInUp 1.5s ease-in-out;
}

.quote-section h3 {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

  

.quote-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    animation: underlineExpand 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


/* quality obj */

.quality-objectives {
    background-color: #f8f9fa;
  }
  
  .quality-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .quality-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  }
  
  .quality-card .icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px !important;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #6c63ff, #0d6efd);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .quality-card:hover .icon-container {
    transform: rotate(360deg);
  }
  
  .quality-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .quality-card p {
    font-size: 0.95rem;
    color: #6c757d;
  }
  
  .quality-objectives .container {
    max-width: 1200px;
  }
  



/* quality assur */

.quality-assurance {
    background-color: #f9f9f9;
    border-radius: 10px;
  }
  .quality-assurance h2 {
    font-size: 2.5rem;
    
  }
  .quality-assurance ul li {
    font-size: 1.1rem;
  }
  .quality-assurance img {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
.container-fluid{
    padding-right: var(--bs-gutter-x, 0rem) !important;
    padding-left: var(--bs-gutter-x, 0rem) !important;
    
}




/* quality control */

.hero {
    background-image:url('https://i.ibb.co/fxJ1jtC/about-circle-1.png') no-repeat center center/cover;
    color: white;
    /* padding: 60px 20px; */
    text-align: center;
  }
  .icon-box {
    font-size: 40px;
    color: #007bff;
  }
  .process-step {
    text-align: center;
  }
  .process-step .icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 15px;
  }
    .container{
        margin-top: 20px;
    }

    /* lab testing */


    .inspection-testing {
        background-color: #f8f9fa;
        border-radius: 10px;
      }
      .inspection-testing h2 {
        font-size: 2.5rem;
      }
      .inspection-testing ul li {
        font-size: 1.1rem;
      }
      .inspection-testing img {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }
      .inspection-testing img:hover {
        transform: scale(1.05);
      }
      
      /* certificate */
      #cert {
        width: 20rem;
        height: 25rem;
        position: relative;
        overflow: hidden;
        z-index: 0 !important;
      }
      
      .pic-container {
        height: inherit;
        width: inherit;
      }
      
      #cert .pic-container,
      .pic,
      .container{
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .pic {
        width: 100%;
        height: 100%;
        position: absolute;
        
        transition: all 500ms cubic-bezier(.42, .84, 0, 1.06);
      }
      
      .pic__img {
        width:90%;
        height: 90%;
        object-fit: cover;
        
      }
      
      .slider-btns {
        display: flex;
        gap: 1rem;
      }
      
      .btn-left,
      .btn-right {
        cursor: pointer;
        background-color: transparent;
        color: #1f3461;
        opacity: 60%;
        border: none;
        font-size: 2rem;
        font-weight: 700;
        z-index: 10;
        border: 1px solid black;
      }
      
      .btn-left:hover,
      .btn-right:hover{
        transform: scale(1.4);
        opacity:100%;
      }  
     
      /*** Footer Start ***/
.footer {
    padding: 0px;
    background-color: rgba(211, 211, 211, 0.099);    /* background-color: rgba(5, 25, 69, 0.784); */
    }
    .footer-item img{
        height: 65px;
        width: 200px;
        
    }
    .qr img{
        height: 100px;
        width: 100px;
    }
    
    .footer .footer-item a {
        line-height: 35px;
        /* color: var(--bs-body); */
        color: black;
        transition: 0.5s;
    }
    
    .footer .footer-item p {
        line-height: 35px;
    }
    
    .footer .footer-item a:hover {
        letter-spacing: 1px;
        color: var(--bs-primary);
    }
    
    .footer .footer-item .footer-btn a,
    .footer .footer-item .footer-btn a i {
        transition: 0.5s;
    }
    
    .footer .footer-item .footer-btn a:hover {
        background: var(--bs-dark);
    }
    
    .footer .footer-item .footer-btn a:hover i {
        color: var(--bs-primary) !important;
    }
    
    /* .social {
        padding: 20px;
        height: 50px !important;
        border-radius: 50% !important;
    } */
    .btn-circle {
        width: 45px !important;
        height: 45px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        background-color: rgb(48, 78, 134) !important;
    }
    
    /*** Footer End ***/
    
    /*** copyright Start ***/
    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: var(--bs-dark);
    }
    /**


      