:root{

--primary:#ec008c;
--secondary:#222222;
--light:#f8f8f8;
--white:#ffffff;

--cyan:#00b7ff;
--yellow:#ffd400;

}

.page-hero{

padding:120px 20px;
text-align:center;

background:
linear-gradient(
135deg,
#ffffff,
#f7f7f7);

}

.page-hero h1{

font-size:4rem;
margin-bottom:20px;

}

.page-hero p{

font-size:1.3rem;
color:#666;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#222;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

header{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    height:80px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#ec008c;
}

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #f8f8f8 100%);
}

.hero-logo{
    width:600px;
    max-width:85%;
    opacity:0;
    transform:translateY(200px);
    animation:riseUp 2s ease forwards;
}

@keyframes riseUp{
    from{
        opacity:0;
        transform:translateY(150px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero h1{
    font-size:5rem;
    font-weight:800;
    margin-top:40px;
    letter-spacing:-2px;
}

.hero h1 span{
    color:#d60000;
}

.hero p{
    font-size:1.5rem;
    margin-top:20px;
    color:#555;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:50px;
    margin-top:80px;
}

@media(max-width:900px){

.cards{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:2.5rem;
}

.navbar{
    flex-direction:column;
    gap:20px;
}
}
.card img{
    width:100%;
    border-radius:10px;
}

.card h3{
    margin-top:15px;
}

.card ul{
    padding-left:20px;
}
input,
textarea{

width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;

}

button{

background:#ec008c;
color:white;
border:none;
padding:15px 30px;
border-radius:8px;
cursor:pointer;
font-size:16px;

}

button:hover{

opacity:.9;

}
<p>
The Complete Print Solution
</p>

.cmyk-bar{
    display:flex;
    gap:12px;
    margin-top:35px;
}

.cmyk{
    width:70px;
    height:12px;
    border-radius:50px;
}

.cyan{
    background:#00b7ff;
}

.magenta{
    background:#ec008c;
}

.yellow{
    background:#ffd400;
}

.black{
    background:#222;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-top:50px;
}

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    padding:20px 20px 10px;
}

.product-card p{
    padding:0 20px 25px;
    color:#666;
}

.carpet-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-image{
    width:100%;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

@media(max-width:900px){

.carpet-hero-grid{
    grid-template-columns:1fr;
}

}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-card h2{
    margin-bottom:25px;
}

.contact-info{
    line-height:2;
}

.map-container{
    margin-top:60px;
}

.map-container iframe{
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

@media(max-width:900px){

.contact-grid{
    grid-template-columns:1fr;
}

}

.btn{

display:inline-block;

padding:15px 35px;

background:#ec008c;
color:white;

text-decoration:none;

border-radius:12px;

font-weight:600;

transition:.3s;

}

.btn:hover{

transform:translateY(-3px);

box-shadow:
0 10px 25px rgba(0,0,0,.15);

}

.product-card img{

height:260px;

object-fit:cover;

transition:.4s;

}

.product-card:hover img{

transform:scale(1.05);

}