@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
}

h1 {
    font-weight: 800;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.main {
    min-height: 150vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    z-index: 1;
}

#sidebar {
    max-width: 280px;
    min-width: 280px;
    transition: all 0.35s ease-in-out;
    background-color: #000;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

#sidebar.collapsed {
    margin-left: -280px;
}

.toggler-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    z-index: 999;
}

.toggler-btn i {
    font-size: 1.75rem;
    color: #ffffff;
    font-weight: 1000;
}

.navbar {
    padding: 1.15rem 1.5rem;
}

.sidebar-nav {
    flex: 1 1 auto;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
    text-align: center;
}

.sidebar-logo a {
    color: #FFF;
    font-weight: 800;
    font-size: 1.5rem;
}

.sidebar-header {
    color: #FFF;
    font-size: .75rem;
    padding: 1.5rem 1.5rem .375rem;
}

a.sidebar-link {
    padding: .625rem 1.625rem;
    color: #FFF;
    position: relative;
    transition: all 0.35s;
    display: block;
    font-size: 1.25rem;
}

a.sidebar-link:hover {
    background-color: #f9f6f630;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

@media (max-width: 768px) {
    .sidebar-toggle {
        margin-left: 0;
    }

    #sidebar.collapsed {
        margin-left: -280px;
    }
}

.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 11%;
    width: 100%;
    height: 100%;
}

.img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100vh;
    width: 100%;
    display: none;
    top: 0;
    left: 0;
    z-index: -1;
}

#label {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 5%;
    top: 5%;
}

#inp {
    position: absolute;
    opacity: 0;
}

.sun {
    position: absolute;
    font-size: 3rem;
    color: #666;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .5));
    transition: 1s ease;
    transform: scale(0);
}

#inp:checked~.sun {
    transition-delay: 0s;
    transform: scale(1) rotate(360deg);
    color: white;
}

.moon {
    font-size: 3rem;
    color: #666;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .5));
    transition: 1s ease;
}

#inp:checked~.moon {
    transition-delay: 0s;
    transform: rotate(360deg) scale(0);
}

.toggle {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: -1;
    transition: 1s;
}

.on {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    /* Adjusted line height for better readability */
    animation: on 5s linear forwards;
    font-family: Arial !important;
}

.off {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    /* Adjusted line height for better readability */
    animation: off 5s linear forwards;
    font-family: Arial !important;
}

#text {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-family: Arial !important;
}

#text1 {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-family: Arial !important;
}


@keyframes on {
    0% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    100% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

@keyframes off {
    100% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    0% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

#text2 {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-family: Arial !important;
}


@keyframes on {
    0% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    100% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

@keyframes off {
    100% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    0% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

#text3 {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-family: Arial !important;
}


@keyframes on {
    0% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    100% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

@keyframes off {
    100% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    0% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

#text4 {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-family: Arial !important;
}


@keyframes on {
    0% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    100% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

@keyframes off {
    100% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    0% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

#text5 {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-family: Arial !important;
}


@keyframes on {
    0% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    100% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

@keyframes off {
    100% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    0% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

#text6 {
    font-size: 3rem;
    letter-spacing: 10px;
    font-weight: 900;
    color: #fff;
    /* White text */
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-family: Arial !important;
}


@keyframes on {
    0% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    100% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

@keyframes off {
    100% {
        color: #fff;
        /* White text */
        text-shadow: none;
        /* No shadow initially */
    }

    0% {
        color: #fff;
        /* White text */
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 16px #03bcf4;
        /* White neon glow effect */
    }
}

.btn {
    border: none;
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



#a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    background-color: #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5em;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding: 10px 30px;
    transition: 0.5s;
}

#a:hover {
    letter-spacing: 0.25em;
    color: var(--clr);
    background-color: var(--clr);
    box-shadow: 0 0 35px var(--clr);
}

#a::before {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #000000;
}

#a span {
    position: relative;
    z-index: 1;
}

#a i {
    position: absolute;
    inset: 0;
    display: block;
}

#a i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background-color: #000;
    transform: translateX(-50%) skewX(350deg);
    transition: 0.5s;
}

#a:hover i::before {
    width: 20px;
    left: 20%;
}

#a i::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background-color: #000;
    transform: translateX(-50%) skewX(350deg);
    transition: 0.5s;
}

#a:hover i::after {
    width: 20px;
    left: 80%;
}

#box {
    border: 2px solid white;
    background-color: rgba(52, 58, 64, 0.1);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: auto;
    /* height: 90vh; */
}


.boxOn {
    background-color: rgba(52, 58, 64, 0.1);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: auto;
    animation: boxOn 5s linear forwards;
}

@keyframes boxOn {
    0% {
        border: 2px solid white;
        /* White border */
        box-shadow: none;
        /* No shadow initially */
    }

    100% {
        border: 2px solid white;
        /* White border */
        box-shadow:
            0 0 5px white,
            0 0 10px white,
            0 0 15px white,
            0 0 20px white,
            0 0 25px white;
        /* Reduced white neon glow effect */
    }
}



.boxOff {
    background-color: rgba(52, 58, 64, 0.1);
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: auto;
    animation: boxOff 5s linear forwards;
}

@keyframes boxOff {
    100% {
        border: 2px solid white;
        /* White border */
        box-shadow: none;
        /* No shadow initially */
    }

    0% {
        border: 2px solid white;
        /* White border */
        box-shadow:
            0 0 5px white,
            0 0 10px white,
            0 0 15px white,
            0 0 20px white,
            0 0 25px white;
        /* Reduced white neon glow effect */
    }
}

#inputTxt {
    text-transform: uppercase;
    letter-spacing: 15px;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
}

#error {
    position: absolute;
    font-size: 1.1rem;
    margin-top: 5px;
    color: red;
}

#result1 {
    border: 2px solid white;
    padding: 10px 80px;
    border-radius: 5px;
}

.myResult {
    font-size: 25px;
}

#setting-icon {
    font-size: 25px;
    margin-top: -30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 5s linear;
}

#label {
    top: 0;
}

#formula {
    font-size: 25px !important;
    text-align: center !important;
}

@media (max-width:768px) {

    #text {
        font-size: 2rem;
    }


    #a {
        font-size: 1em;
        padding: 8px 20px;
    }

    #a1 {
        font-size: 0.9em !important;
    }

    #a1:hover {
        letter-spacing: 0em !important;
    }

    #text1,
    #text2,
    #text3,
    #text4,
    #text5,
    #text6 {
        font-size: 2rem;
    }

    #inputTxt {
        font-size: 1.2rem !important;
        letter-spacing: 10px;
    }

    #result1 {
        border: 2px solid white;
        padding: 0.4rem 3rem;
    }

    .myResult {
        font-size: 1.1rem;
    }

    #setting-icon {
        font-size: 1.2rem;
        margin-top: -1.5rem;
    }

    #label {
        top: 0;
    }

    #formula {
        font-size: 20px !important;
        text-align: center !important;
    }

    #error {
        position: absolute;
        font-size: 0.9rem;
        margin-top: 5px;
        color: red;
    }
}

@media (max-width:476px) {

    #text1,
    #text2,
    #text3,
    #text4,
    #text5,
    #text6 {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }

    #inputTxt {
        font-size: 1rem !important;
        letter-spacing: 5px;
    }

    #text {
        font-size: 1.5rem;
        letter-spacing: 10px;
    }

    #label {
        top: 0;
    }

    #formula {
        font-size: 13.9px !important;
        text-align: center !important;
    }

    #error {
        position: absolute;
        font-size: 0.7rem;
        margin-top: 5px;
        color: red;
    }

    #a1 {
        font-size: 0.7em !important;
    }
}

html {
    scroll-behavior: smooth !important;
}



.initial-view {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    transition: transform 1s ease-in-out;
    color: white;
}

.website-content {
    opacity: 0;
    transition: opacity 1s ease-in-out 1s;
}

.initial-view.hidden {
    transform: translateY(-100%);
}

.initial-view.hidden~.website-content {
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
}



.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    pointer-events: none;
    z-index: 11;
}

.counter {
    position: fixed;
    left: 50px;
    bottom: 50px;
    display: flex;
    height: 100px;
    font-size: 100px;
    line-height: 102px;
    clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100px);
    font-weight: 400;
}

.counter-1,
.counter-2,
.counter-3 {
    position: relative;
    top: -15px;
}

.counter-1 {
    margin-right: 15px;
}

.num1offset1 {
    position: relative;
    right: -25px;
}

.num1offset2 {
    position: relative;
    right: -10px;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 50px;
    transform: translate(-50%, -50%);
    display: flex;
    background-color: rgba(80, 80, 80);
}

.loader-1 {
    position: relative;
    background-color: #fff;
    width: 200px;
}

.loader-2 {
    position: relative;
    width: 100px;
    background-color: #fff;
}

.bar {
    height: 50px;
}

.website-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}



.header {
    position: relative;
    width: max-content;
    height: max-content;
}



.header-revealer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.header-revealer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 110%;
    background-color: #fff;
    top: 80px;
}

#a1 {
    font-family: 'Poppins', sans-serif;
    position: relative;
    background-color: #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.3em;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding: 10px 30px;
    transition: 0.5s;
    width: 100% !important;
}

#a1:hover {
    letter-spacing: 0.25em;
    color: var(--clr);
    background-color: var(--clr);
    box-shadow: 0 0 35px var(--clr);
}

#a1::before {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #000000;
}

#a1 span {
    position: relative;
    z-index: 1;
}

#a1 i {
    position: absolute;
    inset: 0;
    display: block;
}

#a1 i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background-color: #000;
    transform: translateX(-10%) skewX(350deg);
    transition: 0.5s;
}

#a1:hover i::before {
    width: 20px;
    left: 20%;
}

#a1 i::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background-color: #000;
    transform: translateX(-50%) skewX(350deg);
    transition: 0.5s;
}

#a1:hover i::after {
    width: 20px;
    left: 80%;
}

#subscribeButton {
    font-family: 'Poppins', sans-serif;
    position: relative;
    background-color: #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.3em;
    letter-spacing: 0.1em;
    font-weight: 400;
    padding: 10px 30px;
    transition: 0.5s;
    width: 100% !important;
}

#subscribeButton:hover {
    letter-spacing: 0.25em;
    color: var(--clr);
    background-color: var(--clr);
    box-shadow: 0 0 35px var(--clr);
}

#subscribeButton::before {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #000000;
}

#subscribeButton span {
    position: relative;
    z-index: 1;
}

#subscribeButton i {
    position: absolute;
    inset: 0;
    display: block;
}

#subscribeButton i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background-color: #000;
    transform: translateX(-10%) skewX(350deg);
    transition: 0.5s;
}

#subscribeButton:hover i::before {
    width: 20px;
    left: 20%;
}

#subscribeButton i::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background-color: #000;
    transform: translateX(-50%) skewX(350deg);
    transition: 0.5s;
}

#subscribeButton:hover i::after {
    width: 20px;
    left: 80%;
}



.error-message {
    color: red;
    font-size: 12px;
    display: block;
    position: absolute;
    margin-top: -20px !important;
    /* Changed from position absolute to block */
    /* margin-top: 5px; */
    /* Adjust spacing as needed */
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.no-scroll {
    overflow: hidden;
}

.initial-view {
    display: none;
}

.metric-conversion {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Full viewport height */
}

#loader100 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 100vh;
    /* Center the loading text vertically */
    z-index: 1000;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7.2px;
    height: 7.2px;
    border-radius: 50%;
    background: currentColor;
    margin: -3.6px 0 0 -3.6px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 62.62742px;
    left: 62.62742px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 67.71281px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 70.90963px;
    left: 48.28221px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 70.90963px;
    left: 31.71779px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 67.71281px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 62.62742px;
    left: 17.37258px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12.28719px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.text-hover-primary:hover {
    color: #d6d6d6 !important;
    /* Bootstrap primary color */
}