body{
font-family:'Poppins',sans-serif;
margin:0;
background:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#0b3a75;
color:white;
}

.logo-area{
display:flex;
align-items:center;
gap:15px;
}

.logo-area img{
height:55px;
}

.logo-area h1{
font-family:'Playfair Display';
color:#d4a017;
}

nav a{
color:white;
margin:10px;
text-decoration:none;
}

.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;

background:linear-gradient(-45deg,#0b3a75,#1e63c5,#d4a017,#0b3a75);
background-size:400% 400%;
animation:gradient 12s ease infinite;
}

@keyframes gradient{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

.hero h2{
font-size:50px;
}

.btn{
background:#d4a017;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:white;
}

.section-title{
text-align:center;
font-size:34px;
color:#0b3a75;
margin:60px 0 40px;
}

.services-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:40px;
}

.service-card{
padding:35px;
border-radius:10px;
text-align:center;
}

.service-card h3{
color:#0b3a75;
}

.medical{background:#d9f2d9;}
.general{background:#fff2cc;}
.motor{background:#ffd6d6;}
.life{background:#e6e6ff;}

button{
background:#d4a017;
border:none;
padding:10px 20px;
border-radius:20px;
color:white;
cursor:pointer;
}

.more{
display:none;
margin-top:15px;
}

#about{
padding:40px;
text-align:center;
max-width:900px;
margin:auto;
}

.about-text{
font-size:17px;
line-height:1.7;
}

#partners{
padding:60px;
background:#fafafa;
}

.partners-slider{
display:flex;
gap:60px;
align-items:center;
animation:slide 25s linear infinite;
}

.partners-slider img{
height:70px;
}

@keyframes slide{
0%{transform:translateX(0);}
100%{transform:translateX(-100%);}
}

form{
max-width:420px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
}

input,select,textarea{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
}

form button{
background:#0b3a75;
color:white;
}

#contact{
text-align:center;
padding:60px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}