﻿/* Loading Animation for Pages */

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #9db5d1; /* Your blue shade */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: transparent;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.loaded .content {
    opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

/* End of Section */

body {
	background-image: url('Images/aluminum.jpg');
	background-size: cover;
	background-repeat: repeat;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	opacity: 0;
	animation: fadeInPage 1s ease-in forwards;
}

@keyframes fadeInPage {
  to {
    opacity: 1;
  }
}

/*Navbar Styling*/
.navbar {
	background: linear-gradient(to bottom, #b0b0b0, #c0c0c0, #d3d3d3, #e0e0e0);
 	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #a9a9a9;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	margin-top: auto;
    margin-left: 10px;
    margin-right: 10px;
	position: fixed;
	z-index: 1000;
    width: 100%;
    left: -100%;
}

/* Slide-in animation for the navbar */
@keyframes slideIn {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

/* Apply animation when page loads */
.navbar {
  animation: slideIn 0.9s ease-out forwards; /* Slide in on page load */
}

.nav-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 20px;
}
      
/*Logo Styling*/
.logo img {
	display: flex;
	height: 100px;
	width: 250px;
	margin-left: 100px;
	margin-bottom: 10px;
	margin-top: 15px;
}

.logo img:hover {
	transform: scale(1.1); /* Increase size on hover */
	transition: transform 0.3s ease;
}

.nav-links {
	list-style: none;
	display: flex;
	margin-right: 30px;
	white-space: nowrap; /* Keep Links from Wrapping Underneath */
	font-family: 'Open Sans', sans-serif; /* Font for links */
	text-shadow: 0px 5px 3.5px rgba(0, 0, 0, 0.3); /* Subtle depth */ 
	font-weight: 500;
}

.nav-links li {
    margin: 0 35px;
}

.nav-links a {
	text-decoration: none;
	display: inline-block;
    color: #1e2b39;
    margin-top: 50px;
    font-size: 22px;
    letter-spacing: 0.7px;
    transition: 0.3s ease-in, color 0.3s ease-in, box-shadow 0.3s ease-in;    
}

.nav-links a:hover {
    color: #4b779b; /* Changes color on hover */
    transition: 0.3s ease-in-out;
    transform: scale(1.1); /* Increases size on hover */
    transform-origin: center;
}
/* End of Header Section */

/* Back to Top Button Styling */
#backToTop {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #4b779b;
	color: white;
	border: 1px solid black;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	display: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 1000;
}

#backToTop:hover {
    transform: translateX(-50%) scale(1.1); /* Slightly enlarges the button */
}

/* End of Section */



/* Footer Styling */
.footer {
	display: flex;
    background: linear-gradient(to top, #b0b0b0, #c0c0c0, #d3d3d3, #e0e0e0); 
    color: #1e2b39;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    border-top: 3px solid black;
    margin: auto;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
    width: 98%;
}

.footer-logo1 img {
	width: 75px;
	height: 75px;
	margin-left: 20px;
}

.footer-logo2 img {
	width: 75px;
	height: 75px;
	margin-right: 20px;
	transform: scaleX(-1); /* Flips the image horizontally */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 15px;
    font-family: 'Open Sans', sans-serif;
}

.footer-links a {
    text-decoration: none;
    color: #1e2b39;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4b779b;
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.socialmedia {
	display: flex;
	padding-bottom: 15px;
	justify-content: space-between;
	gap: 20px;
}

.facebook-icon i {
	font-size: 28px;
	color: #1e2b39;
	transition: transform 0.3s ease-in;

}

.instagram-icon i {
	font-size: 28px;
	color: #1e2b39;
	transition: transform 0.3s ease-in;

}

.linkedin-icon i {
	font-size: 28px;
	color: #1e2b39;
	transition: transform 0.3s ease-in;

}

.youtube-icon i {
	font-size: 28px;
	color: #1e2b39;
	transition: transform 0.3s ease-in;
}

.facebook-icon i:hover,
.instagram-icon i:hover,
.linkedin-icon i:hover,
.youtube-icon i:hover {
	transform: translateY(-5px);
}

.footer-bottom {
    font-size: 10px;
    margin-top: 5px;
    padding-bottom: 40px;
}
/* End of Footer Section */

.intro-image {
	width: 100%;
	margin: 170px auto 60px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 650px;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
	border: 2px solid #1e2b39;
}

.wide-image {
	width: 100%;
	height: 100%;
	display: block;
}

.slide {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  justify-content: center;
  align-items: center;
  display: flex;
  
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.intro-image:hover {
	opacity: 80%;
	transition: opacity 0.3s ease-in-out;
}

.hover-text {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	text-align: center;
	background-image: url('Images/aluminum.jpg');
	background-size: cover;
	background-repeat: repeat;
	color: #1e2b39;
	max-width: 60%;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border: 1px solid #1e2b39;
}

.hover-text h1 {
	text-decoration: underline;
	font-family: Montserrat, sans-serif;
	font-size: 36px;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4);
}

.slide:hover .hover-text {
	opacity: 1;
	z-index: 9999;
}

.viewprojects {
	display: inline-block;
	margin-top: 20px;
	background-color: #7ca1c7;
	color: white;
	padding: 12px 24px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	font-size: 22px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

.viewprojects:hover {
	background-color: #1e2b39;
	transform: translateY(-2px);	
}

.main-section {
	display: flex;
	background-color: #ffffff;
	border-radius: 10px;
	margin: 20px 20px 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
}

.video-container {
	display: flex;
	flex: 0 0 65%;
	background-color: #9db5d1;
}

.video-container video {
	width: 100%;
	height: auto;
}

.intro-text {
	display: flex;
	position: relative;
	flex-direction: column;
	flex: 0 0 35%;
	align-items: center;
	text-align: center;
	border-left: 6px solid #1e2b39;
	box-shadow:
  	inset 0 2px 4px rgba(0, 0, 0, 0.08),
 	0 6px 20px rgba(0, 0, 0, 0.1);
 	background-color: #d0d0d0;
}

.intro-text h1 {
	font-family: Merriweather, serif;
	font-size: 36px;
	color: #1e2b39;
	text-shadow: 0px 3px 4px rgba(30, 43, 57, 0.7);
	margin-top: 30px;
}

.intro-text h2 {
	color: #425466;
	font-family: Merriweather, serif;
	font-size: 30px;
	margin-top: 0;
}

.intro-text h3 {
	font-family: Merriweather, serif;
	color: #1e2b39;
	font-size: 30px;
	margin-top: 0;
	font-style: italic;
	text-decoration: underline;
}

.intro-text p {
	font-family: Merriweather, serif;
	font-size: 24px;
	margin: 5px;
	line-height: 1.7;
	padding: 10px;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.endtag {
	font-family: Merriweather, serif;
	font-size: 24px;
	text-align: center;
	margin: 5px;
	color: #1e2b39;
	text-decoration: underline;
	font-style: italic;
	font-weight: bold;
}

.hero-button {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #7ca1c7;
  border: 1px solid #1e2b39;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
	background-color: #1e2b39;
	transform: translateY(-2px);
}

.capabilities-section {
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(231, 235, 235, 0.7);
  margin-top: 20px;
}

.capabilities-section h2 {
  font-size: 36px;
  color: #1e2b39;
  margin-bottom: 40px;
  text-decoration: underline;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}

.capability {
  background-color: #d0d0d0;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #1e2b39;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  height: 500px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.capability:hover {
	transform: translateY(-8px);
}

.capability img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

.capability h3 {
  color: #1e2b39;
  font-size: 28px;
  text-decoration: underline;
}

.capability p {
  font-size: 16px;
  color: #1e2b39;
  line-height: 1.6;
  padding: 0 15px;
  font-size: 22px;
  margin-top: -10px;
}

/* ✅ Staggered left/right effect */
.tile-left {
  align-self: flex-start;
  display: flex;
  gap: 40px;
}

.tile-right {
  align-self: flex-end;
  display: flex;
  gap: 40px;
}

.process-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 160px;
}

.powder-process {
	display: flex;
	padding: 20px 20px 20px;
	width: 900px;
	height: 400px;
	gap: 30px;
	margin: 0;
	box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.4);
}

.process-wrapper img {
	width: 900px;
	height: 500px;
	object-fit: contain;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 1);
}


.step-number {
	display: flex;
	flex-direction: column;
}

.step-number h3 {
	font-family: Open Sans, sans-serif;
	font-size: 30px;
	color: #1e2b39;
	text-decoration: underline;
	text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
	text-align: center;
}

.step-number p {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #1e2b39;
	text-align: center;
}

.vendors-header {
	display: flex;
	background-image: url('Images/aluminum.jpg');
	background-position: center;
	background-repeat: repeat;
	border: 2px solid #1e2b39;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	margin: 160px auto 40px;
	width: 95%;
	align-items: center;
	justify-content: center;
}

.vendors-header h1 {
	font-family: Montserrat, sans-serif;
	font-size: 30px;
	color: #1e2b39;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  grid-template-rows: repeat(2, auto);  /* 2 rows, auto height */
  gap: 60px;
  max-width: 1000px;
  margin: 0px auto 20px;
}

.vendor-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}




.section-wrapper {
	display: flex;
	flex-direction: column;
	margin-top: 160px;
}

.section-header {
	display: flex;
	border: 1px solid #1e2b39;
	background-image:url('Images/aluminum.jpg');
	background-position: center;
	background-repeat: repeat;
	margin: 20px auto 40px;
	width: 95%;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
	text-decoration: underline;
	cursor: pointer;
	transition: background-color 0.3s ease-in;	
}

.section-header:hover {
	background-image: none;
	background-color: #C0C0C0;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 20px;
}

/* Rotated state */
.arrow.rotated {
  transform: rotate(180deg);
}

.lighting {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 20px auto;
	width: 85%;
}

.lighting img {
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);

}

.firstimage {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px auto;
	width: 90%;
}

.industrial {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin: 20px auto;
	width: 85%;
}

.industrial img {
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

.automotive {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin: 20px auto;
	width: 85%;
}

.automotive img {
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

.collapsible-content {
  max-height: 9999px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsed {
  max-height: 0;
  padding: 0;
  overflow: hidden;
}

.quoteheader {
	text-align: center;
	font-family: Montserrat, sans-serif;
	font-size: 30px;
	margin-top: 160px;
}

.quotebuilder {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 90%;
	margin: 20px auto;
}

.quotebuilder label {
	font-family: Monsterrat, sans-serif;
	font-size: 20px;
}

.quotebuilder button {
	font-family: Monsterrat, sans-serif;
	font-size: 20px;
	background-color: #7ca1c7;
	color: white;
	transition: background-color 0.3s ease-in-out;
	padding: 5px;
	width: 80%;
	margin: 20px auto;
}

.quotebuilder select {
	background-color: #ffffff;
	border: 1px solid black;
	font-size: 20px;
}

#powdernotes {
	background-color: #ffffff;
	border: 1px solid black;
	font-size: 20px;
}

.confirmation{
	text-align: center;
	font-family: Montserrat, sans-serif;
	font-size: 24px;
}

.hamburger {
  display: none; /* Hidden on desktop */
  font-size: 32px;
  cursor: pointer;
  color: black;
  margin-right: 40px;
  z-index: 1100;
}









/* === MOBILE MODE === */
@media screen and (max-width: 768px) {
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background-color: #f0f8ff;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.5;
  flex: 1 0 auto;
}

/* HEADER & NAV */
.hamburger {
  display: block;
  font-size: 32px;
  cursor: pointer;
  color: black;
  margin-right: 40px;
  z-index: 1100;
}

.navbar {
  position: static;
  top: auto;
  left: auto;
  height: auto;
  margin: 0;
  padding: 0;
  box-shadow: none;
  animation: none;
}

.nav-links {
  display: none;
  flex-direction: column;
  background-color: #f0f8ff;
  position: absolute;
  z-index: 1000;
  top: 50px;
  right: 0;
  width: 80%;
  padding: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

.nav-links.open {
  display: flex;
  z-index: 9999;
}

.logo img {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  height: auto;
}


/* FOOTER MOBILE FIX */
.footer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  width: 100%;
  padding: 20px 10px;
  margin: 0;
  border-top: 3px solid black;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7);
  background-image: url('websiteimages/aluminumtexture.jpg');
  background-size: cover;
  background-repeat: repeat;
}

.footer-logo1 img,
.footer-logo2 img {
  max-width: 60px;
  max-height: 60px;
  margin: 0 auto;
}

.footer-logo2 img {
  transform: scaleX(-1);
}

.footer-content,
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.linkedin-icon i,
.facebook-icon i,
.instagram-icon i {
  font-size: 20px;
}

.intro-image {
	width: 100%;
	margin: 60px auto 60px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 275px;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
	border: 2px solid #1e2b39;
}

.wide-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.slide {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  justify-content: center;
  align-items: center;
  display: flex;
  
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.intro-image:hover {
	opacity: 80%;
	transition: opacity 0.3s ease-in-out;
}

.hover-text {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	text-align: center;
	background-image: url('Images/aluminum.jpg');
	background-size: cover;
	background-repeat: repeat;
	color: #1e2b39;
	max-width: 70%;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	border: 1px solid #1e2b39;
	height: 225px;
}

.hover-text h1 {
	text-decoration: underline;
	font-family: Montserrat, sans-serif;
	font-size: 28px;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4);
}

.slide:hover .hover-text {
	opacity: 1;
	z-index: 9999;
}

.viewprojects {
	display: inline-block;
	margin-top: 20px;
	background-color: #7ca1c7;
	color: white;
	padding: 12px 24px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

.viewprojects:hover {
	background-color: #1e2b39;
	transform: translateY(-2px);	
}

.main-section {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 10px;
	margin: 20px 20px 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
}

.intro-text {
	display: flex;
	position: relative;
	flex-direction: column;
	flex: 0 0 35%;
	align-items: center;
	border-left: none;
	text-align: center;
	box-shadow:
  	inset 0 2px 4px rgba(0, 0, 0, 0.08),
 	0 6px 20px rgba(0, 0, 0, 0.1);
 	background-color: #d0d0d0;
}


.intro-text h1 {
	font-family: Merriweather, serif;
	font-size: 30px;
	color: #1e2b39;
	text-shadow: 0px 3px 4px rgba(30, 43, 57, 0.7);
	margin-top: 30px;
}

.intro-text h2 {
	color: #425466;
	font-family: Merriweather, serif;
	font-size: 25px;
	margin-top: 0;
}

.intro-text h3 {
	font-family: Merriweather, serif;
	color: #1e2b39;
	font-size: 25px;
	margin-top: 0;
	font-style: italic;
	text-decoration: underline;
}

.intro-text p {
	font-family: Merriweather, serif;
	font-size: 20px;
	margin: 5px;
	line-height: 1.7;
	padding: 10px;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.endtag {
	font-family: Merriweather, serif;
	font-size: 20px;
	text-align: center;
	margin: 5px;
	color: #1e2b39;
	text-decoration: underline;
	font-style: italic;
	font-weight: bold;
}

capabilities-section {
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(231, 235, 235, 0.7);
  margin-top: 20px;
}

.capabilities-section h2 {
  font-size: 32px;
  color: #1e2b39;
  margin-bottom: 40px;
  text-decoration: underline;
}

.capabilities-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}

.capability {
  background-color: #d0d0d0;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #1e2b39;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  height: 500px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.capability:hover {
	transform: translateY(-8px);
}

.capability img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
}

.capability h3 {
  color: #1e2b39;
  font-size: 24px;
  text-decoration: underline;
}

.capability p {
  font-size: 16px;
  color: #1e2b39;
  line-height: 1.6;
  padding: 0 15px;
  font-size: 18px;
  margin-top: -10px;
}

.vendors-header {
	display: flex;
	background-image: url('Images/aluminum.jpg');
	background-position: center;
	background-repeat: repeat;
	border: 2px solid #1e2b39;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	margin: 50px auto 40px;
	width: 95%;
	align-items: center;
	justify-content: center;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
  grid-template-rows: repeat(3, auto);  /* 2 rows, auto height */
  gap: 60px;
  max-width: 600px;
  margin: 0px auto 20px;
}

.tile-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tile-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 0;
}

.powder-process {
	display: flex;
	padding: 20px 20px 20px;
	width: 100%;
	height: 425px;
	gap: 30px;
	margin: 0;
	box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.4);
}

.process-wrapper img {
	width: 100%;
	height: 165px;
	object-fit: contain;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 1);
	margin-top: 0;
	background-color: #d0d0d0;
}


.step-number {
	display: flex;
}

.step-number h3 {
	font-family: Open Sans, sans-serif;
	font-size: 24px;
	color: #1e2b39;
	text-decoration: underline;
	text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
	text-align: center;
}

.step-number p {
	font-family: Open Sans, sans-serif;
	font-size: 18px;
	color: #1e2b39;
	text-align: center;
}

}