:root {
    --header-bg: rgba(230, 230, 230, 0.5);
    --header-second-bg: rgba(178, 178, 178, 0.05);
    --body-bg: #ffffff;
    --color-white: #ffffff;
    --color-blk: #000000;
    --color-gray: #999999;
    --color-light: #000000;
    --color-light-gray: #555555;
    --header-res-bg: rgba(255, 255, 255, 1);
    --header-overlay-bg: rgba(255, 255, 255, 0.1);
    --logo-animate-clr: #5f5f5f;
    --btn-clr: white;
    --btn-bg: linear-gradient(to bottom, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0.5));
    --btn-bg-hover: linear-gradient(to bottom, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0.4));
    --loading-line-bg: linear-gradient(to right, white 0%, black 80%, black 100%);
    --mgn-btm: 10px;
    --pdg: 10px 15px;
    --rds: 15px;
}

.dark-mode {
    --header-bg: rgba(32, 32, 32, 0.5);
    --header-second-bg: rgba(82, 82, 82, 0.05);
    --body-bg: #000000;
    --color-white: black;
    --color-blk: white;
    --color-gray: #777777;
    --color-light: #eeeeee;
    --color-light-gray: #cccccc;
    --header-res-bg: rgba(0, 0, 0, 1);
    --header-overlay-bg: rgba(0, 0, 0, 0.4);
    --logo-animate-clr: #cecece;
    --btn-clr: black;
    --btn-bg: linear-gradient(to bottom, white 30%, rgba(255, 255, 255, 0.5));
    --btn-bg-hover: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.5));
    --loading-line-bg: linear-gradient(to right, black 0%, white 80%, white 100%);
}

/* ########## Pre-Loader ########## */
/* section > *:not(#preloader) {
    display: none;
} */

.main-content {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

#preloader {
    position: absolute;
    top: 77px;
    left: 0;
    margin: 0 12px;
    width: calc(100% - 12px - 12px);
    min-height: calc(100vh - 80px - 80px);
    min-height: calc(100dvh - 80px - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--body-bg);
    border-right: 1px solid var(--color-blk);
    border-left: 1px solid var(--color-blk);
    border-radius: var(--rds);
    overflow: hidden;
    z-index: 1;

    opacity: 1;
    transition: opacity 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    color: var(--color-blk);
    transition: all 300ms 0s;
}

html {
    color: var(--color-blk);
    font-family: "Poppins", sans-serif;
    color-scheme: light dark;
    transition: all 300ms 0s;
}

body {
    background: var(--body-bg);
    box-shadow: 0 0 8px var(--color-blk);
    width: min(1600px, 100%);
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 12px;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: all 300ms 0s;
}

.section {
    padding: var(--pdg);
    margin-bottom: var(--mgn-btm);
    color: var(--color-blk);
    border-radius: var(--rds);
    cursor: default;
}

body.creates .section {
    margin-bottom: 0px;
}

body.clones .section {
    margin-bottom: 0px;
    padding-bottom: 20px;
}

.section1 {
    background: var(--header-bg);
    border-right: 1px solid var(--color-blk);
    border-left: 1px solid var(--color-blk);
}

.section2 {
    background: var(--header-second-bg);
    border-top: 1px solid var(--color-blk);
    border-bottom: 1px solid var(--color-blk);
}

/* .section1:hover {
    box-shadow:
        inset 0 1px 0 var(--color-blk),
        inset 0 -1px 0 var(--color-blk);
    transition: box-shadow 0s ease;
}

.section2:hover {
    box-shadow:
        inset 1px 0 0 var(--color-blk),
        inset -1px 0 0 var(--color-blk);
    transition: box-shadow 0s ease;
}

@media (pointer: coarse) {
    .section1:hover {
        box-shadow:
            inset 0 1px 0 transparent,
            inset 0 -1px 0 transparent;
        transition: box-shadow 0s ease;
    }

    .section2:hover {
        box-shadow:
            inset 1px 0 0 transparent,
            inset -1px 0 0 transparent;
        transition: box-shadow 0s ease;
    }
} */

.main-title {
    text-transform: uppercase;
    color: var(--color-blk);
    text-shadow: 2px 2px 3px color-mix(in srgb, var(--color-blk) 50%, transparent);
    font-size: clamp(24px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0px 0px 10px 0px;
    position: relative;
    cursor: default;
    z-index: 1;
}

/* ########## Header CSS ########## */
.top-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--loading-line-bg);
    z-index: 99;
    animation: loadingLine 2s ease-out forwards;
}

/* Animation */
@keyframes loadingLine {
    0% {
        width: 0%;
        opacity: 1;
    }

    60% {
        width: 70%;
        opacity: 1;
    }

    70% {
        width: 80%;
        opacity: 1;
    }

    99% {
        width: 100%;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 0;
    }
}

header {
    width: 100%;
    height: 65px;
}

nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    margin: 11px auto;
    width: min(calc(100% - 24px), 100%);
    max-width: calc(1600px - 24px);
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    background: var(--header-bg);
    backdrop-filter: blur(5px);
    padding: 0px 7px 0px 15px;
    border: 1px solid var(--color-blk);
    border-radius: var(--rds);
    z-index: 5;
}

nav #logo {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(90deg, var(--color-blk) 50%, var(--logo-animate-clr) 50%);
    background-size: 200%;
    background-position: right;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: smoothGradientReverse 3s linear infinite;
    transition: all 0.3s ease;
}

nav #logo:hover {
    text-shadow: 0 0 5px color-mix(in srgb, var(--color-blk) 70%, transparent);
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--color-blk)
}

@keyframes smoothGradientReverse {
    0% {
        background-position: 200%;
    }

    100% {
        background-position: 0%;
    }
}

nav ul {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 2px;
    margin: 0px 7px;
    border-radius: 50px;
    color: var(--color-light-gray);
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
    transition: color 1s ease;
}

nav ul li a:hover {
    color: var(--color-blk);
    transition: color 0.3s ease;
}

nav ul li a::before,
nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--color-blk);
    border-radius: 10px;
    transition: width 1s ease;
}

nav ul li a::before {
    left: 0;
    bottom: 0;
}

nav ul li a::after {
    right: 0;
    bottom: 0;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
    width: 52%;
    transition: width 0.3s ease;
}

nav ul li a:active::before,
nav ul li a:active::after {
    width: 52%;
    transition: width 0s ease 0s;
}

/* ====== Mode Button ======= */
nav .middle-box {
    display: flex;
    align-content: center;
    align-items: center;
    width: 100%;
}

nav .middle-box #mode-toggle {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 30px;
    height: 35px;
    background: none;
    color: var(--color-blk);
    padding: 0 15px;
    padding-top: 2px;
    margin-left: auto;
    border: none;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s ease;
}

nav .middle-box #mode-toggle i {
    font-size: 18px;
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

nav .middle-box #mode-toggle:hover i {
    text-shadow: 0 0 1px var(--color-blk);
    transform: scale(1.3);
    transition: transform 0.3s ease;
}

nav .middle-box #mode-toggle:active i {
    text-shadow: 0 0 0px var(--color-blk);
    transform: scale(1.0);
    transition: transform 0s ease;
}

nav .menu {
    display: none;
    background: transparent;
    border: none;
    margin-left: auto;
    margin-right: 5px;
    padding: 3px 8px;
    cursor: pointer;
}

nav .menu .bar {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    margin: 5px auto;
    background: var(--color-blk);
}

nav #contact {
    align-content: center;
    text-decoration: none;
    padding: 5px 12px;
    background: var(--color-blk);
    color: var(--color-white);
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0 0 1px var(--color-blk);
    border-radius: 10px;
    transition: .2s ease-out;
}

nav #contact:hover {
    box-shadow: 0 0 5px var(--color-blk);
}

/* ########## Footer CSS ########## */
footer {
    width: 100%;
    height: 65px;
    position: relative;
}

footer #main-footer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 11px 0;
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    background: var(--header-bg);
    backdrop-filter: blur(5px);
    padding: 0px 7px 0px 15px;
    border: 1px solid var(--color-blk);
    border-radius: var(--rds);
    cursor: default;
    z-index: 5;
}

footer #main-footer p {
    text-transform: uppercase;
    color: var(--color-blk);
    font-weight: 400;
    transition: .3s;
    font-size: clamp(12px, 1.5vw, 16px);
    line-height: 1.5;
    text-align: center;
}

footer #main-footer:hover p {
    text-shadow: 0 0 5px var(--color-blk);
}

footer #main-footer .fa-heart {
    display: inline-block;
    transform-origin: center;
    animation: heartbeat 1.3s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.15);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.15);
    }

    40% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* Home */
body.home nav ul li:nth-child(1) a.home {
    color: var(--color-blk);
    pointer-events: none;
    cursor: default;
}

body.home nav ul li:nth-child(1) a.home::before,
body.home nav ul li:nth-child(1) a.home::after {
    width: 100%;
    transition: 300ms ease 0s;
}

/* Clones */
body.clones nav ul li:nth-child(2) a.clones {
    color: var(--color-blk);
    pointer-events: none;
    cursor: default;
}

body.clones nav ul li:nth-child(2) a.clones::before,
body.clones nav ul li:nth-child(2) a.clones::after {
    width: 100%;
    transition: 300ms ease 0s;
}

/* Creates */
body.creates nav ul li:nth-child(3) a.creates {
    color: var(--color-blk);
    pointer-events: none;
    cursor: default;
}

body.creates nav ul li:nth-child(3) a.creates::before,
body.creates nav ul li:nth-child(3) a.creates::after {
    width: 100%;
    transition: 300ms ease 0s;
}

/* About */
body.about nav ul li:nth-child(4) a.about,
body.about nav ul.active li:nth-child(4) a.about {
    color: var(--color-blk);
    pointer-events: none;
    cursor: default;
}

body.about nav ul li:nth-child(4) a.about::before,
body.about nav ul li:nth-child(4) a.about::after {
    width: 100%;
    transition: 300ms ease 0s;
}

/* <<<<<=== Main CSS ===>>>>> */
main {
    background: var(--bg-color);
    min-height: calc(100vh - 80px - 80px);
    min-height: calc(100dvh - 80px - 80px);
}

.main-container {
    display: flex;
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
}

.main-container .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.main-container .img-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.main-container .img-box .main-img {
    background-image: url("../img/main-img/main-img.gif");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 270px;
    height: 270px;
    /* border: 1px solid color-mix(in srgb, var(--color-blk) 30%, transparent); */
    /* box-shadow: 0 0 5px color-mix(in srgb, var(--color-blk) 80%, transparent); */
    outline: 1px solid var(--color-blk);
    border-radius: 100px;
    pointer-events: none;
    user-select: none;
}

.main-container .text-box h4 {
    color: var(--color-blk);
    line-height: 1.2;
}

.main-container .text-box .name-text {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-blk);
}

.main-container .text-box .name-text2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-blk);
    transform: translateY(-2px);
}

.main-container .text-box h2 {
    color: var(--color-light);
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 5px;
}

.main-container .text-box p {
    color: var(--color-light);
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
    max-width: 500px;
    display: block;
}

/* ########## Autotype my name ########## */
.type-box {
    font-size: 3rem;
    line-height: 1.1;
    border-right: 2px solid var(--color-blk);
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}

/* .web-container h1::before {
    content: "";
    position: absolute;
    top: 2px;
    left: -5px;
    right: -5px;
    bottom: 2px;
    height: 0;
    background-color: transparent;
    border-radius: 10px;
    z-index: -1;
    transition: 1s 0.5s;
}

.web-container h1:hover::before {
    height: calc(100% - 6px);
    background-color: var(--header-bg);
    transition: 0.2s;
} */

.web-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.web-container .web-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
}

.web-container h1 {
    margin-bottom: 5px;
}

.web-container .web-boxes .web-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    white-space: normal;
    gap: 1rem;
    flex: 1 1 150px;
    max-width: 200px;
    min-width: 150px;
    min-height: 120px;
    background-color: var(--header-second-bg);
    border-top: 1px solid var(--color-blk);
    border-bottom: 1px solid var(--color-blk);
    border-radius: 18px;
    text-align: center;
    padding: 5px 12px;
    margin: 5px 5px 10px 5px;
    cursor: default;
    transition: 1.5s;
}

.web-container .web-boxes .web-box:hover {
    background-color: var(--header-bg);
    transition: 0.1s;
}

.web-container .web-boxes .web-box h3 {
    text-shadow: 0 0 2px var(--color-blk);
    font-size: 20px;
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.web-container .web-boxes .web-box a {
    color: var(--btn-clr);
    font-weight: 500;
    font-size: clamp(14px, 2.5vw, 16px);
    text-decoration: none;
    padding: 5px 7px;
    background: var(--btn-bg);
    border-radius: 10px;
    transition: 0.3s;
}

.web-container .web-boxes .web-box a:hover {
    background: var(--btn-bg-hover);
    transform: scale(1.03);
}

.web-container .web-boxes .web-box a:active {
    transform: scale(1);
    transition: 0s;
}

.fa-arrow-up-right-from-square {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--color-white);
    margin-left: 3px;
    transform: translateY(-0.7px);
}

.github-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.github-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    background: linear-gradient(to bottom, transparent 50%, var(--color-white) 100%);
    border: 1px solid var(--color-blk);
    border-radius: 18px;
    padding: 10px;
    padding-bottom: 30px;
}

.github-left img {
    width: 80px;
    height: 80px;
    transform: translateY(3px);
    /* border: 1px solid color-mix(in srgb, var(--color-blk) 30%, transparent); */
    /* box-shadow: 0 0 5px color-mix(in srgb, var(--color-blk) 80%, transparent); */
    outline: 1px solid var(--color-blk);
    border-radius: 25px;
    pointer-events: none;
    user-select: none;
}

.github-info h2 {
    font-size: 1.8rem;
    margin-bottom: 3px;
    color: var(--color-blk);
}

.github-info p {
    color: var(--color-light);
    font-size: 1rem;
}

.github-right {
    flex: 1;
    max-width: 100%;
    color: #c9d1d9;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    border: 1px solid var(--color-blk);
    border-top: none;
    border-radius: 0 0 18px 18px;
    background: var(--color-white);
    padding: 5px 15px 15px 15px;
    margin-top: -15px;
    margin-bottom: 10px;
}

.github-right p {
    color: var(--color-blk);
    font-size: clamp(14px, 2.5vw, 16px);
}

.github-right .github-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 7px 15px;
    background: var(--btn-bg);
    color: var(--btn-clr);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transform: scale(1);
    transition: 0.3s;
}

.github-right .github-btn:hover {
    transform: scale(1.02);
}

.github-right .github-btn:hover {
    background: var(--btn-bg-hover);
}

.github-right .github-btn:active {
    transform: scale(1);
    transition: 0s;
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-container h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.faq {
    border: 1px solid var(--color-light-gray);
    border-radius: 10px;
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: 300ms;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 600;
}

.faq.active .faq-question::after {
    content: '-';
}

.faq-question:hover,
.faq.active .faq-question {
    background-color: var(--header-bg);
}

.faq.active .faq-question {
    border-bottom: 1px solid var(--color-light-gray);
    border-radius: 10px;
}

.faq-question:hover {
    background-color: var(--header-bg);
}

.faq-answer {
    max-height: 0;
    padding: 0 10px;
    line-height: 1.6;
    font-size: clamp(14px, 2.5vw, 16px);
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq.active .faq-answer {
    padding: 10px;
}

/* Contact Form */
.contact-container {
    padding-bottom: 15px;
    margin-bottom: 0;
}

.contact-container h1 {
    margin: 0;
}

.contact-form {
    max-width: 100%;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    max-width: 100%;
    padding: 10px;
    background: var(--header-second-bg);
    color: var(--color-blk);
    font-size: clamp(14px, 2.5vw, 16px);
    outline: 1px solid transparent;
    border: 1px solid var(--color-blk);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.contact-form input:hover,
.contact-form textarea:hover {
    outline: 1px solid var(--color-blk);
}


.contact-form input:focus-within,
.contact-form textarea:focus-within {
    outline: 1px solid var(--color-blk);
    background: var(--color-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-light-gray);
}

.contact-form .c-btn {
    padding: 0.8rem;
    border: none;
    display: inline-block;
    background: var(--btn-bg);
    border-radius: 10px;
    transform: scale(1);
    transition: 0.3s;
    cursor: pointer;
}

.contact-form .c-btn .c-btn-txt {
    display: block;
    color: var(--color-white);
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    text-decoration: none;
}

.contact-form .c-btn:hover {
    background: var(--btn-bg-hover);
}

.contact-form .c-btn:hover .c-btn-txt {
    color: var(--color-white);
}

.contact-form .c-btn:active {
    transform: scale(0.99);
    transition: 0s;
}

/* .fade-msg {
    display: none;
    text-align: center;
    color: var(--color-blk);
    font-size: clamp(14px, 2.5vw, 16px);
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity 0.5s ease, translateY 0.8s ease;
}

.fade-msg.show {
    display: block;
    opacity: 1;
    transform: translateY(0px);
} */

/* <<<<<=== Page: Clone CSS ===>>>>> */
/* body.clones .web-clone-container {
    backdrop-filter: blur(5px);
}

.web-clone-container .img-container {
    opacity: 0; 
    backdrop-filter: blur(5px);
} */

/* .web-clone-container .imgs-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
    justify-items: center;
}

.web-clone-container .img-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.web-clone-container .box-img {
    width: 100%;
    max-width: 380px;
    margin: 10px 0px;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    box-shadow: 2px -3px 3px rgba(247, 247, 247, 1);
    transition: 800ms;
}

.web-clone-container .box-img:hover {
    transform: scale(1.02);
    transition: 300ms;
} */

.web-clone-container .img-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    justify-content: center;
    justify-items: center;
}

.web-clone-container .img-container .img-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.web-clone-container .img-container .img-box .box-img {
    /* width: 100%; */
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--rds);
    outline: 2px solid color-mix(in srgb, var(--color-blk) 30%, transparent);
    position: relative;
    display: block;
    background-color: var(--color-blk);
    object-fit: cover;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    transition: all 0.3s ease;
}

.web-clone-container .original,
.web-clone-container .clone {
    position: relative;
    display: inline;
    width: 100%;
}

.web-clone-container .original::after,
.web-clone-container .clone::after {
    content: attr(attr-name);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 30px; */
    padding: 8px 0 4px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-shadow: 0 0 10px linear-gradient(rgba(0, 0, 0, 0.9));
    color: #fff;
    font-size: 14px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 0 0 var(--rds) var(--rds);
}

/* .web-clone-container .original:hover::after,
.web-clone-container .clone:hover::after {
    opacity: 1;
} */


/* Lightbox base (hidden) */
/* body:has(.lightbox:target) {
    overflow: hidden;
} */

.lightbox {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--header-overlay-bg);
    backdrop-filter: blur(5px);
    border-radius: var(--rds);
    padding: 25px;

    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;

    z-index: 999;
}

.lightbox.active {
    display: flex;
}

/* inner content */
.lightbox-inner {
    border-radius: var(--rds);

    display: flex;
    align-items: center;
    gap: 20px;

    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.90) translateY(-15px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }
}

/* images responsive & large */
.lightbox a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--rds);
    box-shadow: 0 0 7px var(--color-blk);
    pointer-events: none;
    user-select: none;
}

.lightbox .close {
    position: fixed;
    bottom: 22px;
    right: 0;
    left: 0;
    margin: auto;
    width: 40px;
    height: 36px;
    text-decoration: none;
    z-index: 100;
    cursor: pointer;
    animation: scaleIn 0.3s ease;
}

.lightbox .close::before {
    position: absolute;
    content: "Click To Visit";
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: clamp(12px, 1.5vw, 16px);
    color: var(--color-white);
    padding: 2px 7px;
    border-radius: 5px;
    background-color: var(--color-blk);
    box-shadow: 0 1px 3px var(--color-blk);
    pointer-events: none;
}

.lightbox .close::after {
    content: "\2716";
    font-size: clamp(18px, 2vw, 24px);
    padding-bottom: 2px;
    width: 32px;
    height: 30px;
    border: 2px solid var(--color-white);
    background-color: var(--color-blk);
    color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 0 3px var(--color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    /* transition: 300ms; */
    z-index: 10;
}

.lightbox .close:hover::after {
    border: 2px solid var(--color-blk);
    background-color: var(--body-bg);
    color: var(--color-blk);
}

.lightbox .official,
.lightbox .clone {
    position: relative;
    display: inline-block;
    width: 100%;
}

.lightbox .official::after,
.lightbox .clone::after {
    content: attr(attr-name);
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    padding: 8px 0 4px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    text-shadow: 0 0 10px linear-gradient(rgba(0, 0, 0, 0.9));
    color: #fff;
    font-size: 14px;
    text-align: center;
    transition: opacity 0.3s ease;
    border-radius: 0 0 var(--rds) var(--rds);
    opacity: 1;
    z-index: 5;
}


/* <<<<<=== Page: About Me CSS ===>>>>> */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-container .top-heading {
    margin: 5px 0px 10px 0px;
}

.about-container .name-font {
    color: var(--color-light);
    font-size: clamp(20px, 3.5vw, 24px);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 5px;
}

.about-container p {
    text-align: center;
    margin-bottom: 10px;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
}

.skills-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    align-items: stretch;
}

.skill-card {
    width: 250px;
    max-width: 100%;
    flex: 1 1 180px;
    padding: 15px;
    background: var(--header-second-bg);
    border-top: 1px solid var(--color-blk);
    border-bottom: 1px solid var(--color-blk);
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    background: var(--header-bg);
    transform: translateY(-5px);
    box-shadow: 0 2px 15px color-mix(in srgb, var(--color-blk) 20%, transparent);
    transition: all 0.2s ease;
}

.skill-card .icon {
    font-size: 40px;
    display: block;
}

.skill-card h3 {
    font-size: 20px;
    color: var(--color-blk);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.skill-card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--color-blk) 60%, transparent);
}

.tools-section {
    padding: 80px 10%;
    background: #ffffff;
}

.tools-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 150px;
    height: 125px;
    background: var(--header-second-bg);
    border-top: 1px solid var(--color-blk);
    border-bottom: 1px solid var(--color-blk);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    box-shadow: 0 2px 15px color-mix(in srgb, var(--color-blk) 20%, transparent);
    background: var(--header-bg);
    transform: translateY(-5px);
    transition: all 0.2s ease;
}

.tool-card i {
    font-size: 3rem;
    object-fit: contain;
}

.tool-card h3 {
    font-size: 16px;
    color: var(--color-blk);
}

.social-container {
    min-height: 165px;
    margin-bottom: 0;
}

.social-container h1 {
    margin-bottom: 10px;
    position: relative;
}

.social-container .social-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(15px, 3vw, 30px);
    width: 100%;
    padding: 10px;
    transform: translateY(15px);
}

.social-container .social-boxes a {
    background-color: var(--color-blk);
    color: var(--color-white);
    padding: 10px;
    height: 50px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 5px var(--color-blk);
    transition: 300ms;
}

.social-container .social-boxes a:hover {
    background-color: var(--color-white);
    color: var(--color-blk);
}

.social-container .social-boxes a:hover::before {
    background-color: var(--color-white);
    color: var(--color-blk);
}

.social-container .social-boxes a::before {
    content: attr(social-bar);
    position: absolute;
    background-color: var(--color-white);
    box-shadow: 0 0 3px var(--color-blk);
    color: var(--color-blk);
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 100px;
    transform: translateY(-20px) rotate(30deg);
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    pointer-events: none;
    cursor: default;
    z-index: 5;
    opacity: 0;
    transition: 300ms;
}

.social-container .social-boxes a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 10px solid var(--color-blk);
    transform: translateY(-6px) rotate(30deg);
    user-select: none;
    pointer-events: none;
    cursor: default;
    opacity: 0;
    transition: 300ms;
}

.social-container .social-boxes a:hover::before {
    transform: translateY(-50px) rotate(0);
    opacity: 1;
}

.social-container .social-boxes a:hover::after {
    transform: translateY(-36px) rotate(0);
    opacity: 1;
}

.social-container .social-boxes a i {
    font-size: 30px;
    color: var(--color-white);
    transition: 300ms;
}

.social-container .social-boxes a:hover i {
    color: var(--color-blk);
}

/* ====== Top Button ======= */
#click-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--header-bg);
    backdrop-filter: blur(3px);
    color: var(--bg-color);
    border-radius: 10px;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid var(--color-blk);
    border-top: 1px solid var(--color-blk);
    border-right: 1px solid none;
    border-left: 1px solid none;
    z-index: 6;
    transition: all 0.3s ease;
}

#click-top:hover {
    border: 1px solid var(--color-blk);
    transform: scale(1.1);
}

#click-top:active {
    transform: scale(0.9);
    transition: 0s ease;
}

#click-top i {
    font-size: 16px;
}

/* ====== Selection CSS ======= */
::selection {
    background: color-mix(in srgb, var(--color-blk) 80%, transparent);
    color: var(--color-white);
}