/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0f172a;
color:white;
line-height:1.7;
overflow-x:hidden;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#020617;
position:sticky;
top:0;
z-index:100;
box-shadow:0 4px 10px rgba(0,0,0,0.4);
}

/* LOGO */

.logo{
height:70px;
background:white;
padding:4px;
border-radius:6px;
}

/* NAV LINKS */

nav ul{
display:flex;
gap:25px;
list-style:none;
align-items:center;
}

nav a{
color:white;
text-decoration:none;
font-size:15px;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#38bdf8;
}

/* SECTION */

section{
padding:80px 8%;
}

h1{
margin-bottom:20px;
}

h2{
margin-bottom:20px;
color:#38bdf8;
}

/* HERO */

.hero{
min-height:90vh;
background:url("https://images.unsplash.com/photo-1519389950473-47ba0277781c") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px 20px;
}

.hero-box{
background:rgba(0,0,0,0.65);
padding:50px 40px;
border-radius:12px;
max-width:750px;
width:100%;
}

.hero h1{
font-size:46px;
line-height:1.3;
}

.hero p{
margin-top:12px;
font-size:18px;
line-height:1.6;
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:25px;
padding:12px 28px;
background:#38bdf8;
border:none;
border-radius:6px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
color:black;
text-decoration:none;
}

.btn:hover{
background:#0ea5e9;
transform:scale(1.05);
}

/* ABOUT */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
}

/* SERVICES */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.service{
background:#1e293b;
padding:25px;
border-radius:10px;
transition:0.3s;
}

.service:hover{
transform:translateY(-8px);
background:#0ea5e9;
}

/* WHY CHOOSE US */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.box{
background:#1e293b;
padding:25px;
border-radius:10px;
transition:0.3s;
}

.box:hover{
background:#0ea5e9;
transform:translateY(-5px);
}

/* STATS */

.stats{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
gap:20px;
margin-top:40px;
text-align:center;
}

.stat h3{
font-size:36px;
color:#38bdf8;
}

/* TEAM */

.team{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.member{
background:#1e293b;
padding:20px;
border-radius:10px;
text-align:center;
transition:0.3s;
}

.member:hover{
transform:translateY(-5px);
background:#0ea5e9;
}

.member img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
margin-bottom:10px;
}

/* CLIENT LOGOS */

.clients{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:40px;
margin-top:40px;
align-items:center;
}

.clients img{
height:60px;
filter:grayscale(100%);
opacity:0.8;
transition:0.3s;
}

.clients img:hover{
filter:none;
opacity:1;
transform:scale(1.1);
}

/* LOGO SLIDER */

.logo-slider{
overflow:hidden;
background:#020617;
padding:30px 0;
margin-top:40px;
}

.logo-track{
display:flex;
width:max-content;
animation:scroll 25s linear infinite;
}

.logo-track img{
height:60px;
margin:0 40px;
filter:grayscale(100%);
opacity:0.8;
transition:0.3s;
}

.logo-track img:hover{
filter:none;
opacity:1;
transform:scale(1.1);
}

@keyframes scroll{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
border-radius:10px;
}

/* TESTIMONIALS */

.testimonials{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.review{
background:#1e293b;
padding:20px;
border-radius:10px;
}

/* CONTACT SECTION */

.contact{
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
}

.contact form{
width:100%;
max-width:500px;
display:flex;
flex-direction:column;
gap:15px;
}

.contact input,
.contact textarea{
width:100%;
padding:12px;
border:none;
border-radius:6px;
font-size:15px;
}

.contact textarea{
min-height:120px;
resize:vertical;
}

/* CTA */

.cta{
text-align:center;
background:#020617;
padding:60px 20px;
}

/* FOOTER */

footer{
background:#020617;
text-align:center;
padding:25px;
margin-top:40px;
}

/* WHATSAPP FLOAT BUTTON */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
font-size:28px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:9999;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

nav{
flex-direction:column;
gap:10px;
padding:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.hero{
padding:30px 15px;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.about{
grid-template-columns:1fr;
}

.services{
grid-template-columns:1fr;
}

.grid{
grid-template-columns:1fr;
}

.team{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:1fr;
}

.logo{
height:55px;
}

}
/* ===== MOBILE FIX ===== */

@media (max-width:768px){

/* NAVBAR FIX */

nav{
flex-direction:column;
align-items:center;
padding:12px 5%;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
margin-top:10px;
}

nav a{
font-size:14px;
}

/* HERO FIX */

.hero{
padding:30px 15px;
}

.hero-box{
padding:30px 20px;
max-width:95%;
}

.hero h1{
font-size:30px;
line-height:1.3;
}

.hero p{
font-size:15px;
}

/* BUTTON FIX */

.btn{
padding:10px 20px;
font-size:15px;
}

/* ABOUT SECTION FIX */

.about{
grid-template-columns:1fr;
text-align:center;
}

.about img{
margin-top:20px;
}

/* LOGO FIX */

.logo{
height:55px;
}

}
