﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 2em;
    color: #555;
    cursor: default;
}

    .logo span {
        color: #7d2ae8;
    }

.navigation {
   
    justify-content:center;
}

    .navigation{
        font-size: 1.1em;
        color: #555;
        text-decoration: none;
        margin-right: 50px;
        font-weight: 500;
        transition: .3s;
        background:none;
        border:none;
    }

        .navigation:hover{
            color: #7d2ae8;
        }

 .btn-talk {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    background: #7d2ae8;
    border-radius: 10px;
    border: 2px solid #7d2ae8;
    font-weight: 500;
    transition: .3s;
}

.btn-talk:hover {
    color: #7d2ae8;
    background: transparent;
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 30px 100px;
}

.content {
    max-width: 500px;
    color: #555;
}

    .content h2 {
        font-size: 1.5em;
    }

        .content h2 span {
            color: #7d2ae8;
        }

    .content h4 {
        font-size: 2em;
    }

    .content p {
        padding: 10px 0 40px 0;
    }

.btn-group a {
    color: #fff;
    text-decoration: none;
    padding: 10px 40px;
    background: #7d2ae8;
    border-radius: 10px;
    border: 2px solid #7d2ae8;
    font-weight: 500;
    transition: .3s;
}



    .btn-group a:hover:nth-child(1){
        color: #7d2ae8;
        background: transparent;
    }

    .btn-group a:nth-child(2) {
        color: #7d2ae8;
        background: transparent;
        margin-left: 30px;
        padding: 10px 30px;
    }

    .btn-group a:hover:nth-child(2) {
        color: #fff;
        background: #7d2ae8;
    }

.social-icons {
    position: absolute;
    bottom: 50px;
}

    .social-icons a {
        display: inline-block;
        width: 35px;
        height: 35px;
        background: #7d2ae8;
        border-radius: 50%;
        margin-right: 22px;
        text-align: center;
        line-height: 35px;
        border: 1px solid #fff;
        outline: 2px solid #7d2ae8;
        transition: .3s;
    }

        .social-icons a:hover {
            transform: translateY(-7px);
        }

        .social-icons a i {
            color: #fff;
        }

.profile_pic {
    position: absolute; /* Allows positioning relative to the webpage */
    top: 100px; /* Distance from the top of the page */
    left:650px; /* Distance from the right side of the page */
    width: 100px; /* You can adjust the size as needed */
    height: 100px; /* Ensures the container has specific height */
    border-radius: 50%; /* Makes the image a circle */
    overflow: hidden; /* Ensures the image stays within the circular container */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow around the image */
}

/* Styling for the image inside the div */
.profile_pic {
    width: 100%;
    height: auto;
    max-width: 300px; /* Optional: limit size on large screens */
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Optional: make it round if it's a profile pic */
}


.container {
    display: flex;
    justify-content: flex-start; /* Aligns items to the left */
    gap: 20px; /* Adds space between the divs */
}

.form-box {
    padding: 10px;
    width:300px;
    height:80px;
    margin-bottom:300px;
   
    
}

    .form-box label {
        display: inline-block;
        margin-bottom: 5px;
        font-size: 1.2em;
        color: #7d2ae8;
    }

    .form-box input, .form-box textarea {
        display: inline-block;
        margin-left:0px;
        margin-bottom:10px;
        width: 100%;
    }
