/* 
   11soft - Global Industrial Styles 
   Theme: Cyber-Stealth V2
*/

:root {
    --primary-bg: #000000;
    --secondary-bg: #0b0c10;
    --card-bg: #1f2833;
    --accent: #00f3ff;
    --accent-hover: #00d2da;
    --text-primary: #c5c6c7;
    --text-muted: #45a29e;
}

body {
    background-color: var(--primary-bg);
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
}

/* Common Layouts */
.container-narrow { max-width: 900px !important; margin: 0 auto; }
.section-padding { padding: 40px 0; }

/* Breadcrumbs (Bootstrap 3 Style Override) */
.breadcrumb { background: transparent; padding: 20px 0; margin: 0; font-size: 13px; }
.breadcrumb > li + li:before { content: "\f105"; font-family: FontAwesome; padding: 0 10px; color: #ccc; }
.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-orange); }
.breadcrumb .active { color: #333; font-weight: 700; }

/* Marquee Tickers */
.downloads-recent-header { border-bottom: 1px solid #eee; margin-bottom: 20px; }
.mq-container { display: flex; align-items: center; min-height: 40px; border-bottom: 1px solid #f1f1f1; }
.mq-container .text-right { padding-right: 15px; border-right: 1px solid #eee; }
.marquee-set { overflow: hidden; white-space: nowrap; flex: 1; padding: 10px 0; }
.marquee-content { display: inline-block; padding-left: 100%; animation: marquee-scroll 40s linear infinite; }
@keyframes marquee-scroll { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }
.mq-file-item { display: inline-block; padding: 0 30px; font-size: 13px; }
.mq-file-item a { color: #555; font-weight: 600; text-decoration: none; }
.mq-file-item a:hover { color: var(--accent-orange); }

/* Progress Bar */
.progress { height: 12px; border-radius: 10px; background: #eee; box-shadow: none; margin: 0; }
.progress-bar { background-color: #27ae60; box-shadow: none; }

/* Sidebar (Common for Shop/Downloads/Blog) */
.sidebar-box { background: #fff; border: 1px solid #eee; margin-bottom: 30px; border-radius: 4px; overflow: hidden; }
.sidebar-title { background: var(--primary-navy); color: #fff; margin: 0; padding: 12px 15px; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li a { display: block; padding: 12px 15px; border-bottom: 1px solid #f9f9f9; color: #555; text-decoration: none; font-size: 13px; transition: 0.2s; }
.sidebar-list li a:hover, .sidebar-list li a.active { background: #fcfcfc; color: var(--accent-orange); border-left: 3px solid var(--accent-orange); padding-left: 18px; }

/* Cards (Product / File) */
.card-box { background: #fff; border: 1px solid #eee; border-radius: 4px; transition: 0.3s; position: relative; overflow: hidden; }
.card-box:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }

/* Form Elements (Parity) */
.le-select { height: 40px; border: 1px solid #ddd; border-radius: 4px; box-shadow: none; }
.le-input { height: 40px; border: 1px solid #ddd; border-radius: 4px; box-shadow: none; padding: 0 15px; }
.le-button { background: var(--primary-navy); color: #fff; border: none; padding: 10px 25px; font-weight: 700; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: 0.2s; }
.le-button:hover { background: var(--accent-orange); }

/* Badges */
.badge { border-radius: 2px; padding: 4px 8px; font-size: 10px; font-weight: 700; }
.bg-green { background: #27ae60 !important; }
.bg-blue { background: #2980b9 !important; }
.bg-orange { background: var(--accent-orange) !important; }

/* Icon Bar (Floating) */
.icon-bar { position: fixed; right: 0; top: 30%; z-index: 999; list-style: none; padding: 0; margin: 0; }
.icon-bar li a { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; color: #fff; text-decoration: none; transition: 0.2s; }
.icon-bar li a.whatsapp { background: #25D366; }
.icon-bar li a.telegram { background: #0088cc; }
.icon-bar li a.facebook { background: #3b5998; }
.icon-bar li a.twitter { background: #1da1f2; }
.icon-bar li a.instagram { background: #e1306c; }
.icon-bar li a.linkedin { background: #0077b5; }
.icon-bar li a:hover { width: 55px; }

/* Account Layout */
.account-wrapper { display: flex; gap: 30px; padding: 40px 0; }
.account-sidebar { width: 280px; flex-shrink: 0; }
.account-main { flex-grow: 1; }

/* Info Boxes */
.info-box { display: flex; background: #fff; border: 1px solid #eee; border-radius: 4px; margin-bottom: 25px; overflow: hidden; }
.info-box-icon { width: 80px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #fff; }
.info-box-content { padding: 15px 20px; }
.info-box-text { font-size: 11px; text-transform: uppercase; color: #888; font-weight: 700; }
.info-box-number { font-size: 24px; font-weight: 800; color: #333; }
