*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0f172a;
color:white;
overflow-x:hidden;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
position:sticky;
top:0;
background:#0f172a;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
display:flex;
align-items:center;
}

.logo img{
height:45px;
width:auto;
display:block;
transform:scale(2.8);
transform-origin:left center;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#cbd5e1;
transition:0.3s;
font-weight:500;
}

.nav-links a:hover{
color:white;
text-decoration: none;
}

.menu-btn{
display:none;
font-size:28px;
cursor:pointer;
}

/* BUTTONS */
.btn{
background:linear-gradient(45deg,#2563eb,#7c3aed);
padding:14px 26px;
border-radius:12px;
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
display:inline-block;
border:none;
cursor:pointer;
}

.btn:hover{
transform:translateY(-4px);
}

.btn-outline{
padding:14px 26px;
border:1px solid rgba(255,255,255,0.2);
border-radius:12px;
text-decoration:none;
color:white;
}

/* HERO */
.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 60px;
gap:60px;
min-height:100vh;
}

.hero-left{
max-width:620px;
}

.hero h1{
font-size:65px;
line-height:1.1;
margin-bottom:20px;
font-weight:800;
}

.hero span{
display:block;
background:linear-gradient(45deg,#2563eb,#7c3aed);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:18px;
line-height:1.8;
color:#cbd5e1;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.hero-right{
flex:1;
display:flex;
justify-content:center;
}

.hero-right img{
width:100%;
max-width:520px;
border-radius:25px;
box-shadow:0 25px 70px rgba(0,0,0,0.5);
transition:0.2s;
}

/* SECTION */
.section{
padding:100px 60px;
text-align:center;
}

.section h2{
font-size:45px;
margin-bottom:60px;
}

.dark{
background:#020617;
}

/* CARDS */
.cards{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.card,
.review-card,
.contact-box{
background:#1e293b;
padding:30px;
border-radius:20px;
width:280px;
transition:0.4s;
}

.card:hover,
.review-card:hover,
.contact-box:hover{
transform:translateY(-10px);
background:linear-gradient(45deg,#2563eb,#7c3aed);
}

.icon{
font-size:40px;
margin-bottom:15px;
}

.card h3{
margin-bottom:15px;
}

/* WORK */
.work-grid{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.work-grid img{
width:350px;
height:230px;
object-fit:cover;
border-radius:20px;
transition:0.4s;
box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.work-grid img:hover{
transform:scale(1.05);
}

/* PRICING */
.pricing-grid{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.price-card{
background:#1e293b;
padding:40px 30px;
border-radius:25px;
width:320px;
position:relative;
transition:0.4s;
}

.price-card:hover{
transform:translateY(-12px);
}

.price{
font-size:55px;
font-weight:700;
margin:25px 0;
}

.price-card ul{
list-style:none;
text-align:left;
margin-bottom:30px;
}

.price-card li{
margin-bottom:14px;
color:#e2e8f0;
}

.featured{
border:2px solid #2563eb;
transform:scale(1.05);
background:linear-gradient(180deg,#1e293b,#111827);
}

.popular{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#2563eb;
padding:8px 18px;
border-radius:20px;
font-size:14px;
font-weight:600;
}

/* REVIEWS */
.review-card p{
margin:20px 0;
line-height:1.7;
color:#e2e8f0;
}

/* CONTACT */
.contact-text{
color:#cbd5e1;
margin-bottom:40px;
font-size:18px;
}

.contact-info{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-bottom:40px;
}

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:auto;
}

input,
textarea{
padding:16px;
border:none;
border-radius:12px;
background:#1e293b;
color:white;
font-size:16px;
}

textarea{
height:140px;
resize:none;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:18px;
border-radius:50%;
font-size:24px;
text-decoration:none;
z-index:999;
}

/* MOBILE */
@media(max-width:1000px){

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
height:auto;
}

/* LOGO */
.logo img{
height:55px;
transform:none;
}

/* BUTTON */
.navbar .btn{
padding:10px 18px;
font-size:14px;
border-radius:12px;
}

/* MENU ICON */
.menu-btn{
display:block;
font-size:32px;
margin-left:10px;
}

/* HIDE NAV LINKS */
.nav-links{
display:none;
}

}
.hero{
flex-direction:column;
text-align:center;
padding:60px 20px;
}

.hero h1{
font-size:42px;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero-right img{
max-width:320px;
}

.section{
padding:80px 20px;
}


.work-grid img{
width:100%;
max-width:340px;
}

}
.navbar{
height:120px;
overflow:hidden;
}