#home-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: -1;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.moving-up-down {
    animation: MovingUpDown 4s ease-in-out infinite;
}

@keyframes MovingUpDown {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }
}

.home-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(37, 37, 37, 0.8);
}

.home-hero-content .home-hero-scroll-down-btn {
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white-color);
    text-decoration: none;
    z-index: 2;
    animation: DownAndHide 3s ease-in-out infinite;
}

@keyframes DownAndHide {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* About Me Section */
.about-me-personal-detail {
    display: inline-block;
}

.about-me-personal-detail li {
    display: flex;
    margin-bottom: 0.5rem;
}

.about-me-personal-detail li span:first-child {
    font-weight: 700;
    width: 100px;
    color: var(--secondary-color);
}

.about-me-personal-detail li span,
.about-me-personal-detail li span:last-child a {
    color: var(--light-color);
    word-wrap: break-word;
}

.about-me-personal-detail li span:last-child a {
    white-space: normal;
}

@media (max-width: 576px) {
    .about-me-personal-detail li {
        flex-direction: column;
    }
}

#home-hero-section .about-me-typed-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--white-color);
}

#home-hero-section .about-me-typing-text {
    font-size: 20px;
}

.about-me-typing-text {
    font-size: 25px;
    font-weight: bold;
    color: var(--main-color);
    text-transform: capitalize;
}

.about-me-typed-text {
    font-size: 25px;
    font-weight: bold;
    color: var(--secondary-color);
}

.about-me-typed-text::after {
    content: '';
    border-right: 2px solid var(--main-color);
    margin-left: 5px;
    animation: CursorBlinking 0.8s ease-in-out infinite;
}

@keyframes CursorBlinking {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


.about-me-achievements-container {
    padding: 10px;
    background-color: transparent;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.4s ease-in-out;
}

.about-me-achievements-img {
    width: 50px;
}

.about-me-achievements-counting,
.about-me-achievements-symbol {
    font-weight: 600;
    color: var(--secondary-color);
}

.about-me-achievements-container:hover {
    background-color: var(--main-color);
    box-shadow: 2px 2px 10px rgba(37, 37, 37, 0.4);
    transform: scale(1.02);
}

.about-me-achievements-container:hover .about-me-achievements-text * {
    color: var(--white-color);
}

.about-me-summary {
    text-align: justify;
}

.about-me-detail {
    display: flex;
    align-items: center;
}


/* Languages & Tools Section */
.language-card {
    box-shadow: 2px 2px 15px -1px rgba(37, 37, 37, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    ;
}

.language-card:hover {
    background-color: var(--main-color);
    transform: scale(1.02);
}

.language-card:hover .language-text * {
    color: var(--white-color);
}

.language-card:hover .progress-bar::before {
    background-color: var(--secondary-color);
}

.language-card:hover .language-seperator {
    background-color: var(--white-color);
}

.language-img {
    width: 100px !important;
    height: auto;
}

.language-seperator {
    height: 60px;
    width: 2px;
    background-color: var(--secondary-color);
    margin: 0px 10px;
}

.language-text {
    width: 100%;
    text-align: center;
}

.progress {
    border-radius: 18px;
}

.progress-bar {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    border-radius: 18px;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 18px;
    animation: loading 4s ease-in-out alternate;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.progress-bar-text {
    position: relative;
    color: var(--white-color);
    z-index: 1;
}

.language-name {
    font-weight: 500;
    margin-top: 10px;
}

/* Education Section */
.education-period {
    color: var(--main-color);
    font-weight: bold;
}

.education-title,
.education-institute {
    color: var(--secondary-color);
    font-weight: bold;
}

.education-description,
.education-description * {
    color: var(--light-color) !important;
    text-align: justify;
}

/* Experience Section */
.experience-period {
    color: var(--main-color);
    font-weight: bold;
}

.experience-title,
.experience-institute {
    color: var(--secondary-color);
    font-weight: bold;
}

.experience-description,
.experience-description * {
    color: var(--light-color);
    text-align: justify;
}

/* Our staffs */
.staff-img-container {
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.staff-img {
    object-fit: cover;
    object-position: center;
    transition: 0.3s all;
}

@media (max-width: 576px) {
    .staff-img-container {
        height: 250px;
        width: 250px;
        display: flex;
        justify-content: center;
    }
}

.staff-img-container:hover .staff-img {
    transform: scale(1.1);
}

.staff-details{
    cursor: pointer;
}

.staff-designation {
    font-size: small;
}

.modal-header-staff-designation {
    font-size: 12px;
}
