/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/******************************************** Utility Components ***************************************/
:root {
    font-size: 62.5%;

    /************ Custom Properties ***********/

    /* Main Color */
    --primary-color: #014d4e;

    /* Secondary Color */
    --secondary-color: #c7c7c7   /* #ff9408*/;


    /* Secondary Color Modified */
    --secondary-color-m: #c7c7c78e;

    /* tertiary color */
    --tertiary-color: #017374;

    /* tertiary color modified */
    --tertiary-color-m: #01727498;
}

body {
    font-family: "JetBrains Mono", cursive;
    line-height: 1.8;

    display: flex;
}

/* List Items */
li {
    list-style: none;
}

/* Anchor Tags */
a:link,
a:visited {
    text-decoration: none;
    <!--color: white; -->
    font-size: 1.5rem;
}
/**************************** Main Styling ************************/

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Side Nav *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
aside#side-nav {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
}

div.side-nav__content {
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: var(--primary-color);
}

div.side-nav__content--logo img {
    width: calc(3vw + 3vh);

    object-fit: cover;
}

ul.side-nav__content--social {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

ul.side-nav__content--social a i {
    /* 20px => 2rem => {1rem + [(10/1500) * 100]} => Dynamic Value */
    font-size: calc(1rem + 0.66667vw);
    color: white;

    padding-bottom: calc(2rem + 0.6667vw);

    transition: color 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

ul.side-nav__content--social a i:hover,
ul.side-nav__content--social a i:active {
    color: var(--secondary-color);
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Main Content *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
main {
    flex: 1; /* to make it grow as much as possible */
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Main Nav Header *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
header#header {
    background-color: var(--secondary-color);
    height: calc(3vw + 3vh); /* to match the height of logo */
    z-index: 2; /* to be on top of other elements */
}

nav#header__main-nav {
    height: 100%;
}

ul.header__main-nav--links {
    /* links might not be visible as they are of color white. Change background color while designing */
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

ul.header__main-nav--links li {
    padding-right: 3vw;
}

ul.header__main-nav--links li a {
    position: relative; /* to make the lines appear on top and bottom using pseudo classes. This parent should be relative */
    padding: 0.2rem 0.6rem;
    font-size: calc(1rem + 0.66667vw);
}

ul.header__main-nav--links li a:link::before,
ul.header__main-nav--links li a:visited::before,
ul.header__main-nav--links li a:link::after,
ul.header__main-nav--links li a:visited::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: white;

    transform: scaleX(0); /* initially it will be hidden. It will be shown only when active or hovered.It scales X-axis to 1 */

    transition: transform 0.6s cubic-bezier(1, 0, 0, 1);
}

ul.header__main-nav--links li a:link::before,
ul.header__main-nav--links li a:visited::before {
    top: 0;
    /* Transform origin is center by default */
    transform-origin: left;
}

ul.header__main-nav--links li a:link::after,
ul.header__main-nav--links li a:visited::after {
    bottom: 0;
    transform-origin: right;
}

ul.header__main-nav--links li a:hover::before,
ul.header__main-nav--links li a:active::before,
ul.header__main-nav--links li a:hover::after,
ul.header__main-nav--links li a:active::after {
    transform: scaleX(1);
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Showcase / Hero Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
section#showcase {
    height: 100vh;
    background-image: url("assets/background/abstract_green.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* to make image fixed */

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

div.showcase__content {
    background-color: var(--secondary-color-m);
    padding: calc(1rem + 2vw);
    height: calc(5rem + 20vmax);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    animation: hero 2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes hero {
    0% {
        transform: translateX(100rem) rotate(360deg);
        opacity: 0;
    }

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

.showcase__content--title {
    font-size: calc(2rem + 3vw);
    color: white;
}

.showcase__content--para {
    font-family: "Inter", sans-serif;
    font-size: calc(1.5rem + 1vw);
    color: white;
}

.showcase__content--link:link,
.showcase__content--link:visited {
    padding: 1rem 0;
    transition: all 0.5s ease-in-out;
    width: 9rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 1; /* to make the text visible */
}

.showcase__content--link:link::after,
.showcase__content--link:visited::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);

    z-index: -1;
}

.showcase__content--link:hover::after,
.showcase__content--link:active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Work Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
section#work {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    padding: 2rem;
    background-color: var(--tertiary-color);
}

div.work__card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
     flex-basis: 40rem;
     flex-grow: 1;

    /* clip-path: polygon(
            20% 0%,
            80% 0%,
            100% 20%,
            100% 80%,
            80% 100%,
            20% 100%,
            0% 80%,
            0% 20%
    );*/
}

div.work__card img {
    height: 60%;
    flex-shrink: 0;
    width: 100%;
    object-fit: cover;

    transition: filter 0.45s ease;
}

div.work__card img:hover,
div.work__card img:active {
    filter: sepia(80%);
}

div.work__card p {
    flex: 1;
    padding: 1rem;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    background: white;
    font-size: calc(0.5rem + 0.5vw);
    font-family: "Inter", sans-serif;
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* About Me Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
section#about-me {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;

    padding: 2rem;
    background-color: var(--secondary-color);
}

.about-me__img,
.about-me__content {
    flex-basis: 40rem;
    padding: 2rem;
    flex-grow: 1;
}

.about-me__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-me__content--title {
    font-size: 4rem;
    padding: 1rem 0;
    color: white;
    text-transform: uppercase;
    position: relative;
}

.about-me__content--title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0.3rem;
    width: 10%;
    background-color: var(--primary-color);
}

.about-me__content--title,
.about-me__content--para {
    margin-bottom: 4rem;
    letter-spacing: 0.2rem;
}

.about-me__content--para {
    font-size: 1.25rem;
    font-family: "Inter", sans-serif;
}



/* Skills Section Styles */
.skills__container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    background-color: var(--secondary-color);
}

.skills__title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.skills__all {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.skill__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--secondary-color-m, #f8f9fa);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 120px;
    position: relative;
}

.skill__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.skill__item i {
    font-size: 1.2rem;
    color: var(--primary-color, #007bff);
    flex-shrink: 0;
}

.skill__item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
}

.skill__level {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #6c757d;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-weight: 500;
}


/* Specific Icon Colors */
.fa-js-square { color: #f7df1e; } /* JavaScript yellow */
.fa-node-js { color: #339933; } /* Node.js green */
.fa-cube { color: #e0234e; } /* NestJS red */
.fa-exchange-alt { color: #61dafb; } /* REST API blue */
.fa-java { color: #ed8b00; } /* Java orange */
.fa-angular { color: #dd0031; } /* Angular red */
.fa-forward { color: #000000; } /* Next.js black */
.fa-react { color: #61dafb; } /* React blue */
.fa-leaf { color: #47a248; } /* MongoDB green */
.fa-database { color: #336791; } /* PostgreSQL blue */
.fa-file-alt { color: #f4c430; } /* Lotus Notes yellow */
.fa-vial { color: #c21325; } /* Jest red */
.fa-robot { color: #17202c; } /* Cypress dark */
.fa-infinity { color: #326ce5; } /* CI/CD blue */
.fa-docker { color: #2496ed; } /* Docker blue */
.fa-git-alt { color: #f05032; } /* Git orange */

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Achievements & Awards Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
section#achievements-awards {
    padding: calc(3rem + 2vw) 2rem;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.achievements-awards__container {
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-awards__title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: white;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.achievements-awards__title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    height: 0.3rem;
    width: 100px;
    background-color: var(--secondary-color);
}

.section-block {
    margin-bottom: 4rem;
}

.section-block:last-child {
    margin-bottom: 0;
}

.section-block__header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-block__title {
    font-size: 2.2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-block__title i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.achievements-awards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Achievement Items */
.achievement-item,
.award-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before,
.award-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: left 0.5s ease;
}

.achievement-item:hover::before,
.award-item:hover::before {
    left: 100%;
}

.achievement-item:hover,
.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-item__icon,
.award-item__icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.achievement-item:hover .achievement-item__icon,
.award-item:hover .award-item__icon {
    transform: scale(1.1) rotate(5deg);
}

.achievement-item__icon i,
.award-item__icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.achievement-item__content h4,
.award-item__content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
}

.achievement-item__content p,
.award-item__content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.achievement-item__year,
.award-item__year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.award-item__organization {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Testimonials Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
section#testimonials {
    padding: calc(2rem + 2vw);
    background-color: var(--primary-color);
    color: white;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
}

.testimonials__card {
    background-color: white;
    color: var(--primary-color);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    flex-basis: 35rem;
    flex-grow: 1;
    max-width: 40rem;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonials__card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonials__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.testimonials__card--content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
    position: relative;
}

.testimonials__card--content__quote {
    font-family: 'Inter', 'sans-serif';
    font-size: calc(1.2rem + 0.3vw);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    color: var(--primary-color);
}

.testimonials__card--content__author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--secondary-color);
}

.author-name {
    font-size: calc(1.1rem + 0.2vw);
    font-weight: 700;
    color: var(--primary-color);
}

.author-title {
    font-size: calc(0.9rem + 0.2vw);
    color: var(--tertiary-color);
    font-weight: 500;
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Contact Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
section#contact {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.contact__content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact__title {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: white;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.contact__title::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    height: 0.3rem;
    width: 60%;
    background-color: var(--secondary-color);
}

.contact__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-basis: 250px;
    flex-grow: 1;
    max-width: 300px;
}

.contact__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact__item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 2.5rem;
}

.contact__item-content {
    text-align: left;
    flex: 1;
}

.contact__item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.contact__item-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact__item-content a:hover {
    color: white;
    text-decoration: underline;
}

.contact__item-content span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* (max-width:1510px) *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
@media screen and (min-width: 1510px) {
    body {
        width: 1510px;
        margin: 0 auto;
    }
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* (max-width:900px) *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
@media screen and (max-width: 900px) {
    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Showcase / Hero Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    section#showcase {
        background-position: 100%;
        align-items: flex-end;
    }
    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Testimonials *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    section#testimonials {
        padding: calc(1.5rem + 1vw);
        gap: 1.5rem;
    }

    .testimonials__card {
        flex-basis: 100%;
        max-width: none;
        padding: 2rem;
    }

    .testimonials__card--content__quote {
        font-size: calc(1.1rem + 0.5vw);
    }

}

@media (max-width: 768px) {
    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Skills Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    .skills__all {
        gap: 0.75rem;
    }

    .skill__item {
        min-width: 100px;
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .skill__item span {
        font-size: 0.8rem;
    }
    .achievements-awards__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .achievements-awards__title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .section-block__title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .achievement-item,
    .award-item {
        padding: 1.5rem;
    }

    .section-block {
        margin-bottom: 3rem;
    }

    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Contact Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    .contact__details {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact__item {
        max-width: 100%;
        flex-basis: auto;
    }

    .contact__title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* (max-width:610px)*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
@media screen and (max-width: 610px) {
    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Main Nav Header *-*-*-*-**-*-*-*-**-*-*-*-**-*/
    header#header {
        position: absolute; /* to make it hide when screen max width is 610px */
    }

    nav#header__main-nav {
        width: 30rem; /* total width where links are shown */
        height: 100%;
        position: fixed;
        top: 0;
        right: -30rem; /* hidden and shown only when clicked. */
        background-color: var(--secondary-color);
        text-align: center;
    }

    .clicked {
        left: 55%; /* experimental value */
    }

    .header__main-nav--hamburger {
        width: 5rem;
        height: 5rem;
        position: fixed;
        top: 2rem; /* from top screen */
        right: 3rem; /* from right screen */
        cursor: pointer;
        background-color: var(--secondary-color);
        padding: 1rem;
        border-radius: 50%;

        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .line {
        width: 100%;
        height: 0.3rem;
        background-color: white;
        border-radius: 0.2rem;
        transition: all 0.4s ease-in-out;
    }

    ul.header__main-nav--links {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    ul.header__main-nav--links li {
        margin-bottom: 4vh;
        margin-left: 6vw;
    }

    .clicked .line-1 {
        transform: rotateZ(-405deg) translate(-0.8rem, 0.6rem);
    }

    .clicked .line-2 {
        opacity: 0;
    }

    .clicked .line-3 {
        transform: rotateZ(405deg) translate(-0.8rem, -0.6rem);
    }

    ul.header__main-nav--links li {
        opacity: 0;
    }

    ul.header__main-nav--links li:nth-child(1) {
        transition: all 0.5s ease-in-out 0.2s;
    }

    ul.header__main-nav--links li:nth-child(2) {
        transition: all 0.5s ease-in-out 0.4s;
    }

    ul.header__main-nav--links li:nth-child(3) {
        transition: all 0.5s ease-in-out 0.6s;
    }

    ul.header__main-nav--links li:nth-child(4) {
        transition: all 0.5s ease-in-out 0.8s;
    }

    ul.header__main-nav--links li:nth-child(5) {
        transition: all 0.5s ease-in-out 1s;
    }

    ul.header__main-nav--links li:nth-child(6) {
        transition: all 0.5s ease-in-out 1.2s;
    }

    ul.header__main-nav--links li.fade {
        opacity: 1;
    }
    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Showcase / Hero Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    section#showcase {
        background-position: 80%;
    }

    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Testimonials Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    section#testimonials {
        padding: 1.5rem;
        flex-direction: column;
    }

    .testimonials__card {
        padding: 1.8rem;
        margin-bottom: 1rem;
    }

    .testimonials__card::before {
        font-size: 6rem;
        top: -0.5rem;
        left: 1rem;
    }

    .testimonials__card--content__quote {
        font-size: 1.1rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-title {
        font-size: 0.9rem;
    }
}

/*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* (max-width:460px) Mark *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/

@media screen and (max-width: 460px) {
    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Skills Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    .skills__all {
        gap: 0.5rem;
    }

    .skill__item {
        min-width: 80px;
        padding: 0.4rem 0.6rem;
    }

    .skill__item i {
        font-size: 1rem;
    }

    .skill__item span {
        font-size: 0.75rem;
    }

    section#achievements-awards {
        padding: calc(2rem + 1vw) 1rem;
    }

    .achievements-awards__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-block__title {
        font-size: 1.6rem;
    }

    .achievement-item__icon,
    .award-item__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .achievement-item__icon i,
    .award-item__icon i {
        font-size: 1.5rem;
    }

    .achievement-item__content h4,
    .award-item__content h4 {
        font-size: 1.2rem;
    }

    .achievement-item__content p,
    .award-item__content p {
        font-size: 0.9rem;
    }

    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Testimonials Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    .testimonials__card {
        padding: 1.5rem;
    }

    .testimonials__card--content {
        gap: 1.5rem;
    }

    .testimonials__card--content__quote {
        font-size: 1rem;
        line-height: 1.5;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-title {
        font-size: 0.85rem;
    }

    /*-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-* Contact Section *-*-*-*-**-*-*-*-**-*-*-*-**-*-*-*-*/
    section#contact {
        padding: 3rem 1rem;
    }

    .contact__item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact__item i {
        font-size: 2rem;
    }

    .contact__item-content h3 {
        font-size: 1.1rem;
    }

    .contact__item-content a,
    .contact__item-content span {
        font-size: 1rem;
    }
}

@media screen and (max-width: 360px) {
    .achievements-awards__grid {
        gap: 1rem;
    }

    .achievement-item,
    .award-item {
        padding: 1.2rem;
    }

    .achievements-awards__title::after {
        width: 80px;
    }
}

