@import url('https://fonts.googleapis.com/css2?family=poppins:wght@500&dispiay=swap');
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.portfolio-container{
    min-height: 100vh;
    width:100%;
    display: flex;
}
.nav-list{
    display: flex;
    gap: 40px;
    height: 15vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: fixed;
}
.nav-list li{
    list-style: none;
}
.nav-list li a{
    text-decoration: none;
    text-transform: uppercase;
    color: white;
}
.left-container, .right-container{
    height: 100vh;
    display: flex;
    align-items: center;
}
.left-container{
    background-color: rgb(17, 18, 15);
    width: 70%;
}
.right-container{
    background: linear-gradient(-45deg,aqua,black 70%);
    width: 30%;
}
.icons .fa-brands{
    color: white;
    font-size: 30px;
    margin-left: 45px;
}
.icons{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.section{
    margin-left: 20px;
}
.section h2{
    font-size: 25px;
    color: white;
    margin-bottom: 10px;
}
.section h2 span{
    font-size: 35px;
    color: aqua;
}
.section h1{
    font-size: 50px;
    margin-bottom: 10px;
    color: aqua;
}
.section p{
    color: white;
    max-width: 450px;
    margin: 5px 0 5px 0;
    line-height: 20px;
}
.btn-main button{
    border: 2px solid aqua;
    font-size: larger;
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 30px;
}
.btn-first{
    background-color: aqua;
}
.btn-second{
    background: transparent;
    color: aqua;
    margin-left: 20px;
}
.btn-first:hover{
    background-color: black;
    color: aqua;
    cursor: pointer;
}
.btn-second:hover{
    background-color: aqua;
    color: black;
    cursor: pointer;
}
.design .circle{
    aspect-ratio: 1;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}
.circle:nth-child(1){
    background: linear-gradient(90deg,transparent 50%, #262525 50%);
    width: 450px;
}
.circle:nth-child(2){
    background-image: url(WhatsApp\ Image\ 2026-01-09\ at\ 12.57.35\ AM.jpeg);
    width: 400px;
    background-size: 100%;
    background-repeat: no-repeat;
    border: 10px solid white;
    box-shadow: 0 0 10px white,
    inset 0 0 10px white,
    0 0 20px aqua,
    inset 0 0 20px aqua;
}


.about{
    background-color: #11120f;
    color: white;
    padding: 80px 10%;
    text-align: center;
}

.about h2{
    font-size: 40px;
    margin-bottom: 20px;
}

.about h2 span{
    color: aqua;
}

.about p{
    max-width: 700px;
    margin: auto;
    line-height: 25px;
    color: #ddd;
}

.about-info{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-info div{
    font-size: 18px;
}

.about-info span{
    color: aqua;
    font-weight: bold;
}


.contact{
    background: linear-gradient(-45deg, black, aqua);
    padding: 80px 10%;
    text-align: center;
}

.contact h2{
    font-size: 40px;
    margin-bottom: 30px;
    color: white;
}

.contact h2 span{
    color: black;
}

.contact-form{
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea{
    padding: 12px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 16px;
}

.contact-form button{
    padding: 12px;
    font-size: 18px;
    border: 2px solid black;
    background: black;
    color: aqua;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form button:hover{
    background: aqua;
    color: black;
}

