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

.hero {
    background-image: linear-gradient(135deg,
            #050505 0%,
            #0f0a1f 25%,
            #1a0d2e 50%,
            #2b0f45 75%,
            #3b0764 100%);
    color: white;
}

.container-hero {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo {
    font-size: 38px;
    font-weight: 700;
}

.title h1 {
    font-size: 36px;
}

.purple {
    color: #9b5cff;
}

.subtitle {
    text-align: center;
    color: #b084ff;
    font-weight: 600;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 40px;
    align-items: center;
}

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

.service {
    color: #cfcfcf;
}

.service i {
    font-size: 22px;
    color: #9b5cff;
    margin-bottom: 10px;
}

.service h3 {
    color: white;
    margin-bottom: 8px;
}

.center-flower {
    position: relative;
    width: 220px;
    height: 220px;
    margin: auto;
}

.petal {
    position: absolute;
    width: 110px;
    height: 110px;
    background: linear-gradient(145deg, #7c2cff, #c084fc);
    border-radius: 60%;
    transition: .4s;
}

.petal:hover {
    transform: scale(1.1);
}

.p1 {
    top: -10px;
    left: 55px;
}

.p2 {
    top: 55px;
    left: 120px;
}

.p3 {
    top: 120px;
    left: 55px;
}

.p4 {
    top: 55px;
    left: -10px;
}

.p5 {
    top: 55px;
    left: 55px;
}

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

.card {
    background: linear-gradient(135deg, #7c2cff, #b46cff);
    padding: 30px;
    border-radius: 20px;
    transition: .3s;
}

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

.card h3 {
    margin-bottom: 10px;
}

.banner {
    margin-top: 40px;
    background: linear-gradient(145deg, #2b0047, #4a007a);
    padding: 25px;
    border-radius: 16px;
    color: #ddd;
}

/* responsive */

@media(max-width:900px) {

    .services-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .center-flower {
        margin: 40px auto;
    }

}