@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", sans-serif;

}
:root{
    --green-clr: #DFFE02;
    --gray-clr: #898989;
    --dark-blue-clr: #171c22;
    
}

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

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

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

.txt-gray{
    color: var(--gray-clr);
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
}

.modern-logo {
    text-decoration: none;
    padding: 0.5rem;
    position: relative;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-highlight {
    color: var(--green-clr);
    position: relative;
    display: inline-block;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.logo-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--green-clr);
    border-radius: 50%;
    bottom: 8px;
    right: -12px;
    box-shadow: 0 0 10px var(--green-clr);
}

.modern-logo:hover .logo-text {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.modern-logo:hover .logo-highlight {
    transform: translateY(-4px);
    text-shadow: 0 0 15px var(--green-clr);
}

.modern-logo:hover .logo-dot {
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--green-clr);
}
.mybtn{
    border: 2px solid var(--green-clr)!important;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mybtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--green-clr);
    z-index: -1;
    transition: width 0.3s ease;
}
.mybtn:hover::before {
    width: 100%;
}
.mybtn:hover{
    color: var(--dark-blue-clr) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 254, 2, 0.3);
}
.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");
    width: 2.2rem;
}
/* Image container removed for centered layout */

.hero-section{
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
h1{
    font-size: 4.5rem;
    font-family: "Merriweather Sans", sans-serif;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-clr);
}
.para{
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}
.main-txt{
    letter-spacing: .2rem;
    font-size: .8rem;
}
.about-me{
    width: 24rem;
}
.section-container{
    padding-block: 4rem;
}
/* Modern styling for elements */
.modern-element {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hover-card {
    width: 21rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    background: var(--green-clr);
    box-shadow: 0 20px 40px rgba(223, 254, 2, 0.2);
}

.hover-card:hover * {
    color: var(--dark-blue-clr) !important;
}

.my-card {
    width: 21rem;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.my-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

















@media screen and (max-width: 680px) {
    h1{
        font-size: 2.8rem;
    } 
    .image-container{
        width: 20rem;
    }
    .hero-section{
        min-height: 72vh;
    }
    .about-me{
        width: 23rem;
    }
}