<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Dark UI Theme with GoDigital Colors */
:root {
    --primary-color: #00d4ff;
    --primary-gradient: linear-gradient(135deg, #00d4ff, #0088ff);
    --secondary-color: #ffffff;
    --dark-bg: #111111;
    --card-bg: rgba(25, 25, 25, 0.7);
    --dropdown-bg: rgba(18, 18, 22, 0.95);
    --dropdown-hover: rgba(30, 30, 35, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --accent-color: #00d4ff;
}

/* Body and main elements */
body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 136, 255, 0.05) 0%, transparent 25%);
    z-index: -1;
}

main {
    flex: 1;
}

/* Card Effect */
.card {
    background-color: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Feature icon styling */
.feature-icon-wrapper {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1/1 !important;
}

/* Glass Card styling */
.glass-card {
    background-color: rgba(25, 25, 25, 0.5) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.glass-card .card-header {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1) !important;
}

.glass-card .card-footer {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-top: 1px solid rgba(0, 212, 255, 0.1) !important;
}

.card-header {
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.card-footer {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* Button styles */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00c8ff, #0077ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 212, 255, 0.3);
}

/* User dropdown styling */
.dropdown-menu {
    background-color: var(--dropdown-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin-top: 0.5rem;
    min-width: 260px;
    z-index: 1031;
}

.dropdown-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
}

.dropdown-header img {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.dropdown-header h6 {
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.dropdown-divider {
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item {
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--dropdown-hover);
    color: var(--primary-color);
}

.dropdown-item.text-danger {
    color: #ff5252 !important;
}

.dropdown-item.text-danger:hover, .dropdown-item.text-danger:focus {
    background-color: rgba(255, 82, 82, 0.1);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Avatar style */
.nav-link img.rounded-circle {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.nav-link:hover img.rounded-circle {
    border-color: #00c8ff;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

/* Navbar dark styling */
.navbar {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 1030;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover::after {
    width: 80%;
}

.logo-go {
    font-weight: 700;
    color: #ffffff;
}

.logo-digital {
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Footer styling */
footer {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
    margin-top: 100px;
    padding: 40px 0;
    width: 100%;
}

footer h5 {
    color: var(--primary-color);
    font-weight: 600;
}

footer .text-muted {
    color: var(--text-secondary) !important;
    opacity: 0.9;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00d4ff, #0088ff);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #00c8ff, #0077ff);
}

/* Fix z-index issues */
.hero {
    z-index: 1;
}

/* List group styling for sidebar */
.list-group-flush {
    border-radius: 0;
}

.list-group-item {
    background-color: transparent !important;
    border: none;
    border-radius: 8px !important;
    margin-bottom: 5px;
    color: var(--text-primary) !important;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.list-group-item-action {
    color: var(--text-primary) !important;
}

.list-group-item-action:hover, 
.list-group-item-action:focus {
    background-color: rgba(0, 212, 255, 0.1) !important;
    color: var(--primary-color) !important;
}

.list-group-item.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 136, 255, 0.1)) !important;
    color: var(--primary-color) !important;
    border-left: 3px solid var(--primary-color) !important;
    font-weight: 500;
}

.list-group-item i {
    width: 20px;
    text-align: center;
}

/* Form control styling */
.form-control, .form-select {
    background-color: rgba(30, 30, 30, 0.7) !important;
    border: 1px solid rgba(0, 212, 255, 0.1) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(35, 35, 35, 0.8) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2) !important;
}

.form-text {
    color: var(--text-secondary) !important;
}

/* Range slider styling */
.form-range::-webkit-slider-thumb {
    background: var(--primary-color) !important;
}

.form-range::-moz-range-thumb {
    background: var(--primary-color) !important;
}

.form-range::-webkit-slider-runnable-track {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.form-range::-moz-range-track {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Form switches styling */
.form-check-input {
    background-color: rgba(30, 30, 30, 0.7) !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Accordion styling */
.accordion-item {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: rgba(25, 25, 25, 0.5) !important;
    color: var(--text-primary) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(0, 212, 255, 0.1) !important;
    box-shadow: none !important;
    padding: 1rem 1.25rem !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background-color: rgba(0, 212, 255, 0.05) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300d4ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    background-color: rgba(25, 25, 25, 0.3) !important;
    border: 1px solid rgba(0, 212, 255, 0.1) !important;
    border-top: none !important;
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    padding: 1rem 1.25rem !important;
}

/* Badge styling */
.badge {
    font-weight: 500 !important;
    padding: 0.5em 0.75em !important;
}

/* Pricing section styling */
.pricing-section {
    background-color: var(--dark-bg) !important;
    background-image: none !important;
}

/* Pricing card popular badge positioning */
.pricing-card.popular .position-absolute {
    top: 15px !important;
} </pre></body></html>