@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

body{

    font-family:'Poppins',sans-serif;

    background:#f7f7f7;

    overflow-x:hidden;

    color:#111;
}

.container{

    width:90%;

    max-width:1280px;

    margin:auto;
}

/* NAVBAR */

.main-header{

    position:absolute;

    top:30px;

    left:0;

    width:100%;

    z-index:999;
}

.nav-wrapper{

    width:90%;

    max-width:1280px;

    margin:auto;

    background:white;

    border-radius:100px;

    padding:18px 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.logo a{

    text-decoration:none;

    font-size:38px;

    font-weight:800;

    background:
    linear-gradient(
        135deg,
        #ff0080,
        #7b2ff7
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.menu{

    display:flex;

    gap:45px;

    list-style:none;
}

.menu a{

    text-decoration:none;

    color:#111;

    font-weight:600;

    transition:.3s;
}

.menu a:hover{

    color:#ff0080;
}

.nav-btn{

    background:
    linear-gradient(
        135deg,
        #ff0080,
        #7b2ff7
    );

    color:white;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;
}

/* HERO */

.hero-section{

    padding-top:180px;

    padding-bottom:120px;
}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;
}

.hero-content h1{

    font-size:78px;

    line-height:1.05;

    margin-bottom:35px;

    font-weight:800;
}

.hero-content h1 span{

    background:
    linear-gradient(
        135deg,
        #ff0080,
        #7b2ff7
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.hero-content p{

    font-size:22px;

    color:#666;

    line-height:1.8;

    margin-bottom:45px;

    max-width:550px;
}

.hero-actions{

    display:flex;

    align-items:center;

    gap:40px;
}

.hero-btn{

    background:
    linear-gradient(
        135deg,
        #ff0080,
        #7b2ff7
    );

    color:white;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-weight:600;

    box-shadow:
    0 15px 40px rgba(123,47,247,.25);
}

.hero-phone small{

    color:#777;
}

.hero-phone h4{

    font-size:32px;
}

.hero-image-area{

    position:relative;

    height:760px;
}

.hero-blob{

    width:100%;

    height:100%;

    background:
    linear-gradient(
        135deg,
        rgba(255,0,128,.7),
        rgba(123,47,247,.7)
    );

    border-radius:
    45% 0% 45% 55% /
    20% 0% 100% 80%;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.15);
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(255,0,128,.25),
        rgba(123,47,247,.25)
    );
}

/* MOBILE */

@media(max-width:768px){

.nav-wrapper{

    border-radius:30px;

    flex-direction:column;

    gap:20px;
}

.menu{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;
}

.hero-grid{

    grid-template-columns:1fr;
}

.hero-content h1{

    font-size:48px;
}

.hero-actions{

    flex-direction:column;

    align-items:flex-start;
}

.hero-image-area{

    height:500px;
}

}