/*@theme {*/
/*    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',*/
/*        'Segoe UI Symbol', 'Noto Color Emoji';*/
/*}*/
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Questrial",  sans-serif;
    --nav-font: "Open Sans",  sans-serif;
}
:root {
    --primary-eits: #070F2B;
    --secondary-eits: #1D5D9B;
    --white-eits: #FAF3F0;
    --primary-font-color: #004a5a;
    --background-color: #f8f9fa;
    --default-color: #535d6b;
    --surface-color: #252525;
    --accent-color: #64dca0;
    --heading-color: #344761;
    --bg-deep: #030303;
    --bg-surface: #0a0a0a;
    --accent-glow: #00ffaa;
    --accent-secondary: #7000ff;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --font-main: 'Inter Tight', sans-serif;
    --font-code: 'Space Mono', monospace;
    --cursor-size: 400px;
}

.navbar-dark .navbar-brand {
    color: var(--primary-eits);
}
.navbar-dark .navbar-nav .nav-link {
    color: var(--primary-eits);
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-eits);
}
.navbar-dark .navbar-brand:hover {
    color: var(--secondary-eits);
}
.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>menu</title><path d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" /></svg>') !important;
}
.custom-navbar {
    background-color: var(--white-eits);
    border-radius: 50px;
    padding-left: 16px;
    padding-right: 16px;
}

.gradient-text {
    background: linear-gradient(90deg,rgba(100, 220, 160, 1) 0%, rgba(251, 238, 172, 1) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-body {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.card-body:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.card-body:hover .icon-circle {
    background: var(--accent-color) !important;
    color: var(--background-color) !important;
    transform: scale(1.1);
}

.card-body > p {
    flex: 1;
    margin-bottom: 24px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}
h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.glass_effect {
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 1000;
    overflow-x: hidden;
}

.feature-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    padding-bottom: 20px;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.scroll-icon {
    animation: vertical-shaking 2s infinite ease-in-out;
}

@keyframes vertical-shaking {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

.navbar-brand > img {
    width: 40px;
}

.scale-element {
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

.illustration-header > img {
    width: 180px;
    height: 180px;
}

.btn-action {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background-color: #FBEEAC;
    border: #FBEEAC;
}

.glass-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-table th {
    background-color: rgba(255, 255, 255, 0.2);
    color: #212529;
    font-weight: 600;
}

.glass-table td {
    color: #212529;
}

.table-wrapper {
    padding: 1rem;
}

.table-input {
    border: none;
    border-bottom: 2px solid darkgray;
}

.table-input:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #FBEEAC;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: darkgray;
}

.form-check > input {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.form-check-label {
    vertical-align: sub;
}

@keyframes spinFlash {
    0% { transform: rotate(0deg) scale(1); opacity: 1; }
    50% { transform: rotate(180deg) scale(1.3); opacity: 0.6; }
    100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

.animate-magic {
    animation: spinFlash 0.2s ease-in-out;
}

.how-it-works {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
}

.faq-number {
    flex-shrink: 0;
    width: 80px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 300;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}
.faq-question {
    flex: 1;
    margin: 0;
    margin-right: 0px;
    font-family: var(--heading-font);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--heading-color);
    transition: all 0.3s ease;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-right: 20px;
}
.accordion {
    --bs-accordion-border-color: none !important;
}
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
}
.accordion-item {
    outline: none;
    border: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.accordion-button:focus {
    box-shadow: none;
}
.custom-border-top {
    border-top: 1px solid var(--accent-color);
}
.decorative-elements {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.circle {
    position: absolute;
    border-radius: 50%;
}
.circle-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
}
.circle-2 {
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 97%));
}
.circle-3 {
    top: 40%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 70%), color-mix(in srgb, var(--accent-color), transparent 90%));
}

.dashboard-card {
    font-size: 120px;
    position: absolute;
    margin-left: 150px;
    margin-top: -25px;
}

td > img {
    width: 32px;
    height: 32px;
}

.strength-meter {
    height: 6px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: .25rem;
}
.strength-meter > div {
    height: 100%;
    width: 0%;
    transition: width .25s ease, background .25s ease;
}

[data-bs-theme="dark"] {
    --primary-font-color: #a7c7d6;
    --background-color: #121212;
    --default-color: #b0b8c1;
    --surface-color: #2d2d2d;
    --accent-color: #56bfa2;
    --heading-color: #a7b3bb;
}
[data-bs-theme="dark"] .glass {
    background: rgba(23,25,28,.6);
}

.accordion-body > .form-switch .form-check-input {
    width: 3em !important;
}

.accordion-body> .form-check .form-check-input {
    float: right !important;
}

.social_media > a {
    display: inline-block;
    background: var(--primary-font-color);
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
    fill: var(--background-color);
}
.social_media > a:hover {
    background: var(--background-color);
    fill: var(--accent-color);
}
.social_media > a > svg {
    width: 32px;
    margin-top: 8px;
}
#useful_links {
    padding: 0;
}
#useful_links > li:first-child {
    padding: 0 0 10px 0;
}
#useful_links > li {
    list-style: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
    width: 150px;
}
#useful_links > li > a {
    text-decoration: none;
    color: var(--background-color);
}
#useful_links > li > a:hover {
    color: var(--accent-color);
}
#useful_links > li > i {
    padding-right: 5px;
}
#useful_links > li > i > svg {
    width: 12px;
    height: 12px;
}

#scrollTopButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 10px;
    background-color: var(--accent-color);
    color: var(--background-color);
    border: none;
    border-radius: 5px;
    display: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

#scrollTopButton.show {
    display: block;
}

#ui-datepicker-div {
    z-index: 9999 !important;
}

#suggestions-list {
    position: absolute;
    width: 100%;
    z-index: 999;
    background-color: var(--background-color);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    max-height: 200px;
    overflow-y: auto;
}

#suggestions-list li {
    padding: 8px;
    cursor: pointer;
}

#suggestions-list li:hover {
    background-color: #f0f0f0;
}

.business-member > tr > td {
    vertical-align: middle;
}

/*.section-bg {*/
/*    height: 100vh;*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*}*/

/*.section-bg-login {*/
/*    background-image: url('../../public/images/auth/bg-login.jpg');*/
/*}*/

/*.section-bg-register {*/
/*    background-image: url('../../public/images/auth/bg-registration.jpg');*/
/*}*/

.body-landing-page-only {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
}

.aurora-blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}
.blob-1 { left: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, #7000ff 0%, transparent 70%); }
.blob-2 { right: 0%; width: 60vw; height: 60vw; background: radial-gradient(circle, #0044ff 0%, transparent 70%); animation-delay: -5s; }
.blob-3 { top: 25%; left: 30%; width: 40vw; height: 40vw; background: radial-gradient(circle, #00ffaa 0%, transparent 70%); opacity: 0.2; animation-delay: -10s; }

.nav-pill-container {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 12px 30px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- TYPOGRAPHY --- */
h1.display-giant {
    font-size: clamp(3rem, 8vw, 6rem); /* Responsive Giant Text */
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-glow {
    position: relative;
    padding: 16px 40px;
    background: #fff;
    color: #000;
    font-weight: 700;
    border-radius: 100px;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

/* --- PASSWORD GENERATOR UI --- */
.gen-display {
    font-family: var(--font-code);
    font-size: 2rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--accent-glow);
    color: var(--accent-glow);
    padding: 20px;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.gen-display::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 170, 0.1), transparent);
    transform: translateX(-100%);
    animation: scanline 3s infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* --- STATS TICKER --- */
.stats-divider {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    margin: 4rem 0;
    background: rgba(255,255,255,0.01);
}

.stat-item h3 { font-size: 2.5rem; font-weight: 700; margin: 0; color: #fff; }
.stat-item p { font-size: 0.8rem; text-transform: uppercase; color: var(--text-secondary); letter-spacing: 2px; margin: 0; }
