body {
    background-color: #fafafa;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.purple-gradient {
    background: hsla(285, 100%, 50%, 1);

background: linear-gradient(90deg, hsla(285, 100%, 50%, 1) 0%, hsla(192, 17%, 94%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(285, 100%, 50%, 1) 0%, hsla(192, 17%, 94%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(285, 100%, 50%, 1) 0%, hsla(192, 17%, 94%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#BF00FF", endColorstr="#EEF2F3", GradientType=1 );
position: absolute;
top: -55rem;
right: -15rem;
width: 1280px;
height: 1280px;
border-radius: 50%;
z-index: 0;
opacity: 0.7;
backdrop-filter: blur(100px);
filter: blur(150px);

z-index: -1;
}

.pink-gradient {
    background: hsla(331, 100%, 80%, 1);

background: linear-gradient(90deg, hsla(331, 100%, 80%, 1) 1%, hsla(192, 17%, 94%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(331, 100%, 80%, 1) 1%, hsla(192, 17%, 94%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(331, 100%, 80%, 1) 1%, hsla(192, 17%, 94%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FF9BCB", endColorstr="#EEF2F3", GradientType=1 );
position: absolute;
top: -30rem;
right: -5rem;
width: 720px;
height: 720px;
border-radius: 50%;
z-index: 0;
opacity: 0.7;
backdrop-filter: blur(20px);
filter: blur(20px);
z-index: -1;

}

.container {
    position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        height: 100vh;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        z-index: 20;
        gap: 6rem;
}
.title-container h1 {
    max-width: 500px;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.buttons-container {
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    width: 100%;
}

 .contact-button {
    position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 25px;
            text-decoration: none;
            font-size: 1em;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.2s ease;
            
            
            border: 1px solid transparent;
            min-width: 180px;
            
            max-width: 100%;
           
        }

        /* Email Button */
        .email-button {
            background-color: #4a6cf7;
            color: white;
        }
        .email-button:hover {
            background-color: #3a5ce4;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3);
        }
        /* WhatsApp Button */
        .whatsapp-button {
            background-color: #25d366;
            color: white;
        }
        .whatsapp-button:hover {
            background-color: #1eba57;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        }



@media (max-width: 1020px) {
    .container {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
        height: auto;
        padding-top: 2rem;
        gap: 1.5rem;
    }
    .title-container {
        align-items: center;
        text-align: center;
    }
    .title-container h1 {
        font-size: 2rem;
        max-width: 500px;
        margin-bottom: 1rem;
        
    }
   .buttons-container {
        
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .contact-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    img {
        position: static !important;
        width: 90vw !important;
        max-width: 350px;
        height: auto !important;
        margin-bottom: 1.5rem;
        border-radius: 1.5rem;
       
        z-index: 1;
    }

    .purple-gradient{
        top: -40rem;
        right: -5rem;
        width: 920px;
        height: 920px;
        
       
    }

}



.title-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    gap: 1rem;
}

img {
    position: relative;
    left: unset;
    z-index: 1;
    border-radius: 2rem;
    

}





/* button {
    
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: medium;
}

button:hover {
    background-color: #e91e63;
} */


 
