/* Bedusec Main Stylesheet - Complete Cyberpunk Theme */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: #000;
    color: #00ff00;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
    overflow: hidden;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 79px, rgba(0, 255, 0, 0.1) 81px, rgba(0, 255, 0, 0.1) 82px, transparent 84px),
        linear-gradient(transparent 79px, rgba(0, 255, 0, 0.1) 81px, rgba(0, 255, 0, 0.1) 82px, transparent 84px);
    background-size: 85px 85px;
    animation: matrixScan 3s linear infinite;
}

@keyframes matrixScan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Navigation */
.cyber-nav {
    background: rgba(0, 20, 0, 0.95);
    border-bottom: 2px solid #00ff00;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
}

.glitch {
    position: relative;
    color: #00ff00;
    text-decoration: none;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff0080;
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #0088ff;
    animation: glitch-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { clip-path: inset(0 0 0 0); }
    15%, 49% { clip-path: inset(20% 0 30% 0); }
}

@keyframes glitch-2 {
    0%, 24%, 25%, 59%, 60%, 99%, 100% { clip-path: inset(0 0 0 0); }
    25%, 59% { clip-path: inset(10% 0 40% 0); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #88ff88;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff00;
    transition: width 0.3s ease;
}

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

.nav-login {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-login:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.cyber-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,20,0,0.9) 0%, rgba(0,40,0,0.8) 100%);
    position: relative;
    padding-top: 80px;
}

.terminal-window {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    font-family: 'Share Tech Mono', monospace;
}

.terminal-header {
    background: #00ff00;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00ff00;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-btn.close { background: #ff5f56; }
.terminal-btn.minimize { background: #ffbd2e; }
.terminal-btn.maximize { background: #27c93f; }

.terminal-title {
    color: #000;
    font-weight: bold;
    font-size: 0.9rem;
}

.terminal-body {
    padding: 1.5rem;
    color: #00ff00;
    min-height: 300px;
    background: #000;
}

.terminal-line {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.prompt {
    color: #00ff00;
    margin-right: 0.5rem;
    white-space: nowrap;
}

.command {
    color: #ffffff;
    font-weight: bold;
}

.output {
    color: #88ff88;
    line-height: 1.4;
}

.typed-command {
    color: #ffffff;
    display: inline;
}

.cursor {
    animation: blink 1s infinite;
    color: #00ff00;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    color: #88ff88;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.cyber-services {
    padding: 5rem 0;
    background: rgba(0, 30, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(0, 20, 0, 0.6);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ff00;
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #00ff00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 4px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: #88ff88;
}

/* Tools Section */
.cyber-tools {
    padding: 5rem 0;
    background: rgba(0, 20, 0, 0.8);
}

.tools-scroller {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    scrollbar-width: thin;
    scrollbar-color: #00ff00 #000;
}

.tools-scroller::-webkit-scrollbar {
    height: 8px;
}

.tools-scroller::-webkit-scrollbar-track {
    background: #000;
}

.tools-scroller::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

.tool-item {
    flex: 0 0 auto;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
}

.tool-item i {
    font-size: 2.5rem;
    color: #00ff00;
    margin-bottom: 1rem;
}

.tool-item span {
    color: #88ff88;
    font-size: 0.9rem;
}

/* Contact Section */
.cyber-contact {
    padding: 5rem 0;
    background: rgba(0, 30, 0, 0.8);
}

.contact-terminal {
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.contact-line {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-form {
    margin-top: 2rem;
}

.cyber-input, .cyber-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    border-radius: 4px;
    padding: 1rem;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cyber-input:focus, .cyber-textarea:focus {
    outline: none;
    border-color: #ff0080;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

.cyber-textarea {
    min-height: 120px;
    resize: vertical;
}

.cyber-button {
    background: #00ff00;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-button:hover {
    background: #88ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

/* Quick Tools Access */
.quick-tools {
    background: rgba(0, 30, 0, 0.8);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.tools-title {
    text-align: center;
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.tool-card {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tool-card:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateY(-5px);
    border-color: #00ff00;
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
}

.tool-card i {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 0.5rem;
    display: block;
}

.tool-card span {
    color: #88ff88;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

/* Enhanced Footer */
.cyber-footer {
    background: linear-gradient(135deg, rgba(0,10,0,0.95) 0%, rgba(0,20,0,0.9) 100%);
    border-top: 2px solid #00ff00;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cyber-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: left;
}

.footer-brand .glitch {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand p {
    color: #88ff88;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: #88ff88;
    margin-top: 0.3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #00ff00;
    margin-bottom: 1.2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,255,0,0.3);
    padding-bottom: 0.5rem;
}

.footer-column a {
    display: block;
    color: #88ff88;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #00ff00;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,255,0,0.2);
}

.footer-copyright p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-legal {
    font-size: 0.8rem !important;
    color: #444 !important;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0,255,0,0.1);
    border: 1px solid rgba(0,255,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,255,0,0.4);
}

/* ShadowGPT Chatbot Styles */
.shadowgpt-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 420px;
    height: 600px;
    background: rgba(0, 10, 0, 0.98);
    border: 2px solid #ff0080;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.6);
    display: none;
    flex-direction: column;
    z-index: 10000;
    backdrop-filter: blur(15px);
    font-family: 'Share Tech Mono', monospace;
    overflow: hidden;
}

.shadowgpt-chatbot.active {
    display: flex;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #ff0080, #8000ff);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0080;
}

.chatbot-title {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff00;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #00ff00;
}

.chatbot-controls {
    display: flex;
    gap: 0.8rem;
}

.chatbot-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chatbot-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
}

.message {
    max-width: 85%;
    padding: 1rem;
    border-radius: 12px;
    animation: messageSlide 0.3s ease;
    line-height: 1.5;
}

.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, #0088ff, #0044ff);
    border: 1px solid #0088ff;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.4);
}

.ai-message {
    align-self: flex-start;
    background: rgba(255, 0, 128, 0.15);
    border: 1px solid rgba(255, 0, 128, 0.4);
    color: #ff88cc;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
    backdrop-filter: blur(10px);
}

.message-sender {
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-message .message-sender {
    color: #88ccff;
}

.ai-message .message-sender {
    color: #ff66aa;
}

.message-content {
    line-height: 1.6;
    white-space: pre-wrap;
    font-size: 0.9rem;
}

.message-content code {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #88ff88;
    border: 1px solid #333;
    display: block;
    margin: 0.5rem 0;
    overflow-x: auto;
}

.message-content pre {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333;
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
    margin: 0.8rem 0;
    font-size: 0.85rem;
}

.message-content strong {
    color: #ff0080;
}

.message-time {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.5rem;
    text-align: right;
}

.chatbot-input {
    display: flex;
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 0, 128, 0.4);
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.9);
}

.chatbot-input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff0080;
    border-radius: 8px;
    padding: 1rem;
    color: white;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.chatbot-input button {
    background: linear-gradient(135deg, #ff0080, #ff3399);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Share Tech Mono', monospace;
}

.chatbot-input button:hover {
    background: linear-gradient(135deg, #ff3399, #ff66aa);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
    transform: translateY(-2px);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 0, 128, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.quick-btn {
    background: rgba(255, 0, 128, 0.2);
    border: 1px solid rgba(255, 0, 128, 0.4);
    color: #ff88cc;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
}

.quick-btn:hover {
    background: rgba(255, 0, 128, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
}

.shadowgpt-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0080, #8000ff);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.shadowgpt-toggle:hover {
    transform: scale(1.15);
    box-shadow: 0 0 60px rgba(255, 0, 128, 1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pulse-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px #00ff00;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(0.95); opacity: 1; }
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar styling */
.chatbot-messages::-webkit-scrollbar {
    width: 8px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #ff0080;
    border-radius: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: #ff3399;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff88cc;
    font-style: italic;
}

.typing-dots {
    display: inline-flex;
    gap: 2px;
}

.typing-dots::after {
    content: '...';
    animation: typing 1.5s infinite;
}

@keyframes typing {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyber-nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .shadowgpt-chatbot {
        width: 95%;
        height: 70vh;
        right: 2.5%;
        bottom: 2.5%;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure the chatbot is above other elements */
.shadowgpt-chatbot,
.shadowgpt-toggle {
    z-index: 10000;
}

/* Notification styles */
.cyber-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 20, 0, 0.9);
    border: 1px solid;
    border-radius: 4px;
    padding: 1rem 1.5rem;
    font-family: 'Share Tech Mono', monospace;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    backdrop-filter: blur(10px);
}

.cyber-notification.info { border-color: #0088ff; color: #0088ff; }
.cyber-notification.success { border-color: #00ff00; color: #00ff00; }
.cyber-notification.warning { border-color: #ffa500; color: #ffa500; }
.cyber-notification.error { border-color: #ff4444; color: #ff4444; }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
