.hero-bg-img{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;

    background: linear-gradient(to right, #28e9c252, #3cc77171); /* Adjust colors as needed */
  
  /* Border radius to mimic the curved shape */
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  opacity: .3;
}

/* .hero-bg-img img{
    width: 100%;
    height: 100%;
    object-fit: initial !important;
} */

.hero-intro{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.hero-intro span{
    font-family: "Leckerli One", cursive !important;
    font-size: 36px;
    color: var(--quaternary-color);
}

.hero-intro span:nth-child(2){
    font-size: 28px;
}

.hero-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:0 10px;
    margin-bottom: 0px;
}

.hero-title span:first-child{
    font-size: 60px;
    color: var(--secondary-color);

}

.hero-title span:last-child{
    font-size: 25px;
    color: var(--quaternary-color);

}

.hero-experience{
    text-align: center;
    font-size: 16px;
    color: var(--quaternary-color);
    margin-bottom: 20px;
    padding: 0 10px;
}

.hero-content
.social-links{
    margin-top: 20px;
}

.hero-content{
    padding-bottom: 20px;
    padding-top: 80px;
}

@media screen and (max-width: 768px) {
    .hero-title{
        flex-direction: column;
        text-align: center;
    }

    .hero-title span:first-child {
        font-size: 40px;
    }

    .hero-experience{
        margin-top: 10px;
        padding: 0 50px;
    }

    .hero-intro span {
        font-family: "Leckerli One", cursive !important;
        font-size: 28px;
    }

    .hero-bg-img{
        width: calc(100% - 24px);
    }
    
    .hero-bg-img::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--secondary-color);
        border-radius: 25px;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100%;
        z-index: -1;
        opacity: 0.2;
    }
}

@media screen and (max-width: 576px){
    .hero-content{
        padding-top: 60px;
    }
}