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

body{
font-family:'Poppins',sans-serif;
background:#f8fafc;
color:#111;
line-height:1.6;
}

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

/* HEADER */

.header{
background:#fff;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:100;
}

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

.logo{
font-weight:600;
font-size:20px;
}

.logo span{
color:#6366f1;
}
.logo img{
  height:80px;
  width:auto;
  
}
/* BUTTON */

.btn-primary{
background:#6366f1;
color:#fff;
padding:12px 20px;
border-radius:8px;
text-decoration:none;
display:inline-block;
font-size:14px;
transition:.25s;
border:none;
cursor:pointer;
}

.btn-primary:hover{
background:#4f46e5;
transform:translateY(-2px);
}

/* HERO */

/* HERO */

.hero{
position:relative;
background:linear-gradient(120deg,#6366f1,#8b5cf6);
color:#fff;
padding:140px 20px;
text-align:center;
overflow:hidden;
}

.hero-overlay{
position:absolute;
inset:0;
background:radial-gradient(circle at 30% 40%,rgba(255,255,255,0.15),transparent);
}

.hero-content{
position:relative;
z-index:2;
max-width:720px;
margin:auto;
}

/* Brand line */

.hero-brand{
letter-spacing:3px;
font-size:13px;
font-weight:600;
margin-bottom:10px;
opacity:.85;
}

/* Headline */

.hero h1{
font-size:44px;
line-height:1.3;
margin-bottom:20px;
font-weight:700;
}

/* Subtext */

.hero p{
opacity:.9;
margin-bottom:30px;
font-size:18px;
}

/* Buttons */

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* SECTION */

.section{
padding:80px 0;
}

.section.light{
background:#f1f5f9;
}

.section h2{
text-align:center;
font-size:28px;
margin-bottom:40px;
}

/* GRID */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
}

/* CARDS */

.portfolio-card{
background:#ffffff;
border-radius:16px;
padding:22px;
box-shadow:0 10px 35px rgba(0,0,0,0.06);
transition:all .25s ease;
display:flex;
flex-direction:column;
gap:10px;
}

.portfolio-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.portfolio-card img{
width:100%;
border-radius:12px;
background:#f1f5f9;
padding:6px;
margin-bottom:10px;
}

.portfolio-card p{
font-size:14px;
color:#555;
}

.highlight-card{
border:2px solid #6366f1;
background:linear-gradient(#ffffff,#ffffff) padding-box,
linear-gradient(120deg,#6366f1,#8b5cf6) border-box;
}

/* TRUST */

.trust-section{
background:#f8fafc;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:35px;
}

.trust-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.25s;
}

.trust-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.trust-card h3{
margin-bottom:8px;
font-size:18px;
}

.trust-card p{
font-size:14px;
color:#555;
}

/* STATS */

.stats{
display:flex;
justify-content:center;
gap:40px;
margin-top:40px;
flex-wrap:wrap;
}

.stat{
text-align:center;
}

.stat h3{
font-size:38px;
font-weight:600;
color:#6366f1;
}

.stat p{
font-size:14px;
color:#555;
margin-top:5px;
}

/* PRICING */

.pricing-section{
background:#fff;
}

.pricing-subtext{
text-align:center;
margin-bottom:35px;
color:#666;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.pricing-card{
background:#fff;
border-radius:16px;
padding:28px;
text-align:center;
border:1px solid #eee;
box-shadow:0 10px 25px rgba(0,0,0,.04);
transition:.25s;
}

.pricing-card:hover{
transform:translateY(-6px);
}

.pricing-card.featured{
border:2px solid #6366f1;
}

.badge{
display:inline-block;
background:#6366f1;
color:#fff;
font-size:12px;
padding:4px 10px;
border-radius:20px;
margin-bottom:10px;
}

.price{
font-size:34px;
font-weight:600;
margin:10px 0;
}

.price-note{
font-size:13px;
color:#777;
margin-bottom:15px;
}

.pricing-card ul{
list-style:none;
text-align:left;
margin-bottom:20px;
}

.pricing-card li{
padding:6px 0;
font-size:14px;
}

/* CONTACT */

.contact-section{
padding:90px 0;
background:linear-gradient(120deg,#6366f1,#8b5cf6);
color:#fff;
text-align:center;
}

.contact-container{
max-width:750px;
margin:auto;
}

.contact-section h2{
font-size:32px;
margin-bottom:10px;
}

.contact-sub{
opacity:.9;
margin-bottom:25px;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
display:inline-block;
background:#22c55e;
padding:12px 22px;
border-radius:8px;
color:#fff;
text-decoration:none;
font-weight:500;
margin-bottom:35px;
transition:.25s;
}

.whatsapp-btn:hover{
background:#16a34a;
transform:translateY(-2px);
}

/* CONTACT CARD */

.contact-card{
background:#fff;
border-radius:16px;
padding:35px;
box-shadow:0 20px 50px rgba(0,0,0,.18);
max-width:600px;
margin:auto;
}

/* FORM */

.form{
display:flex;
flex-direction:column;
gap:16px;
}

.form input,
.form textarea{
padding:14px;
border-radius:10px;
border:1px solid #e5e7eb;
font-family:'Poppins',sans-serif;
background:#fafafa;
transition:.25s;
}

.form input:focus,
.form textarea:focus{
outline:none;
border-color:#6366f1;
background:#fff;
box-shadow:0 0 0 3px rgba(99,102,241,.15);
}

.form textarea{
min-height:140px;
resize:none;
}

/* FOOTER */

.footer{
text-align:center;
padding:30px;
font-size:14px;
color:#666;
background:#fff;
border-top:1px solid #eee;
}

/* MOBILE */

@media(max-width:768px){

.hero{
padding:90px 0;
}

.hero h1{
font-size:26px;
}

.section{
padding:60px 0;
}

.pricing-card{
padding:24px;
}

.contact-section{
padding:70px 0;
}

.contact-card{
padding:25px;
}

.contact-section h2{
font-size:26px;
}

}