body{
font-family:'Poppins',sans-serif;
overflow-x:hidden;
}

.text-pink{
color:#de3577;
}

.btn-pink{
background:#de3577;
color:white;
border:none;
padding:12px 30px;
}

.btn-pink:hover{
background:#c22665;
color:white;
}

.hero{
padding:120px 0;
background:white;
}

.hero h1{
font-size:4rem;
font-weight:800;
line-height:1.2;
}

.hero h1 span{
color:#de3577;
}

.hero p{
font-size:1.2rem;
margin:25px 0;
}

.hero-img{
border-radius:30px;
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.section-padding{
padding:100px 0;
}

.service-card{
background:white;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
height:100%;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:45px;
color:#de3577;
margin-bottom:20px;
}

.industry-box{
padding:30px;
background:#f7f7f7;
border-radius:15px;
font-weight:600;
}

.cta{
background:#de3577;
color:white;
padding:100px 0;
}

footer{
background:black;
color:white;
padding:25px;
}

@media(max-width:768px){

.hero{
text-align:center;
padding:80px 0;
}

.hero h1{
font-size:2.5rem;
}

.industry-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:0.3s ease;
text-align:center;
height:100%;
display:flex;
flex-direction:column;
}

.industry-card img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}

.industry-card h5{
margin:0;
padding:12px 15px;
background:#000;
color:#fff;
font-weight:600;
text-align:center;
letter-spacing:0.5px;
}

.industry-card:hover{
transform:translateY(-8px);
}
}