*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Poppins", sans-serif;
}

body{
background:#f7f8fc;
color:#222;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
background:white;
box-shadow:0 5px 25px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:100;
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

.Share2Growth img{
height:42px;
}

.menu a{
margin-left:28px;
text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;
}

.menu a:hover{
color:#6b5cff;
}

.menu-toggle{
display:none;
font-size:22px;
cursor:pointer;
}


/* HERO */

.hero{
padding:120px 0;
background:linear-gradient(135deg,#6b5cff,#7c3aed);
color:white;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero-text h1{
font-size:48px;
margin-bottom:15px;
}

.hero-text p{
opacity:.9;
margin-bottom:25px;
}

.hero-img img{
width:100%;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.btn{
display:inline-block;
padding:14px 28px;
background:white;
color:#6b5cff;
border-radius:6px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.btn:hover{
transform:translateY(-2px);
}


/* SERVICES */

.services{
padding:110px 0;
background:#f9fafc;
}

.section-title{
text-align:center;
max-width:650px;
margin:auto;
margin-bottom:70px;
}

.section-title h4{
color:#6b5cff;
font-weight:600;
}

.section-title h2{
font-size:38px;
margin:10px 0;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:35px;
}

.card{
background:white;
padding:45px;
border-radius:12px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.05);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

.card i{
font-size:38px;
color:#6b5cff;
margin-bottom:15px;
}

.card h3{
margin-bottom:10px;
}


/* STRATEGY */

.strategy{
padding:110px 0;
background:white;
}

.strategy-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.strategy img{
width:100%;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.strategy h2{
font-size:34px;
margin-bottom:10px;
}

.strategy p{
margin-bottom:30px;
color:#666;
}

.skill{
margin-bottom:20px;
}

.skill-title{
display:flex;
justify-content:space-between;
font-weight:600;
margin-bottom:6px;
}

.bar{
height:8px;
background:#e5e5e5;
border-radius:20px;
overflow:hidden;
}

.fill{
height:8px;
background:linear-gradient(90deg,#6b5cff,#7c3aed);
border-radius:20px;
}

.s1{width:88%;}
.s2{width:95%;}
.s3{width:70%;}


/* STATS */

.stats{
padding:100px 0;
background:#6b5cff;
color:white;
}

.stats-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.stat h2{
font-size:44px;
margin-bottom:10px;
}


/* TESTIMONIAL */

.testimonial{
padding:110px 0;
background:#f9fafc;
text-align:center;
}

.testimonial h2{
font-size:34px;
margin-bottom:20px;
}

.quote{
max-width:650px;
margin:auto;
font-size:18px;
color:#555;
}


/* FOOTER */

footer{
background:#111;
color:#ccc;
padding:70px 0;
}

.footer{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.footer h3{
color:white;
margin-bottom:10px;
}

.footer h4{
color:white;
margin-bottom:10px;
}

.social{
display:flex;
gap:15px;
margin-top:15px;
}

.social a{
color:white;
font-size:18px;
transition:.3s;
}

.social a:hover{
color:#6b5cff;
}


/* MOBILE */

@media(max-width:900px){

.hero-grid,
.strategy-grid,
.stats-grid,
.footer{
grid-template-columns:1fr;
}

.hero-text h1{
font-size:36px;
}

.menu{
display:none;
flex-direction:column;
position:absolute;
top:70px;
right:20px;
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.menu.show{
display:flex;
}

.menu a{
margin:10px 0;
}

.menu-toggle{
display:block;
}

}
.page-hero{
background:#6b5cff;
color:white;
text-align:center;
padding:100px 0;
}

.page-banner{
background:linear-gradient(135deg,#6b5cff,#7c3aed);
color:white;
text-align:center;
padding:120px 0;
}

.page-banner h1{
font-size:42px;
margin-bottom:10px;
}

.about-section{
padding:100px 0;
background:white;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.about-features{
background:#f9fafc;
padding:100px 0;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.feature-card{
background:white;
padding:40px;
border-radius:12px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.05);
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-10px);
}

.feature-card i{
font-size:36px;
color:#6b5cff;
margin-bottom:10px;
}

@media(max-width:900px){

.about-grid{
grid-template-columns:1fr;
}

}
body{

font-family:Arial;
background:#6b5cff;
height:100vh;
display:flex;
align-items:center;
justify-content:center;

}

.box{

background:white;
padding:40px;
border-radius:10px;
width:300px;
text-align:center;

}

input{

width:100%;
padding:10px;
margin:10px 0;
border:1px solid #ddd;

}

button{

width:100%;
padding:10px;
background:#6b5cff;
color:white;
border:none;

}

a{

display:block;
margin-top:10px;

}