Our Services
Crafting detailed, user-friendly website designs tailored to brand identity.
Ensuring brand credibility through verified testimonials and clear company milestones.
Implementing smooth inquiry systems for quick, professional customer responses.
Happy Clients
”spt’s attention to detail and customer care truly set them apart. Their products exceeded my expectations every time.”
Our Work
A glimpse into spt’s craftsmanship and attention to detail.
.spt-products{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
width:100%;
}
.product-card{
position:relative;
overflow:hidden;
border-radius:20px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all .5s ease;
cursor:pointer;
}
/* Shine Animation */
.product-card::before{
content:””;
position:absolute;
top:0;
left:-120%;
width:60%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.8),
transparent
);
transform:skewX(-25deg);
z-index:2;
}
.product-card:hover::before{
animation:shine 1.2s ease;
}
@keyframes shine{
100%{
left:180%;
}
}
.product-card img{
width:100%;
height:280px;
object-fit:cover;
transition:.6s;
}
.product-card:hover img{
transform:scale(1.08);
}
.product-card h3{
padding:18px;
margin:0;
text-align:center;
font-size:18px;
font-weight:700;
color:#222;
transition:.3s;
}
.product-card:hover h3{
color:#0056ff;
}
.product-card:hover{
transform:translateY(-10px);
box-shadow:
0 20px 40px rgba(0,0,0,.15),
0 0 25px rgba(0,86,255,.15);
}
@media(max-width:1024px){
.spt-products{
grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:767px){
.spt-products{
grid-template-columns:1fr;
}
}