/* ===========================================
   AK MULTI SOLUTIONS
   Professional Style.css - Part 1
=========================================== */

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#f7f9fc;
color:#333;
line-height:1.7;

}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

/* Container */

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* ================= HEADER ================= */

header{

position:sticky;
top:0;
left:0;
width:100%;
background:#ffffff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
z-index:999;

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

}

.logo h2{

font-size:28px;
font-weight:700;
color:#0d47a1;

}

/* Navigation */

nav{

display:flex;
gap:20px;
flex-wrap:wrap;

}

nav a{

font-size:15px;
font-weight:500;
transition:.3s;
padding:8px 12px;
border-radius:5px;

}

nav a:hover{

background:#0d47a1;
color:#fff;

}

/* ================= HERO ================= */

.hero{

padding:110px 0;
text-align:center;

background:linear-gradient(135deg,#0d47a1,#1976d2);

color:#fff;

}

.hero h1{

font-size:48px;
font-weight:700;
margin-bottom:20px;

}

.hero p{

font-size:20px;
max-width:850px;
margin:auto;
margin-bottom:35px;

}

.hero-buttons{

display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;

}

/* Buttons */

.btn,
.btn2,
.btn3{

display:inline-block;

padding:14px 28px;

border-radius:6px;

font-weight:600;

transition:.3s;

}

.btn{

background:#ff9800;
color:#fff;

}

.btn:hover{

background:#f57c00;

}

.btn2{

background:#25D366;
color:#fff;

}

.btn2:hover{

background:#128C7E;

}

.btn3{

background:#ffffff;
color:#0d47a1;

}

.btn3:hover{

background:#eeeeee;

}

/* Section */

section{

padding:70px 0;

}

section h2{

text-align:center;

font-size:34px;

margin-bottom:25px;

color:#0d47a1;

}

section p{

font-size:17px;

}
/* ===========================================
   ABOUT SECTION
=========================================== */

.about{
background:#ffffff;
}

.about p{
max-width:900px;
margin:15px auto;
text-align:center;
font-size:17px;
color:#555;
line-height:1.9;
}

/* ===========================================
   SERVICES
=========================================== */

.services{
background:#f5f7fb;
}

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

.card{
background:#ffffff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s ease;
border-top:4px solid #1976d2;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.card h3{
font-size:22px;
margin-bottom:12px;
color:#0d47a1;
}

.card p{
color:#666;
font-size:15px;
line-height:1.7;
}

/* ===========================================
   WHY CHOOSE US
=========================================== */

.why{
background:#ffffff;
}

.why ul{
max-width:700px;
margin:auto;
}

.why li{
background:#f8f9fa;
margin:15px 0;
padding:16px 22px;
border-left:5px solid #1976d2;
border-radius:8px;
font-size:17px;
transition:.3s;
}

.why li:hover{
background:#1976d2;
color:#fff;
transform:translateX(6px);
}

/* ===========================================
   CUSTOMER REVIEWS
=========================================== */

.reviews{
background:#f5f7fb;
}

.reviews .card{
text-align:center;
}

.reviews .card b{
display:block;
margin-top:15px;
color:#0d47a1;
}

.reviews .card p{
font-style:italic;
}

/* ===========================================
   FAQ
=========================================== */

.faq{
background:#ffffff;
}

.faq h3{
margin-top:25px;
font-size:21px;
color:#0d47a1;
}

.faq p{
margin-top:8px;
margin-bottom:18px;
color:#555;
line-height:1.8;
}

/* ===========================================
   SIMPLE ANIMATIONS
=========================================== */

.card,
.btn,
.btn2,
.btn3{
transition:all .3s ease;
}

.btn:hover,
.btn2:hover,
.btn3:hover{
transform:translateY(-2px);
}

section{
animation:fadeIn .7s ease;
}

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(25px);
}

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

}
/* ===========================================
   LATEST BLOG
=========================================== */

.latest-blog{
background:#f4f8fc;
}

.latest-blog p{
text-align:center;
max-width:800px;
margin:0 auto 30px;
color:#666;
}

/* ===========================================
   CONTACT FORM
=========================================== */

.contact-form{
background:#ffffff;
}

.contact-form form{
max-width:700px;
margin:auto;
}

.contact-form input,
.contact-form textarea{

width:100%;
padding:15px;
margin-bottom:18px;
border:1px solid #ddd;
border-radius:8px;
font-size:16px;
font-family:'Poppins',sans-serif;
outline:none;
transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#1976d2;
box-shadow:0 0 10px rgba(25,118,210,.15);

}

.contact-form button{
border:none;
cursor:pointer;
}

/* ===========================================
   MAP
=========================================== */

.map{
background:#f5f7fb;
}

.map iframe{

border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.12);

}

/* ===========================================
   CONTACT
=========================================== */

.contact{

text-align:center;
background:#ffffff;

}

.contact p{

margin:10px 0;
font-size:17px;

}

/* ===========================================
   FOOTER
=========================================== */

footer{

background:#0d47a1;
color:#ffffff;
padding:35px 0;
text-align:center;

}

footer p{

margin:10px 0;

}

footer a{

color:#ffffff;
margin:0 8px;
transition:.3s;

}

footer a:hover{

color:#ff9800;

}

/* ===========================================
   WHATSAPP FLOAT
=========================================== */

.whatsapp-float{

position:fixed;
right:20px;
bottom:20px;

width:60px;
height:60px;

background:#25D366;
color:#fff;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-size:30px;

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

z-index:999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

}

/* ===========================================
   SCROLL TO TOP
=========================================== */

#topBtn{

display:none;

position:fixed;

left:20px;
bottom:20px;

width:50px;
height:50px;

border:none;

border-radius:50%;

background:#1976d2;

color:#fff;

font-size:22px;

cursor:pointer;

z-index:999;

transition:.3s;

}

#topBtn:hover{

background:#0d47a1;

}

/* ===========================================
   RESPONSIVE
=========================================== */

@media(max-width:992px){

.hero h1{

font-size:38px;

}

nav{

justify-content:center;

}

}

@media(max-width:768px){

header .container{

flex-direction:column;
gap:15px;

}

nav{

gap:10px;

}

nav a{

font-size:14px;

}

.hero{

padding:80px 0;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;
align-items:center;

}

.btn,
.btn2,
.btn3{

width:220px;
text-align:center;

}

section{

padding:50px 0;

}

section h2{

font-size:28px;

}

.cards{

grid-template-columns:1fr;

}

}

@media(max-width:480px){

.logo h2{

font-size:22px;

}

.hero h1{

font-size:26px;

}

.hero p{

font-size:15px;

}

.contact p{

font-size:15px;

}

footer{

font-size:14px;

}

}
