*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8f9fa;
color:#333;
}

.navbar-brand{
font-size:22px;
font-weight:700;
}

.hero{
padding:90px 0;
background:linear-gradient(135deg,#0d6efd,#4da3ff);
color:#fff;
}

.hero h1{
font-size:26px;
font-weight:500;
}

.hero h2{
font-size:48px;
font-weight:700;
margin-bottom:15px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.hero-logo{
max-width:320px;
border-radius:50%;
background:#fff;
padding:12px;
box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.service-card{
border:none;
transition:.3s;
border-radius:15px;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
color:#0d6efd;
}

footer a{
text-decoration:none;
}

footer a:hover{
color:#ffc107!important;
}

.btn-warning{
color:#fff;
font-weight:600;
}

@media(max-width:768px){

.hero{
text-align:center;
padding:60px 20px;
}

.hero h2{
font-size:34px;
}

.hero-logo{
margin-top:30px;
max-width:220px;
}

}