
.style-switcher{
    position: fixed; right: 0; top: 60px;
    padding: 15px; width: 180px; z-index: 101;
    border: 1px solid var(--bg-black-50);
    background: var(--bg-black-100);
    border-radius: 5px; transition: all .3s ease;
    transform: translateX(100%);
}
.style-switcher.open{
    transform: translateX(-25px);
}
.style-switcher .s-icon{
    position: absolute; font-size: 20px;
    height: 40px; width: 40px; text-align: center;
    background: var(--bg-black-100);
    color: var(--text-black-900);
    right: 100%; margin-right: 25px; cursor: pointer;
    border: 1px solid var(--bg-black-50);
    transition: all .3s ease; border-radius: 50%;
}
.style-switcher .s-icon i{
    line-height: 40px;
}
.style-switcher .day-night{
    top: 55px;
}
.style-switcher .style-switcher-toggler{
    top: 0;
}
.style-switcher h4{
    margin: 0px 0px 10px; font-size: 16px;
    color: var(--text-black-700);
    font-weight: 600; text-transform: capitalize;
}
.style-switcher .colors{
    justify-content: space-between;
    display: inline-block;
}
.style-switcher .colors span{
    display: inline-block;
    height: 30px; width: 30px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transform: rotate(-45deg);
    border: 1px solid var(--bg-black-900);
}
.style-switcher .color-1{
    background: #ff44cc;
}
.style-switcher .color-1.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #ff44cc;
}
.style-switcher .color-2{
    background: #2bb413;
}
.style-switcher .color-2.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #2bb413;
}
.style-switcher .color-3{
    background: #fa5b0f;
}
.style-switcher .color-3.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #fa5b0f;
}
.style-switcher .color-4{
    background: #1854b4;
}
.style-switcher .color-4.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #1854b4;
}
.style-switcher .color-5{
    background: #ec1839;
}
.style-switcher .color-5.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #ec1839;
}
.style-switcher .color-6{
    background: #008080;
}
.style-switcher .color-6.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #008080;
}
.style-switcher .color-7{
    background: #e2e205;
    pointer-events: n
}
.style-switcher .color-7.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #e2e205;
}
.style-switcher .color-8{
    background: #973cd7;
}
.style-switcher .color-8.active {
    box-shadow: 0 0 0 2px #2626269d,
                0 0 0 4px #973cd7;
}


/* -------------------SCROLL UP--------------------- */
#progress{
    /* background-color: #00000071; */
    position: fixed; bottom: 20px; right: 10px;
    z-index: 1000; width: 60px; height: 60px;
    display: none; place-items: center;
    border-radius: 50%; cursor: pointer;
    box-shadow: 0 0 10px #f8f7f771;
}
#progress-value{
    display: block; background-color: #eee;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 25px; color: #001a2e;
}

/* -------------------------------SCROLL REVEAL EFFECT------------------------ */
.hidden{
    opacity: 0; transition: all 1s ease-in;
    filter: blur(5px); transform: translateY(15%);
}
.hidden1{
    opacity: 0; transition: all 1.5s ease-in;
    filter: blur(5px); transform: translateX(100%);
}
.hidden2{
    opacity: 0; transition: all 1.5s ease-in;
    filter: blur(5px); transform: translateX(-100%);
}
.show{
    opacity: 1; filter: blur(0);
    transform: translateY(0);
    transform: translateX(0);
}
.scroll-element {
    opacity: 0;
    transform: translateY(30vh); /* or any other desired initial transformation */
    transition: opacity 1s, transform 0.7s;
}

/* Footer Styles */
.footer {
    border-top: 2px solid var(--bg-black-50);
    /* background-color: var(--skin-color); */
    color: var(--text-black-900);
    padding: 20px 0;
    /* text-align: center; */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-content h1 span a {
    color: var(--skin-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content h1 span a:hover {
    color: var(--uniqueGree);
}

.footer-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--text-black-700);
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--uniqueGree);
}

.support-me {
    margin-bottom: 20px;
}

.support-me p {
    font-size: 16px;
    margin-bottom: 10px;
}

.support-link {
    background-color: var(--skin-color);
    color: #fdfdfd;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.support-link:hover {
    background-color: var(--uniqueGree);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}