/*==========GLOBAL===========*/
@font-face {
  font-family: 'CopperplateGothicBold';
  src: url('../fonts/CopperplateGothicBold.ttf') format('truetype');
}

body {
  background-color: #349afcff; /* Blue background */
  font-family: 'CopperplateGothicBold', sans-serif;
}

/*=========END GLOBAL =========*/

/*==========MEDIA QUERIES===========*/
@media only screen and (max-width: 768px) {
    /*==========HEADER BANNER===========*/
    .header-banner img {
        width: 100%;
        height: auto;
    }

    /*==========CONTENT===========*/

    .info-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .left-column, .middle-column, .right-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

   /*===OUR HOME & CONTACT ROW===*/
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98%;
  margin: 3rem auto 0 auto;
}

.contact-image-container, .contact-text-container {
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
  }
}

/*=== END OUR HOME & CONTACT ROW===*/

    /*==========PRODUCTS===========*/

    .product-images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product-image-container {
        margin-bottom: 20px;
    }

  /*========== END PRODUCTS===========*/


    /*==========INDUSTRIES===========*/

    .industries-images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .industry-image-container {
        margin-bottom: 20px;
    }

  /*==========END INDUSTRIES===========*/


    /*==========BRAND LOGOS===========*/

    .brand-icons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .brand-icons-row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .brand-icon {
        margin-bottom: 20px;
    }

    /*==========CONTACT FORM===========*/

    #contact-form input, #contact-form textarea {
        width: 90%;
    }
    .captcha-container {
        width: 90%;
    }
}

/*==========BULLETTED LIST===========*/

.info-container {
    width: 98%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
   flex-wrap: wrap;
}

.left-column, .middle-column, .right-column {
    width: 30%;
}

.left-column {
    text-align: left;
}

.middle-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.middle-column h2 {
    text-decoration: underline;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.middle-column p {
    font-size: 28px;
    margin: 0;
    padding: 0;
}

.right-column {
    text-align: right;
}

.icon-text img, .icon-text-right img {
    width: 10px;
    height: 10px;
    margin-right: 10px;
}


/*=========END BULLETTED LIST=========*/

/*==========CONTACT ROW===========*/
.contact-row {
    position: relative;
    width: 98%; /* Match the banner's width */
    margin: 2.0rem auto 0 auto; /* Increased margin-top to 2rem */
    text-align: center;
}

.contact-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.contact-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.contact-text {
    margin: 0 auto;
    width: fit-content;
    text-align: center;
   padding: 0 150px; /* Add padding to left and right */
}

.contact-us {
    color: red;
 margin-top: 0.25rem; /* Reduce top margin */
    margin-bottom: 0.2rem; /* Reduce bottom margin */
}

.email-link {
    color: blue;
    text-decoration: none;
}

.email-link:hover {
    color: green;
}

.email-icon {
    vertical-align: middle;
    margin-right: 0.5rem;
}

.right-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.right-column li::before {
    content: "\2022"; /* Bullet point character */
    margin-right: 5px;
}

/*=========END CONTACT ROW =========*/

/*==========CLICK ME & BLUE DIVIDER===========*/
.click-me {
    position: relative;
    text-align: center;
    margin-top: -2rem; /* Adjust this value to overlap with email */
    z-index: 1;
}

.hand-icon {
    width:35px; /* Adjust the width to fit your icon */
    height: auto;
    cursor: pointer;
}

.blue-divider {
    width: 50%;
    height: 2px;
    background-color: blue;
    margin: 1rem auto;
}
/*=========END CLICK ME & BLUE DIVIDER =========*/

/*===PRODUCTS HEADER===*/
.products-header {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}
/*===END PRODUCTS HEADER===*/

/*===PRODUCT IMAGES===*/
.product-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%; /* Match the banner's width */
    margin: 3rem auto 0 auto;
}

.product-image-container {
    text-align: center;
}

.product-image-container img {
    width: 150px; /* Adjust the width to your needs */
    height: auto;
    margin-bottom: 0.5rem;
}
/*===END PRODUCT IMAGES===*/

/*===INDUSTRIES HEADER===*/
.industries-header {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}
/*===END INDUSTRIES HEADER===*/

/*===INDUSTRIES IMAGES===*/
.industries-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%; /* Match the banner's width */
    margin: 3rem auto 0 auto;
}

.industry-image-container {
    text-align: center;
}

.industry-image-container img {
    width: 150px; /* Adjust the width to your needs */
    height: auto;
    margin-bottom: 0.5rem;
}
/*===END INDUSTRIES IMAGES===*/

/*===CUSTOMER NOTICE===*/
.customer-notice {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-top: 2rem; /* Adjust the margin as needed */
}
/*===END CUSTOMER NOTICE===*/

/*===BRANDS HEADER===*/

.brands-header {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}
/*===END BRANDS HEADER===*/

/*===BRAND LOGOS===*/
.brand-icons-container {
    width: 98%;
    margin: 0 auto;
    text-align: center;
}

.brand-icons-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.brand-icon {
    margin: 10px;
}

.fag-icon {
    width: 100px;
    height: auto;
}

.nachi-icon {
    width: 100px;
    height: auto;
}

.nsk-icon {
    width: 100px;
    height: auto;
}

.ntn-icon {
    width: 100px;
    height: auto;
}

.ssr-icon {
    width: 80px;
    height: auto;
}

.skf-icon {
    width: 100px;
    height: auto;
}

.goodyear-icon {
    width: 180px;
    height: auto;
}

.timken-icon {
    width: 100px;
    height: auto;
}

.ina-icon {
    width: 80px;
    height: auto;
}

.brand-icon {
    margin: 5px;
    max-width: 150px; /* adjust the max-width value as needed */
    height: auto;
}


/*===END BRAND LOGOS===*/

/*===BEARING VISION===*/
.bearing-vision-header {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.bearing-vision-subheader {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: normal;
    max-width: 800px; /* Adjust the max-width as needed */
    margin: 0 auto;
}
/*===END BEARING VISION===*/

/*===BEARING VISION BULLETS===*/
.bearing-vision-bullets {
    text-align: center;
    font-size: 1.5rem;
}

.bearing-vision-bullets span {
    font-size: 2rem; /* Increase the font size */
    margin: 0 1.5rem;
    color: #000; /* Black color for the bullets */
}
/*===END BEARING VISION BULLETS===*/

/*===QUALITY PARTS===*/

.quality-parts-header {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.quality-parts-subheader {
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: normal;
    max-width: 800px; /* Adjust the max-width as needed */
    margin: 0 auto;
}
/*===END QUALITY PARTS===*/



/*==========CONTAINER===========*/
.container {
  max-width: 90%;
  margin: 32px auto;
  padding: 40px;
  background-color: #fff; /* White container */
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*=========END CONTAINER =========*/

/*==========NAVIGATION===========*/
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98%;
  margin: auto;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-links li {
  margin-right: 10px;
}

.nav-links li:last-child {
  margin-right: 0; /* Remove margin from last item */
}

.nav-links a {
  text-decoration: none;
  color: #349afcff; /* Blue links */
  transition: color 0.5s ease;
}

.nav-links a:hover {
  color: #008000; /* Green hover */
}

@media only screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/*=========END NAVIGATION =========*/

/*==========HEADER BANNER===========*/
.header-banner {
  width: 98%;
  margin: 40px auto 20px auto;
  border-top: 0px solid #000;
  border-bottom: 0px solid #000;
  position: relative;
}

.header-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.website-url {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-size: 1rem;
}

/*=========END HEADER BANNER =========*/

/*==========HEADINGS===========*/
h1 {
  text-align: center;
}

/*=========END HEADINGS =========*/

/*==========CONTENT CONTAINER===========*/
.content-container {
    max-width: 98%; /* Match the banner's width */
    margin: 0 auto;
   font-family: Arial, sans-serif; 
}

/*=========END CONTENT CONTAINER =========*/

/*===CONTACT FORM HEADER===*/

.contact-form-header {
    text-align: center;
    font-family: Arial, sans-serif;
}

/*===END CONTACT FORM HEADER===*/

<!--===CONTACT PATRICK===-->
<div class="contact-patrick">
    <a href="https://wa.me/yourphonenumber" target="_blank">
        <i class="fab fa-whatsapp"></i> Contact Patrick
    </a>
</div>
<!--===END CONTACT PATRICK===-->



/*===CONTACT FORM HEADER===*/
.contact-form-header {
    text-align: center;
    font-family: Arial, sans-serif;
}
/*===END CONTACT FORM HEADER===*/

/*===CONTACT PATRICK===*/
.contact-patrick {
    text-align: center;
    margin-top: 20px;
}

.contact-patrick a {
    color: #3498db; /* Blue color */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.contact-patrick a:hover {
    color: #2ecc71; /* Green hover effect */
}

.contact-patrick img {
    margin-bottom: 2rem;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
/*===END CONTACT PATRICK===*/

/*===CONTACT FORM CONTAINER===*/
.contact-form-container {
    padding: 4rem; /* Adjust padding as needed */
    background-color: #f0f8ff;
    padding-bottom: 10px; 
}

/*===END CONTACT FORM CONTAINER===*/

/*===CONTACT FORM===*/
#contact-form {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

#contact-form input, #contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.captcha-container {
    padding: 10px 0;
   margin: 0 auto;
}

.submit-btn {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.submit-btn:hover {
    opacity: 0.8;
}

.form-note {
    margin-top: 20px;
}


/*==========END CONTACT FORM===========*/




/*==========LOGO ANIMATION===========*/
.logo-animation {
  text-align: center;
  margin: 40px 0;
}

/*=========END LOGO ANIMATION =========*/

/*==========LINKEDIN ICON===========*/
.linkedin-icon {
  text-align: center;
  margin-bottom: 20px;
}

.linkedin-icon img:hover {
  transform: scale(0.8);
  opacity: 0.5;
}

/*=========END LINKEDIN ICON =========*/

/*==========FOOTER===========*/
.blue-line {
  width: 80%;
  height: 1px;
  background-color: #0000ff;
  margin: 20px auto;
}

.footer-links {
  text-align: center;
  margin-bottom: 20px;
}	

.footer-links a,
.copyright a {
  text-decoration: none;
  color: #349afcff;
  transition: color 0.5s ease;
  margin: 0 20px;
}

.copyright {
  text-align: center;
}

.footer-links a:hover,
.copyright a:hover {
  color: #008000;
}

/*=========END FOOTER =========*/

/*========== MEDIA QUERIES ==========*/

/* Mobile devices: max-width 768px */
@media screen and (max-width: 768px) {

  /* Stack the three content columns vertically */
  .info-container {
    flex-direction: column;
    align-items: center;
  }
  .info-container .left-column,
  .info-container .middle-column,
  .info-container .right-column {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Stack ourHome image, address, and map vertically */
  .contact-row {
    flex-direction: column;
    align-items: center;
  }
  .contact-row .contact-left,
  .contact-row .contact-text,
  .contact-row .contact-right {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Stack Products images vertically */
  .product-images {
    flex-direction: column;
    align-items: center;
  }
  .product-image-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .product-image-container img {
    width: 90%;
    max-width: 300px;
    margin: auto;
  }

  /* Stack Industries images vertically */
  .industries-images {
    flex-direction: column;
    align-items: center;
  }
  .industry-image-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .industry-image-container img {
    width: 90%;
    max-width: 300px;
    margin: auto;
  }

  /* Stack Brand logos vertically */
  .brand-icons-container {
    flex-direction: column;
    align-items: center;
  }
  /* If you have inner rows, force them to stack as well */
  .brand-icons-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .brand-icon {
    width: 90%;
    max-width: 200px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
  }

  /* Contact form: force width to 90% of the viewport */
  #contact-form input,
  #contact-form textarea,
  .captcha-container {
    width: 90%;
    margin: 0 auto;
  }

  /* Reduce LinkedIn icon by 50% */
  .linkedin-icon img {
    width: 50%;
  }

  /* Footer links – stack vertically and center-align text */
  .footer-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-links a {
    margin: 5px 0;
  }
}

/* Tablet devices: min-width 769px and max-width 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  
  /* Stack the three content columns vertically for readability */
  .info-container {
    flex-direction: column;
    align-items: center;
  }
  .info-container .left-column,
  .info-container .middle-column,
  .info-container .right-column {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Stack ourHome image, address, and map vertically */
  .contact-row {
    flex-direction: column;
    align-items: center;
  }
  .contact-row .contact-left,
  .contact-row .contact-text,
  .contact-row .contact-right {
    width: 100%;
    margin-bottom: 20px;
  }

  /* You can keep the product and industries images in a similar vertical stack */
  .product-images,
  .industries-images {
    flex-direction: column;
    align-items: center;
  }
  .product-image-container,
  .industry-image-container {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .product-image-container img,
  .industry-image-container img {
    width: 90%;
    max-width: 300px;
    margin: auto;
  }

  /* Stack Brand Logos vertically */
  .brand-icons-container {
    flex-direction: column;
    align-items: center;
  }
  .brand-icons-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }
  .brand-icon {
    width: 90%;
    max-width: 200px;
    margin-bottom: 20px;
  }

  /* Contact form remains full width on tablet */
  #contact-form input,
  #contact-form textarea,
  .captcha-container {
    width: 100%;
  }

  /* Footer links can remain stacked on smaller tablets as well if desired */
  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links a {
    margin: 5px 0;
  }
}
/*=========END MEDIA QUERIES =========*/

