body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.brand-logo {
    text-decoration: none;
    display: inline-block;
}

.brand-name {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0;
}

.brand-name .one {
    color: #0056b3;
}

.brand-name .finserv {
    color: #28a745;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #666;
    margin-top: -6px;
    display: block;
    text-align: center;
    text-transform: uppercase;
}

/* Navbar  */

.navbar-nav .nav-link {
    font-weight: 700;
    color: #4a5568 !important;
    margin: 0 8px;
    padding: 8px 16px !important;
    position: relative;
    transition: all 0.4s ease-in-out;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.042);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
    border-radius: 8px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, #28a745);
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%);
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
}

.navbar-nav .nav-link:hover {
    color: #0056b3 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    transform: translateY(0);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-3d {
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 24px;
    border-radius: 8px;
    color: #fff !important;
    text-decoration: none;
    border: none;
    outline: none;
    transition: all 0.1s ease;
    cursor: pointer;
    margin-bottom: 6px;
}

.btn-3d-login {
    background-color: #0056b3;
    box-shadow: 0 6px 0 #003d82, 0 10px 10px rgba(0, 0, 0, 0.15);
}

.btn-3d-login:hover {
    background-color: #0062cc;
    box-shadow: 0 4px 0 #003d82, 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(2px);
}

.btn-3d-login:active {
    box-shadow: 0 2px 0 #003d82, 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(4px);
}

.btn-3d-signup {
    background-color: #28a745;
    box-shadow: 0 6px 0 #1e7e34, 0 10px 10px rgba(0, 0, 0, 0.15);
}

.btn-3d-signup:hover {
    background-color: #2ebd4e;
    box-shadow: 0 4px 0 #1e7e34, 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(2px);
}

.btn-3d-signup:active {
    box-shadow: 0 2px 0 #1e7e34, 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(4px);
}

/* Marquee */

.ticker-wrapper {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
    padding: 8px 0;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.01);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    padding: 0 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-value {
    color: #222;
}

.ticker-down {
    color: #dc3545;
}

.ticker-up {
    color: #28a745;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Main Content */

.trust-bar-wrapper {
    padding: 3rem 15px;
    background-color: #f8f9fa;
}

.trust-bar {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 86, 179, 0.05);
    display: flex;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: default;
}

.trust-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.2), rgba(40, 167, 69, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #28a745;
    border: 2px solid #fff;
    border-radius: 50%;
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, #0056b3, #28a745);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    transform: scale(1.02);
}

.trust-icon i {
    font-size: 1.5rem;
    color: #0056b3;
    transition: all 0.4s ease !important;
}

.trust-item:hover .trust-icon i {
    color: #ffffff;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    color: #1e293b;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.trust-subtitle {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

.trust-item:hover .trust-title {
    color: #0056b3;
}

.trust-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 86, 179, 0.15), transparent);
    margin: 15px 0;
}

@media (max-width: 991px) {
    .trust-bar {
        flex-direction: column;
        padding: 15px;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 86, 179, 0.15), transparent);
        margin: 5px 0;
    }
}


/* Footer */

.site-footer {
    position: relative;
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0.92), rgba(4, 6, 10, 0.98)),
        url('images/footer-bg.png') center/cover no-repeat;
    color: #fff;
    padding-top: 5rem;
    border-top: 4px solid;
    border-image: linear-gradient(to right, #0056b3, #28a745) 1;
}

.z-index-content {
    position: relative;
    z-index: 2;
}

.footer-brand-box {
    background: rgba(246, 246, 246, 0.094);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #28a745;
    border-radius: 2px;
}

.footer-text {
    color: #a3b1c6;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a3b1c6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: #0056b3;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: #28a745;
    transform: translateX(3px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
    color: #a3b1c6;
    font-size: 0.95rem;
}

.contact-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.bg-blue-glow {
    background: #0056b3;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.4);
}

.bg-green-glow {
    background: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
}

.bg-gray-glow {
    background: #495057;
    box-shadow: 0 0 10px rgba(73, 80, 87, 0.4);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(246, 246, 246, 0.094);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #0056b3;
    color: #fff;
    transform: translateY(-3px);
    border-color: #0056b3;
}

.risk-warning-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #0056b3;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    color: #a3b1c6;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    color: #8b949e;
    font-size: 0.9rem;
}


/* Login Form */

.auth-container {
    max-width: 1000px;
    width: 95%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
    overflow: hidden;
    display: flex;
    min-height: 650px;
    margin: auto !important;
}

.branding-panel {
    background: linear-gradient(135deg, #0056b3 0%, #1a3c61 100%);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branding-panel::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300D09C' fill-opacity='0.15' d='M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,112C672,107,768,149,864,176C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    z-index: 1;
}

.branding-content {
    z-index: 2;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
}

.form-panel {
    perspective: 1200px;
    padding: 0;
}

.flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.flipper.flip-active {
    transform: rotateY(180deg);
}

.form-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 3rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-back {
    transform: rotateY(180deg);
}

.form-floating>.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-floating>.form-control:focus {
    border-color: lightgreen;
}

.btn-primary-custom {
    background-color: #0056b3;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #1a3c61;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.15);
}

.toggle-link {
    color: #28a745;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.toggle-link:hover {
    color: #00a67d;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .auth-container {
        flex-direction: column;
        min-height: auto;
    }

    .branding-panel {
        padding: 2rem;
        min-height: 200px;
    }

    .form-panel {
        min-height: 550px;
    }

    .form-face {
        padding: 2rem;
    }
}


/* NFO  */


.page-header h2 {
    font-weight: 700;
    color: #2a2d3c;
    margin-bottom: 8px;
}

.page-header p {
    color: #7c7e8c;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #7c7e8c;
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 50px;
    border: 1px solid #e2e4ea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: #28A745;
    box-shadow: 0 4px 20px rgba(0, 208, 156, 0.15);
}

.nfo-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nfo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 208, 156, 0.12);
    border-color: rgba(0, 208, 156, 0.3);
}

.nfo-badge {
    background: rgba(0, 208, 156, 0.1);
    color: #00a87e;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fund-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}

.fund-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgb(235, 235, 235);
}

.fund-name {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2a2d3c;
    margin-bottom: 6px;
}

.fund-category {
    font-size: 0.8rem;
    color: #7c7e8c;
    background: #f4f5f7;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.date-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafbfa;
    border: 1px dashed #e2e4ea;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    margin-top: auto;
}

.date-box {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 0.75rem;
    color: #7c7e8c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.date-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #44475b;
}

.date-divider i {
    color: #cdd0d8;
    font-size: 1.2rem;
}

.list-view .nfo-col {
    width: 100%;
}

.list-view .nfo-card {
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;
}

.list-view .fund-header {
    margin-bottom: 0;
    flex: 2;
}

.list-view .date-container {
    margin-bottom: 0;
    margin-top: 0;
    flex: 1.5;
    margin: 0 20px;
}

.list-view .btn-3d {
    width: auto !important;
    min-width: 150px;
    margin-left: auto;
}

.view-btn.active {
    background-color: #28A745;
    color: white;
    border-color: #28A745;
}

@media (max-width: 768px) {
    .fund-header {
        padding-right: 0;
        flex-direction: column;
        gap: 12px;
    }

    .list-view .nfo-card {
        flex-direction: column;
        align-items: stretch;
    }

    .list-view .date-container {
        margin: 20px 0;
    }

    .list-view .btn-3d {
        width: 100% !important;
    }
}



/* start css for all forms */

        .main-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
            border: 1px solid rgba(0, 86, 179, 0.05);
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .main-card .heading {
            font-size: 1.85rem;
            font-weight: 800;
            color: #2a2d3c;
            margin-bottom: 25px;
            border-bottom: 2px solid #f4f5f7;
            padding-bottom: 15px;
        }

        .form-label {
            font-size: 0.75rem;
            font-weight: 700;
            color: #7c7e8c;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .astriek {
            color: #dc3545;
            font-weight: 800;
            margin-left: 2px;
        }

        .form-control,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #e2e4ea;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.01);
            font-size: 0.95rem;
            font-weight: 500;
            color: #2a2d3c;
            background-color: #fcfcfc;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #28A745;
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
        }

        .tab-pane .row>div {
            margin-bottom: 20px;
        }

        .nav-tabs {
            border: none;
            background: #f4f6f9;
            padding: 8px;
            border-radius: 18px;
            display: inline-flex;
            margin-bottom: 40px !important;
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
        }

        .nav-tabs .nav-item {
            margin: 0;
        }

        .nav-tabs .nav-link {
            font-weight: 700;
            color: #7c7e8c !important;
            background: transparent;
            border: none;
            padding: 12px 30px !important;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
        }

        .nav-tabs .nav-link:hover {
            color: #0056b3 !important;
            transform: translateY(-1px);
        }

        .nav-tabs .nav-link.active {
            background: #ffffff;
            color: #0056b3 !important;
            box-shadow: 0 8px 20px rgba(0, 86, 179, 0.12);
            transform: translateY(-2px);
        }

        .btn-primary {
            position: relative;
            display: inline-block;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 10px 28px;
            border-radius: 10px;
            color: #fff !important;
            background-color: #0056b3;
            border: none;
            outline: none;
            transition: all 0.1s ease;
            cursor: pointer;
            margin: 0 5px;
            box-shadow: 0 6px 0 #003d82, 0 10px 10px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:hover {
            background-color: #0062cc;
            box-shadow: 0 4px 0 #003d82, 0 6px 8px rgba(0, 0, 0, 0.15);
            transform: translateY(2px);
        }

        .btn-primary:active {
            box-shadow: 0 2px 0 #003d82, 0 2px 4px rgba(0, 0, 0, 0.15);
            transform: translateY(4px) !important;
        }

        input[type="reset"].btn-primary {
            background-color: #6c757d;
            box-shadow: 0 6px 0 #495057, 0 10px 10px rgba(0, 0, 0, 0.15);
        }

        input[type="reset"].btn-primary:hover {
            background-color: #5a6268;
            box-shadow: 0 4px 0 #495057, 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        input[type="reset"].btn-primary:active {
            box-shadow: 0 2px 0 #495057, 0 2px 4px rgba(0, 0, 0, 0.15);
        }

        #errorBox1 {
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.3);
            border-radius: 12px;
            padding: 15px !important;
            margin-bottom: 20px;
            color: #dc3545 !important;
        }
    /* end css for all forms */
