.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.content-wrap-container {
    padding-left: 5px;
    padding-right: 5px;
}

.ch_2-content-section {
    padding-top: 40px;
    margin-bottom: -80px;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

body {
    animation: bgFade 15s ease-in-out infinite alternate;
}

@keyframes bgFade {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.navi {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.signin-button {
    background: linear-gradient(95deg, #059dff 15%, #7460c8 45%, #e33fa1 75%, #fb5343) 95% / 200% 100%;
    /* your purple color */
    color: #fff;
    /* white text */
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Optional: on hover, make it a bit darker */
.signin-button:hover {
    background-color: #ffffff;
    /* darker purple */
}


/* Logo */
.brand {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand img {
    height: 50px;
    width: auto;
    display: block;
}

/* Desktop Menu */
.navimenu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navimenu.active {
    left: 0;
}

/* Desktop Links */
.navlink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 18px 12px;
    transition: all 0.3s ease;
}

.navlink:hover {
    color: #ff0000;
}

.back-button {
    display: none;
}


/* Desktop Dropdown */
.dropdownward {
    position: relative;
}

.navi-dropdownward-list {
    position: absolute;
    top: 100%;
    /* top aligned */
    left: 0;
    /* slide right */
    min-width: 220px;
    /* dropdown width */
    background: #e3e3e3;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* Softer downward shadow */
    opacity: 0;
    visibility: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    overflow: hidden;
    flex-direction: column;
    display: flex;
    z-index: 1000;
}

.dropdownward:hover .navi-dropdownward-list {
    opacity: 1;
    visibility: visible;

}

/* Dropdown Links inside */
.dropdownward-link {
    display: block;
    width: 100%;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.dropdownward-link:hover {
    color: #a90d0d;
}

.dropdownward-toggle .arrow {
    margin-left: 8px;
    font-size: 14px;

}

.dropdownward-toggle {
    color: #f0f0f0;

}

/* ===== MOBILE MENU ===== */
.menu-button {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
}

.burger-bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

/* ===== MOBILE STYLES ===== */
/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {


    /* Hamburger visible */
    .menu-button {
        display: flex;
    }

    /* Mobile Menu */
    .navimenu {
        position: fixed;
        top: 37%;
        left: -260px;
        width: 260px;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
        transform: translateY(-50%);
        /* Center the whole nav vertically */
        transition: left 0.4s ease;
        z-index: 999;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 3px;
    }

    .navimenu.active {
        left: 0;
    }

    /* Mobile Links */
    .navlink,
    .dropdownward-toggle {
        width: 100%;
        padding: 15px 20px;
        color: #333;
        text-align: left;
        font-weight: 600;
        border-bottom: 1px solid #000;
    }



    /* Mobile Dropdown */
    /* Dropdown container */
    .navi-dropdownward-list {
        position: fixed;
        top: 0;
        left: 100%;
        width: 260px;
        height: 100vh;
        /* Full height */
        padding-top: 20px;
        /* Room for back button */
        background: #fff;
        overflow-y: auto;
        border-radius: 0;
        /* optional: square corners */
        transform: none;
        /* remove vertical centering */
        z-index: 1000;
    }

    .dropdownward {
        position: relative;
        z-index: 0;
        /* Ensure dropdown is above other content */
    }


    .dropdownward.active {
        z-index: 1001;
        /* bring only active one above others */
    }

    /* When dropdown is active */
    .dropdownward.active .navi-dropdownward-list {
        left: 0;

    }

    /* Dropdown links */
    .dropdownward-link {
        width: 100%;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid #eee;
    }

    .dropdownward-link:hover {
        background: #eaeaea;
    }

    /* Arrow next to toggle */
    .dropdownward-toggle .arrow {
        font-size: 14px;
        margin-left: 8px;

    }

    /* Back button inside dropdown */
    .back-button {
        display: block;
        /* Make sure itâ€™s shown */
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;


    }


    .back-button .arrow {
        margin-right: 8px;
    }

    .tabs-menu {
        display: none !important;
    }


}

/* Adjustments for smaller screens (portrait phones, < 480px) */
@media (max-width: 480px) {
    .navimenu {
        top: 276px;
        /* Increase width on very small screens */
    }

    .signin-button {
        padding: 8px 16px;
        /* Adjust button padding */
        font-size: 0.9rem;
        /* Slightly smaller button text */
    }

    .navlink {
        padding: 12px 10px;
        /* Adjust padding for smaller screen */
        font-size: 0.9rem;
        /* Adjust font size */
    }

    .menu-button {
        width: 35px;
        height: 35px;
        /* Adjust burger icon size */
    }

    .brand img {
        max-width: 120px;
        /* Shrink logo size on smaller screens */
    }
}







.auth-holder {
    background-color: #101010;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot_password {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

#particles-js {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    opacity: 0.5;
}


/* #Intro {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
} */


/* body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 15px;
} */

a {
    text-decoration: none;
}

.wrapper {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
}

.pricing-table h2 {
    font-size: 1.5em;
    padding: 35px 10px;
    margin: 0;
}

.description {
    margin-top: 20px;
    font-size: 0.85em;
    padding: 0 40px;
    font-style: italic;
}

.description {
    margin-top: 20px;
    font-size: 0.85em;
    padding: 0 40px;
    font-style: italic;
}

.price,
.pricing-box {
    -webkit-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.price {
    background: #690877;
    color: #fff;
    font-size: 2em;
    font-weight: 600;
    position: relative;
    padding: 20px 10px;
    display: block;
}

.pricing-box:nth-child(2) .price {
    background: #216f99;
}

.pricing-box:nth-child(3) .price {
    background: #02537f;
}

.pricing-box:hover .price {
    background: #ff0;
    box-shadow: inset 0 0 100px 0 rgba(0, 0, 0, 0.3);
    color: #000;
}

.btn {
    background: #000000;
    border: 1px solid #000000;
    color: #fff;
    -webkit-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
    border-radius: 30px;
    padding: 7px 40px;
    display: inline-block;
    margin-top: 20px;
}

.btn:hover {
    background: #167fd4;
    border: 1px solid #167fd4;
    color: #fff !important;
}

.pricing-table-divider {
    display: block;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    max-width: 80%;
    margin: 20px auto 0;
}

.pricing-table {
    border-radius: 3px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
}

.pricing-box-2 {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.13);
    border: 2px solid rgba(10, 123, 183, 0.14);
}

.pricing-box-2:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
}

.pricing-table ul li {
    padding: 3px 0;
    font-size: 0.95em;
}

.pricing-table ul {
    color: #000;
    padding: 15px 60px;
    text-align: left;
}

@media (max-width: 750px) {
    .pricing-table {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .pricing-table>div:nth-child(3) {
        -ms-grid-row: 1;
        grid-row-start: 1;
    }

    .pricing-table>div:nth-child(2) {
        -ms-grid-row: 2;
        grid-row-start: 2;
    }

    .pricing-table>div {
        -ms-flex-item-align: top;
        -ms-grid-row-align: top;
        align-self: top;
    }
}

fieldset div {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    justify-content: center;
}

input[type="radio"] {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

input[type="radio"]:checked+span {
    box-shadow: 0 0 0 0.0625em #0043ed;
    background-color: #dee7ff;
    z-index: 1;
    color: #0043ed;
}

label span {
    display: block;
    cursor: pointer;
    background-color: #fff;
    padding: 0.375em 0.75em;
    position: relative;
    margin-left: 0.0625em;
    box-shadow: 0 0 0 0.0625em #b5bfd9;
    letter-spacing: 0.05em;
    color: #3e4963;
    text-align: center;
    transition: background-color 0.5s ease;
}

label:first-child span {
    border-radius: 0.375em 0 0 0.375em;
}

label:last-child span {
    border-radius: 0 0.375em 0.375em 0;
}

.my-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.recent-tranx {
    display: flex;
    margin-top: 50px;
}

.recent-tranx>div {
    width: 50%;
    margin: 20px;
}

.recent-tranx-table {
    width: 100%;
}

.recent-tranx-table>thead>tr,
.recent-tranx-table>tbody>tr {
    height: 50px;
}

.recent-tranx-table>tbody>tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05);
}

.recent-tranx-table>tbody>tr>td {
    padding: 10px;
}

.nav-height {
    height: 100vh !important;
}

/* Accordion styles */
.faq-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.faq-tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.faq-tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1.5em;
    background: #2c3e50;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
}

.faq-tab-label:hover {
    background: #1a252f;
}

.faq-tab-label::after {
    content: "276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
}

.faq-tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    transition: all 0.35s;
}

.faq-tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}

.faq-tab-close:hover {
    background: #1a252f;
}

input:checked+.faq-tab-label {
    background: #1a252f;
}

input:checked+.faq-tab-label::after {
    transform: rotate(90deg);
}

input:checked~.faq-tab-content {
    max-height: 100vh;
    padding: 1em;
}

/* Footer styles */

.foot-section {
    background: #111;
    color: #fff;
    padding: 30px 0;
    font-family: Arial, sans-serif;
}

.content-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.foot-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.foot-top,
.foot-bottom {
    display: flex;
    flex: 1;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.foot-brand,
.foot-column {
    flex: 1 1 250px;
    min-width: 200px;
}

.title,
.titles {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.red-lines {
    height: 2px;
    width: 40px;
    background: red;
    margin: 8px 0;
}

.foot-column ul,
.foot-brand p {
    list-style: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.foot-column ul li a {
    text-decoration: none;
    color: #ccc;
}

.foot-column ul li a:hover {
    color: red;
}

.buttons.w-buttons {
    background: #fff;
    color: #111;
    padding: 8px 14px;
    margin-top: 10px;
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.menu-sections {
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
}

.foot-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.foot-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.foot-link:hover {
    color: rgb(255, 0, 0);
}

/* Responsive */
@media (max-width: 768px) {

    .foot-top,
    .foot-bottom {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }

    .foot-brand,
    .foot-column {
        width: 48%;
        box-sizing: border-box;
    }

    /* Optional: stack links in foot-nav horizontally */
    .foot-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px 0;
    }

    .foot-link {
        white-space: nowrap;
    }
}
