



.hardware-section{
padding:100px 0;
background: radial-gradient(circle at top,#1f4e5f,#0f2027);
min-height:100vh;
}

/* title */

.hardware-title{
color:white;
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.hardware-subtitle{
text-align:center;
color:#d4d4d4;
max-width:650px;
margin:auto;
margin-bottom:60px;
}

/* card */

.hardware-card{
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
transition:0.4s;
height:100%;
position:relative;
}

.hardware-card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px rgba(255,0,0,0.6);
}

/* image */

.hardware-img-box{
height:200px;
overflow:hidden;
position:relative;
}

.hardware-img-box img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

.hardware-card:hover img{
transform:scale(1.12);
}

/* overlay for readability */

.hardware-img-box::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:60%;
background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);
}

/* content */

.hardware-content{
padding:25px;
text-align:center;
}

.hardware-content i{
font-size:36px;
color:#ff3b3b;
margin-bottom:12px;
}

.hardware-content h5{
font-weight:700;
margin-bottom:10px;
color:white;
}

.hardware-content p{
font-size:14px;
color:#e6e6e6;
line-height:1.6;
}

/* button */

.hardware-btn{
display:inline-block;
margin-top:12px;
padding:8px 20px;
background:#e31b23;
color:white;
border-radius:6px;
font-size:13px;
text-decoration:none;
transition:0.3s;
}

.hardware-btn:hover{
background:#b8161c;
}

/* responsive */

@media(max-width:768px){

.hardware-title{
font-size:32px;
}

.hardware-img-box{
height:180px;
}

}
.site-footer{

background:#111;

color:#ddd;

padding:70px 0 20px;

margin-top:80px;

position:relative;

overflow:hidden;
}

/* container */

.footer-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

padding:0 20px;

}

/* logo */

.footer-logo{

height:60px;

margin-bottom:15px;

}

/* text */

.footer-desc{

font-size:14px;

line-height:1.7;

color:#bbb;

}

/* headings */

.footer-col h3{

color:white;

margin-bottom:20px;

font-size:20px;

position:relative;

}

/* underline animation */

.footer-col h3::after{

content:"";

width:40px;

height:3px;

background:#e31b23;

position:absolute;

left:0;

bottom:-8px;

}

/* list */

.footer-col ul{

list-style:none;

padding:0;

}

.footer-col ul li{

margin-bottom:10px;

font-size:14px;

}

/* links */

.footer-col ul li a{

color:#bbb;

text-decoration:none;

transition:.3s;

}

.footer-col ul li a:hover{

color:#e31b23;

padding-left:5px;

}

/* social icons */

.social-icons{

margin-top:20px;

}

.social-icons a{

display:inline-block;

width:40px;

height:40px;

line-height:40px;

text-align:center;

border-radius:50%;

background:#222;

color:white;

margin-right:10px;

transition:.3s;

}

.social-icons a:hover{

background:#e31b23;

transform:translateY(-4px);

}

/* bottom */

.footer-bottom{

text-align:center;

border-top:1px solid #333;

margin-top:40px;

padding-top:15px;

font-size:14px;

color:#aaa;

}

/* responsive */

@media(max-width:768px){

.site-footer{

text-align:center;

}

.footer-col h3::after{

left:50%;

transform:translateX(-50%);

}
}