/*====================================================
 FAIZ SERVICES PREMIUM CSS
 PART 1
 Reset + Header + Glass Navbar + Hero Slider
=====================================================*/

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f7f9fc;
color:#222;
overflow-x:hidden;
line-height:1.7;
}

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

a{
text-decoration:none;
transition:.35s;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:1280px;
margin:auto;
}

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

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
transition:.4s;
background:rgba(255,255,255,.08);
backdrop-filter:blur(16px);
-webkit-backdrop-filter:blur(16px);
border-bottom:1px solid rgba(255,255,255,.15);
}

header.sticky{
background:#ffffff;
box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.navbar{
height:90px;
width:90%;
max-width:1300px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:34px;
font-weight:800;
color:#0b63ce;
}

.logo span{
color:#111;
}

.nav-links{
display:flex;
align-items:center;
gap:35px;
}

.nav-links a{
font-size:16px;
font-weight:600;
color:#222;
position:relative;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:#0b63ce;
transition:.35s;
}

.nav-links a:hover::after,
.nav-links .active::after{
width:100%;
}

.nav-links a:hover{
color:#0b63ce;
}

.quote-btn{
padding:14px 30px;
border-radius:50px;
background:#0b63ce;
color:#fff;
font-weight:700;
}

.quote-btn:hover{
background:#084da1;
transform:translateY(-2px);
}

.menu-btn{
display:none;
font-size:30px;
cursor:pointer;
}

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

.hero-slider{
position:relative;
width:100%;
height:100vh;
min-height:760px;
overflow:hidden;
}

.slide{
position:absolute;
inset:0;
opacity:0;
visibility:hidden;
transition:opacity 1.2s ease;
}

.slide.active{
opacity:1;
visibility:visible;
z-index:2;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
animation:heroZoom 14s linear infinite alternate;
}

.hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
90deg,
rgba(4,18,38,.82),
rgba(4,18,38,.50),
rgba(4,18,38,.20)
);
}

.hero-content{
position:absolute;
top:50%;
left:8%;
transform:translateY(-50%);
max-width:720px;
color:#fff;
z-index:5;
}

.hero-content span{
display:inline-block;
padding:10px 20px;
border-radius:40px;
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
font-size:13px;
font-weight:600;
letter-spacing:2px;
margin-bottom:22px;
text-transform:uppercase;
}

.hero-content h1{
font-size:64px;
font-weight:800;
line-height:1.15;
margin-bottom:20px;
}

.hero-content p{
font-size:20px;
line-height:1.8;
margin-bottom:35px;
max-width:650px;
}

.hero-btns{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn1,
.btn2{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 36px;
border-radius:50px;
font-weight:700;
}

.btn1{
background:#0b63ce;
color:#fff;
}

.btn1:hover{
background:#084da1;
transform:translateY(-4px);
}

.btn2{
border:2px solid #fff;
color:#fff;
}

.btn2:hover{
background:#fff;
color:#0b63ce;
}

@keyframes heroZoom{

0%{
transform:scale(1);
}

100%{
transform:scale(1.10);
}

}

/*==========================
SLIDER DOTS
==========================*/

.hero-dots{
position:absolute;
left:50%;
bottom:35px;
transform:translateX(-50%);
display:flex;
gap:12px;
z-index:50;
}

.hero-dots span{
width:14px;
height:14px;
border-radius:50%;
background:rgba(255,255,255,.45);
cursor:pointer;
transition:.35s;
}

.hero-dots span.active{
background:#0b63ce;
transform:scale(1.3);
}
/*====================================================
 FAIZ SERVICES PREMIUM CSS
 PART 2
 Responsive + About + Counter
=====================================================*/

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

@media(max-width:991px){

.nav-links{
display:none;
}

.menu-btn{
display:block;
}

.quote-btn{
display:none;
}

.hero-content{
left:6%;
right:6%;
max-width:100%;
}

.hero-content h1{
font-size:48px;
}

.hero-content p{
font-size:18px;
}

}

@media(max-width:768px){

.hero-slider{
height:90vh;
min-height:650px;
}

.slide img{
object-position:65% center;
}

.hero-content{
left:5%;
right:5%;
max-width:90%;
}

.hero-content h1{
font-size:34px;
line-height:1.25;
}

.hero-content p{
font-size:16px;
}

.hero-btns{
flex-direction:column;
align-items:flex-start;
}

.btn1,
.btn2{
width:220px;
justify-content:center;
}

}

/*==========================
ABOUT
==========================*/

.about{
padding:110px 0;
background:#fff;
}

.about .container{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-image{
position:relative;
}

.about-image img{
width:100%;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.about-content span{
color:#0b63ce;
font-size:14px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
display:block;
margin-bottom:18px;
}

.about-content h2{
font-size:46px;
color:#0d1b2a;
line-height:1.25;
margin-bottom:20px;
}

.about-content p{
font-size:17px;
color:#666;
line-height:1.9;
margin-bottom:35px;
}

.about-features{
display:flex;
flex-direction:column;
gap:22px;
margin-bottom:35px;
}

.feature{
display:flex;
gap:18px;
padding:22px;
background:#f8fbff;
border-radius:18px;
transition:.35s;
}

.feature:hover{
transform:translateY(-6px);
box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.feature i{
width:62px;
height:62px;
border-radius:50%;
background:#0b63ce;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
flex-shrink:0;
}

.feature h4{
font-size:21px;
margin-bottom:8px;
color:#111;
}

.feature p{
margin:0;
font-size:15px;
color:#666;
}

/*==========================
COUNTER
==========================*/

.counter{
padding:90px 8%;
background:linear-gradient(135deg,#0b63ce,#084da1);
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
}

.counter-box{
padding:35px;
border-radius:20px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(10px);
transition:.35s;
}

.counter-box:hover{
transform:translateY(-8px);
background:rgba(255,255,255,.18);
}

.counter-box h2{
font-size:50px;
color:#fff;
margin-bottom:10px;
font-weight:800;
}

.counter-box p{
font-size:17px;
color:#eef5ff;
}

/*==========================
TABLET
==========================*/

@media(max-width:991px){

.about .container{
grid-template-columns:1fr;
}

.counter{
grid-template-columns:repeat(2,1fr);
}

}

/*==========================
MOBILE
==========================*/

@media(max-width:768px){

.about{
padding:80px 20px;
}

.about-content h2{
font-size:34px;
}

.counter{
grid-template-columns:1fr;
padding:70px 20px;
}

.counter-box h2{
font-size:40px;
}

  }
/*====================================================
 FAIZ SERVICES PREMIUM CSS
 PART 3
 Services + Why + CTA + Footer + Animations
=====================================================*/

/*==========================
SECTION TITLE
==========================*/

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
display:inline-block;
color:#0b63ce;
font-size:14px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:12px;
}

.section-title h2{
font-size:44px;
color:#0d1b2a;
margin-bottom:15px;
}

.section-title p{
max-width:720px;
margin:auto;
font-size:17px;
color:#666;
line-height:1.8;
}

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

.services{
padding:110px 0;
background:#f8fbff;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.service-card{
background:#fff;
padding:40px 30px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
text-align:center;
transition:.35s;
border-top:4px solid transparent;
}

.service-card:hover{
transform:translateY(-10px);
border-color:#0b63ce;
box-shadow:0 25px 50px rgba(11,99,206,.18);
}

.service-card i{
font-size:48px;
color:#0b63ce;
margin-bottom:20px;
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
}

.service-card p{
color:#666;
line-height:1.8;
}

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

.why{
padding:110px 0;
background:#fff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.why-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.35s;
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(11,99,206,.15);
}

.why-card i{
font-size:48px;
color:#0b63ce;
margin-bottom:18px;
}

.why-card h3{
margin-bottom:15px;
font-size:24px;
}

/*==========================
CTA
==========================*/

.cta{
padding:110px 20px;
background:linear-gradient(135deg,#0b63ce,#063b89);
text-align:center;
color:#fff;
}

.cta h2{
font-size:46px;
margin-bottom:20px;
}

.cta p{
max-width:760px;
margin:auto;
margin-bottom:35px;
font-size:18px;
line-height:1.8;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

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

footer{
background:#071321;
color:#fff;
padding:80px 0 30px;
}

.footer-container{
width:90%;
max-width:1280px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
}

.footer-about h2,
.footer-links h3,
.footer-contact h3{
margin-bottom:20px;
}

.footer-about p,
.footer-contact p{
color:#cfd8e3;
line-height:1.9;
}

.footer-links ul li{
margin-bottom:12px;
}

.footer-links a{
color:#cfd8e3;
}

.footer-links a:hover{
color:#4da3ff;
padding-left:8px;
}

.footer-social{
display:flex;
gap:12px;
margin-top:25px;
}

.footer-social a{
width:44px;
height:44px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.08);
color:#fff;
transition:.35s;
}

.footer-social a:hover{
background:#0b63ce;
transform:translateY(-5px);
}

.copyright{
margin-top:50px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
color:#bfc9d4;
}

/*==========================
SCROLL ANIMATION
==========================*/

.hidden-item{
opacity:0;
transform:translateY(60px);
transition:.8s;
}

.show-item{
opacity:1;
transform:translateY(0);
}

/*==========================
TOP BUTTON
==========================*/

.top-btn{
position:fixed;
right:25px;
bottom:25px;
width:55px;
height:55px;
border-radius:50%;
background:#0b63ce;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
cursor:pointer;
opacity:0;
visibility:hidden;
transition:.35s;
z-index:9999;
}

.top-btn.show{
opacity:1;
visibility:visible;
}

.top-btn:hover{
background:#084da1;
transform:translateY(-5px);
}

/*==========================
MOBILE
==========================*/

@media(max-width:991px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-social{
justify-content:center;
}

.services-grid,
.why-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.section-title h2,
.cta h2{
font-size:32px;
}

.service-card,
.why-card{
padding:30px 22px;
}

  }
/* Mobile Menu */

@media (max-width:991px){

.menu-btn{
display:block;
}

.nav-links{
position:fixed;
top:90px;
left:-100%;
width:100%;
height:calc(100vh - 90px);
background:#ffffff;
display:flex;
flex-direction:column;
justify-content:flex-start;
align-items:center;
gap:30px;
padding-top:40px;
transition:.4s;
z-index:999;
}

.nav-links.show{
left:0;
}

.nav-links a{
font-size:20px;
color:#222;
}

}
/* ==========================
WHATSAPP FLOAT BUTTON
========================== */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:95px;
width:65px;
height:65px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:34px;
box-shadow:0 12px 30px rgba(37,211,102,.45);
z-index:9999;
transition:.35s;
animation:whatsappPulse 2s infinite;
}

.whatsapp-btn:hover{
transform:scale(1.1);
background:#20ba5a;
color:#fff;
}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.55);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

@media(max-width:768px){

.whatsapp-btn{
width:60px;
height:60px;
font-size:30px;
right:18px;
bottom:90px;
}

 }
