body{
    margin:0;
    font-family:Poppins,sans-serif;
    background:#fff;
    color:#111827;
}

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

.site-header{
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.main-menu{
    display:flex;
    gap:30px;
    list-style:none;
}

.main-menu li a{
    text-decoration:none;
    color:#111;
}

.header-btn{
    background:#7c3aed;
    color:#fff;
    padding:12px 25px;
    border-radius:40px;
    text-decoration:none;
}

.hero-section{
    padding:120px 0;
}

.hero-content{
    display:flex;
    align-items:center;
    gap:50px;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:60px;
}

.hero-left h1 span{
    color:#7c3aed;
}

.hero-right{
    flex:1;
}

.hero-circle{
    width:450px;
    height:450px;
    border-radius:50%;
    background:conic-gradient(
    #7c3aed,
    #ec4899,
    #f59e0b,
    #22c55e,
    #3b82f6,
    #7c3aed
    );
}

.services-section{
    padding:100px 0;
}

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

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.service-card img{
    width:100%;
}

.service-content{
    padding:25px;
}

.site-footer{
    background:#111827;
    color:#fff;
    padding:80px 0;
}