body{
font-family:'Poppins',sans-serif;
background:#f5f6fa;
margin:0;
}


/* TOP BAR */

.top-bar{
background:#CABBD1;
padding:6px;
text-align:right;
font-weight:bold;
}


/* NAVBAR */

.navbar{
background:#5A4166;
padding:15px;
}

.navbar a{
color:white!important;
font-weight:500;
}


/* HERO */

.hero-slider{
height:600px;
}

.hero-slide{
height:600px;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.hero-overlay{
background:rgba(0,0,0,0.5);
width:100%;
height:100%;
display:flex;
align-items:center;
color:white;
}

.hero-overlay h1{
font-size:60px;
font-weight:700;
}


/* BUTTON */

.btn-main{
background:white;
color:#5A4166;
padding:12px 30px;
border-radius:30px;
border:none;
font-weight:600;
}


/* SECTION TITLE */

.section-title{
font-size:32px;
font-weight:700;
margin-bottom:40px;
}


/* SERVICE CARDS */

.service-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}


/* PARTNERS */

.partner-slider{
display:flex;
gap:40px;
overflow:auto;
padding:20px;
}

.partner-logo{
height:70px;
filter:grayscale(100%);
transition:0.3s;
}

.partner-logo:hover{
filter:none;
transform:scale(1.1);
}