@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    font-family: "Poppins", serif;
}

:root{
    --green-clr: #DFFE02;
    --gray-clr: #898989;
    --dark-blue-clr: #171C22;
    --glass-clr: #d46e26;
    --gold-clr: #FFD700

}

.bg-green{
    background: var(--green-clr);
}

.bg-dark-blue{
    background: var(--dark-blue-clr);
}
.bg-glass{
    background: var(--glass-clr);
}

.text-green{
    color: var(--green-clr);
}

.text-gray{
    color: var(--gray-clr);
}

.txt-green{
    color: var(--green-clr);
}

.txt-gray{
    color: var(--gray-clr);
}

.txt-dark-blue{
    color: var(--dark-blue-clr);
}

.text-dark-blue{
    color: var(--dark-blue-clr);
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
    height: auto;
}

.navbar-logo{
    width: 8.5rem;
}

.mybtn{
    border: .1ren solid var(--green-clr) !important;
    padding: .5ren 1.6ren;
}

.mybtn:hover{
    background: transparent;
    color: var(--green-clr) !important;
}

.navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}


.image-container{
    width: 32rem;
    aspect-ratio: 1;
    border-radius: 50%; 
    border-top: 1rem solid white;
    border-bottom: 1rem solid white;
    background-image: url(images/Untitled\ design\ \(1\).png);
    background-position: center;
    background-size: 99%;
    box-shadow: 
    0 0 1rem white,
    inset 0 0 1rem white,
    0 0 2rem var(--green-clr),
    inset 0 0 2rem var(--green-clr),
    0 0 7rem var(--green-clr),
    inset 0 0 3.5rem var(--green-clr);

}

.hero-section{
    min-height: 89vh;
}

h1{
    font-size: 4.4;
    font-family: "Merriweather Sans", sans-serif;
}

p{
    font-size: .95rem;
}
.main-txt{
    letter-spacing: .12rem;
    font-size: .8rem;
}



.section-container{
    padding-block: 4rem;
}

.glow{
    position: relative;
}

.glow::before{
    content:"";
    background: var(--green-clr);
    position: absolute;
    inset: 4rem;
    border-radius: 50%;
    z-index: -1;
    filter: blur(70px);
}
.hover-card:hover{
    background: var(--green-clr);
}

.hover-card:hover *{
    color: black !important;
}
.mycard{
    width: 21rem;
    transform: transform .5s ease-in-out;
}
.mycard:hover{
    transform: scale(1.1);
}

form{
    width: 33rem;
}

.form-control{
    border: .1rem solid var(--gray-clr);
}

.line{
    background: rgba(255, 255, 255, 0.271);
    height: .1rem;
    width: 100%;
}


form{
    width: 21rem;
}




.pera{
    max-width: 500px;
}
@media screen and (max-width: 680px){
    h1{
        font-size: 2.8rem;
    }

    .image-container{
        width: 20rem;
    }

    .hero-section{
        min-height: 73vh;
    }

    .about-me{
        width: 24rem;
    }

}
.typewriter {
    display: inline-block;
    overflow: hidden; /* Ensures the text is hidden while typing */
    white-space: nowrap; /* Prevents wrapping */
    border-right: 3px solid; /* Creates a cursor effect */
    animation: blink 0.75s step-end infinite; /* Blinking cursor */
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.75); }
}

