/* ============================================================
   STC COOPERATIVE — ENTERPRISE PREMIUM v7.3
   Electric Blue | Deep Navy | Professional IT Aesthetic
   Smart responsive typography + Passport team cards
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Noto+Sans+Ethiopic:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap');

/* ══ DESIGN TOKENS ════════════════════════════════════════════ */
:root {
    /* Brand Colors */
    --blue-900: #040c1a;
    --blue-800: #071428;
    --blue-700: #0a1e3d;
    --blue-600: #0d2954;
    --blue-500: #1a3a6b;
    --electric: #0066ff;
    --electric-light: #3385ff;
    --electric-glow: rgba(0, 102, 255, 0.35);
    --cyan: #00c8ff;
    --cyan-glow: rgba(0, 200, 255, 0.25);
    --green: #00e676;
    --green-glow: rgba(0, 230, 118, 0.25);
    --amber: #ffab00;
    --amber-glow: rgba(255, 171, 0, 0.25);
    --red: #ff3d57;

    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f0f4ff;
    --gray-200: #e0e8f8;
    --gray-300: #b8c8e8;
    --gray-400: #8899bb;
    --gray-500: #4d6080;
    --gray-600: #2d3f5c;

    /* Light mode */
    --light-bg: #f0f5ff;
    --light-card: #ffffff;
    --light-border: #d0ddf5;
    --light-text: #0a1428;
    --light-muted: #4d6080;

    /* Typography */
    --font: 'Outfit', 'Inter', 'Noto Sans Ethiopic', sans-serif;
    --mono: 'JetBrains Mono', monospace;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t1: 0.15s;
    --t2: 0.3s;
    --t3: 0.5s;

    /* Shadows & Glows */
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.25);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-blue: 0 8px 32px var(--electric-glow);
    --shadow-cyan: 0 8px 32px var(--cyan-glow);
    --border-glow: 0 0 0 1px rgba(0,102,255,0.3);
}

/* ══ RESET ════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 14px; }

body {
    font-family: var(--font);
    background: var(--blue-900);
    color: var(--gray-300);
    line-height: 1.72;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
}

body:not(.dark-mode) {
    background: var(--light-bg);
    color: var(--light-text);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--white);
}

body:not(.dark-mode) h1,
body:not(.dark-mode) h2,
body:not(.dark-mode) h3,
body:not(.dark-mode) h4 { color: var(--light-text); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══ KEYFRAME ANIMATIONS ════════════════════════════════════ */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes typing-dot {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

@keyframes progress-fill {
    from { width: 0; }
    to { width: var(--progress-w, 82%); }
}

@keyframes counter-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes border-glow-pulse {
    0%, 100% { border-color: rgba(0,102,255,0.2); box-shadow: 0 0 0 rgba(0,102,255,0); }
    50% { border-color: rgba(0,102,255,0.5); box-shadow: 0 0 20px rgba(0,102,255,0.15); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ══ SCROLL REVEAL ══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ══ TYPOGRAPHY UTILITIES ════════════════════════════════════ */
.text-electric {
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shimmer {
    background: linear-gradient(90deg, var(--white) 0%, var(--cyan) 30%, var(--white) 60%, var(--electric-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    /* removed uppercase for amharic */
    letter-spacing: 0.18em;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.tag-label::before {
    content: '';
    display: inline-block;
    width: 1.75rem;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
}

/* ══ LAYOUT ══════════════════════════════════════════════════ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section { position: relative; overflow: hidden; }

.sec-pad { padding: 6rem 2rem; }
.sec-pad-sm { padding: 4rem 2rem; }

.sec-header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 4rem;
}

.sec-title {
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    margin-bottom: 1rem;
    font-weight: 900;
}

.sec-desc {
    font-size: 0.97rem;
    color: var(--gray-400);
    line-height: 1.8;
}

body:not(.dark-mode) .sec-desc { color: var(--light-muted); }

.underline-bar {
    width: 3.5rem;
    height: 3px;
    background: linear-gradient(to right, var(--electric), var(--cyan));
    border-radius: 9999px;
    margin: 1rem auto 0;
}

/* ══ NAVIGATION ══════════════════════════════════════════════ */
header.sticky-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    height: 4.5rem;
    background: rgba(4, 12, 26, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0, 102, 255, 0.12);
    transition: all var(--t2) var(--ease);
}

body:not(.dark-mode) header.sticky-nav {
    background: rgba(240, 245, 255, 0.95);
    border-bottom-color: rgba(0, 102, 255, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img-badge {
    height: 2.6rem;
    width: 2.6rem;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 255, 0.4);
    box-shadow: 0 0 16px var(--electric-glow);
    transition: all var(--t1) var(--ease);
}

.logo-link:hover .logo-img-badge {
    transform: scale(1.08);
    box-shadow: 0 0 28px var(--electric-glow), 0 0 50px var(--cyan-glow);
    border-color: var(--electric);
}

.logo-badge {
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%);
    color: white;
    font-weight: 900;
    font-size: 1.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 0.65rem;
    box-shadow: var(--shadow-blue);
}

.logo-text-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    letter-spacing: -0.02em;
}

body:not(.dark-mode) .logo-text-title { color: var(--light-text); }

.logo-text-sub {
    color: var(--cyan);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    display: block;
    /* removed uppercase for amharic */
}

nav.nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

nav.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    transition: all var(--t1) var(--ease);
    letter-spacing: 0.005em;
    white-space: nowrap;
}

nav.nav-links a:hover {
    color: var(--white);
    background: rgba(0, 102, 255, 0.1);
}

body:not(.dark-mode) nav.nav-links a { color: var(--light-muted); }
body:not(.dark-mode) nav.nav-links a:hover { color: var(--light-text); background: rgba(0,102,255,0.07); }

nav.nav-links a.active-link { color: var(--cyan); }

nav.nav-links a.highlight-nav { color: var(--amber); }
nav.nav-links a.highlight-nav:hover { color: #ffd54f; background: rgba(255,171,0,0.08); }

.btn-contact-nav {
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%) !important;
    color: white !important;
    padding: 0.4rem 0.85rem !important;
    border-radius: 0.5rem !important;
    font-weight: 700 !important;
    font-size: 0.74rem !important;
    box-shadow: var(--shadow-blue);
    transition: all var(--t1) var(--ease) !important;
    white-space: nowrap !important;
}

.btn-contact-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 25px var(--electric-glow), 0 4px 20px rgba(0,102,255,0.4) !important;
    background: rgba(0,0,0,0) !important;
}

.lang-selector-wrapper select {
    background: rgba(0,102,255,0.08);
    border: 1px solid rgba(0,102,255,0.2);
    color: var(--gray-300);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.7rem;
    border-radius: 0.5rem;
    cursor: pointer;
    outline: none;
    transition: border-color var(--t1);
    font-family: var(--font);
}

.lang-selector-wrapper select:focus { border-color: var(--electric); }
body:not(.dark-mode) .lang-selector-wrapper select {
    background: rgba(0,102,255,0.05);
    border-color: rgba(0,102,255,0.15);
    color: var(--light-text);
}

.theme-switch-btn {
    background: rgba(0,102,255,0.08);
    border: 1px solid rgba(0,102,255,0.2);
    color: var(--gray-300);
    cursor: pointer;
    padding: 0.42rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all var(--t1);
}

.theme-switch-btn:hover { background: rgba(0,102,255,0.18); color: var(--white); }
.theme-switch-btn svg { width: 1.15rem; height: 1.15rem; }

.theme-btn-dark-icon, .theme-btn-light-icon { display: none; }
body.dark-mode .theme-btn-light-icon { display: block; }
body:not(.dark-mode) .theme-btn-dark-icon { display: block; }

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-drawer {
    display: none;
    position: fixed;
    top: 4.5rem; left: 0;
    width: 100%;
    background: rgba(4,12,26,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,102,255,0.15);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 99;
}

.mobile-drawer.open { display: flex; }

.mobile-drawer a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color var(--t1);
}

.mobile-drawer a:hover { color: var(--cyan); }
.mobile-drawer a.active-link { color: var(--cyan); }
.mobile-drawer a.highlight-nav { color: var(--amber); }

.logout-nav-btn {
    background: rgba(255, 61, 87, 0.15) !important;
    color: #ff6b81 !important;
    border: 1px solid rgba(255,61,87,0.25) !important;
    padding: 0.4rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--t1);
    font-family: var(--font);
}

.logout-nav-btn:hover {
    background: rgba(255,61,87,0.25) !important;
    transform: translateY(-1px);
}

/* ══ HERO SECTION ════════════════════════════════════════════ */
.hero-sec {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(4,12,26,0.92) 0%, rgba(7,20,40,0.88) 50%, rgba(10,30,60,0.85) 100%),
        url('uploads/stc_hero_bg_v4.jpg') center/cover no-repeat;
}

/* Particle / Grid overlay */
.hero-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,102,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,255,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Bottom edge glow */
.hero-sec::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--electric), var(--cyan), transparent);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) { .hero-container { grid-template-columns: 1.15fr 0.85fr; } }

.hero-left { text-align: center; }
@media (min-width: 1024px) { .hero-left { text-align: left; } }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0,102,255,0.1);
    border: 1px solid rgba(0,102,255,0.3);
    color: var(--cyan);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    margin-bottom: 1.75rem;
    letter-spacing: 0.05em;
    animation: fade-up 0.6s var(--ease) 0.1s both;
}

.hero-badge-dot {
    width: 0.45rem;
    height: 0.45rem;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green-glow);
    animation: pulse-ring 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fade-up 0.6s var(--ease) 0.2s both;
}

.hero-desc {
    color: var(--gray-400);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fade-up 0.6s var(--ease) 0.3s both;
}

@media (min-width: 1024px) { .hero-desc { margin-left: 0; } }

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: fade-up 0.6s var(--ease) 0.4s both;
}

@media (min-width: 576px) { .hero-buttons { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }

/* ══ BUTTONS ══════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--electric) 0%, #0055dd 50%, var(--cyan) 100%);
    background-size: 200% auto;
    color: white;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 0.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px var(--electric-glow);
    transition: all var(--t2) var(--ease);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--electric-glow), 0 0 15px var(--cyan-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gray-200);
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.88rem 2rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    transition: all var(--t2) var(--ease);
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-secondary:hover {
    border-color: var(--electric);
    color: var(--white);
    background: rgba(0,102,255,0.08);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,102,255,0.1);
}

/* ══ TERMINAL WIDGET ══════════════════════════════════════════ */
.hero-right { display: flex; justify-content: center; align-items: center; }

.terminal-card {
    background: rgba(7,20,40,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,102,255,0.2);
    width: 100%;
    max-width: 28rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0,102,255,0.08);
    animation: float 7s ease-in-out infinite;
}

.terminal-header {
    background: rgba(0,102,255,0.08);
    border-bottom: 1px solid rgba(0,102,255,0.12);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot { width: 0.68rem; height: 0.68rem; border-radius: 50%; }
.dot-red { background: #ff5f57; box-shadow: 0 0 6px rgba(255,95,87,0.5); }
.dot-yellow { background: #ffbd2e; box-shadow: 0 0 6px rgba(255,189,46,0.5); }
.dot-green { background: #28c840; box-shadow: 0 0 6px rgba(40,200,64,0.5); }

.terminal-body {
    padding: 1.5rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: #4ade80;
    background: rgba(4,8,16,0.85);
}

.terminal-body p { margin-bottom: 0.55rem; }
.terminal-muted { color: var(--gray-500); }
.terminal-accent { color: #818cf8; }
.terminal-cyan { color: var(--cyan); }

.terminal-progress-container {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 9999px;
    margin-top: 1.25rem;
    overflow: hidden;
}

.terminal-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--electric), var(--cyan));
    border-radius: 9999px;
    width: 82%;
    animation: progress-fill 2s var(--ease) both;
}

.terminal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.metric-box {
    background: rgba(0,102,255,0.06);
    border: 1px solid rgba(0,102,255,0.12);
    border-radius: 0.6rem;
    padding: 0.65rem;
    text-align: center;
}

.metric-label { font-size: 0.52rem; color: var(--gray-500); font-weight: 700; /* removed uppercase for amharic */ letter-spacing: 0.08em; }
.metric-value { font-size: 0.9rem; font-weight: 800; margin-top: 0.25rem; }
.metric-blue { color: var(--electric-light); }
.metric-green { color: var(--green); }
.metric-amber { color: var(--amber); }

/* ══ STATS BAR ════════════════════════════════════════════════ */
.stats-bar {
    background: rgba(0,102,255,0.06);
    border-top: 1px solid rgba(0,102,255,0.12);
    border-bottom: 1px solid rgba(0,102,255,0.12);
    padding: 2.5rem 2rem;
}

body:not(.dark-mode) .stats-bar {
    background: rgba(0,102,255,0.04);
    border-color: rgba(0,102,255,0.1);
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { position: relative; }

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,102,255,0.3), transparent);
}

@media (max-width: 767px) { .stat-item:nth-child(2n)::after { display: none; } }
@media (max-width: 767px) { .stat-item:nth-child(3)::after { display: none; } }

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--electric-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.04em;
}

body:not(.dark-mode) .stat-label { color: var(--light-muted); }

/* ══ ABOUT SECTION ════════════════════════════════════════════ */
.about-section {
    background: var(--blue-800);
}

body:not(.dark-mode) .about-section { background: #ffffff; }

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; } }

.vision-card-wrapper {
    position: relative;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%);
    box-shadow: var(--shadow-blue);
    transition: all var(--t2) var(--ease);
}

.vision-card-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px var(--electric-glow);
}

.vision-card {
    background: var(--blue-700);
    border-radius: 1.4rem;
    padding: 2.5rem;
    text-align: center;
}

body:not(.dark-mode) .vision-card { background: #f0f5ff; }

.vision-icon { font-size: 3.5rem; margin-bottom: 1.5rem; animation: float 5s ease-in-out infinite; display: block; }
.vision-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; }
.vision-desc { font-size: 0.9rem; color: var(--gray-400); line-height: 1.75; font-style: italic; }
body:not(.dark-mode) .vision-desc { color: var(--light-muted); }
.vision-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(0,102,255,0.3), transparent); margin: 1.5rem 0; }
.vision-badge { font-size: 0.65rem; color: var(--cyan); font-weight: 700; letter-spacing: 0.12em; /* removed uppercase for amharic */ }
.vision-footer { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.5rem; }

.about-content { display: flex; flex-direction: column; gap: 2rem; }
.about-text { font-size: 1rem; color: var(--gray-400); line-height: 1.85; }
body:not(.dark-mode) .about-text { color: var(--light-muted); }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 576px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0,102,255,0.05);
    border: 1px solid rgba(0,102,255,0.1);
    padding: 1.35rem;
    border-radius: 1rem;
    transition: all var(--t2) var(--ease);
    animation: border-glow-pulse 4s ease-in-out infinite;
}

.value-item:hover { border-color: rgba(0,102,255,0.35); background: rgba(0,102,255,0.09); transform: translateY(-3px); }

body:not(.dark-mode) .value-item { background: rgba(0,102,255,0.03); border-color: rgba(0,102,255,0.08); }

.value-icon { font-size: 1.75rem; flex-shrink: 0; }
.value-title { font-size: 0.92rem; font-weight: 800; margin-bottom: 0.3rem; }
.value-desc { font-size: 0.8rem; color: var(--gray-400); line-height: 1.65; }
body:not(.dark-mode) .value-desc { color: var(--light-muted); }

/* ══ BUILDING ADVISORY ════════════════════════════════════════ */
.hotel-warning-sec {
    background: linear-gradient(135deg, #1a0a00 0%, #200d00 100%);
    border-top: 1px solid rgba(255,171,0,0.2);
    border-bottom: 1px solid rgba(255,171,0,0.2);
}

body:not(.dark-mode) .hotel-warning-sec {
    background: linear-gradient(135deg, #fffdf0 0%, #fffbeb 100%);
    border-color: rgba(255,171,0,0.3);
}

.hotel-warning-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255,171,0,0.04);
    border: 1px solid rgba(255,171,0,0.18);
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

body:not(.dark-mode) .hotel-warning-container {
    background: white;
    border-color: rgba(255,171,0,0.25);
    box-shadow: 0 16px 50px rgba(255,171,0,0.08);
}

@media (min-width: 768px) { .hotel-warning-container { grid-template-columns: 0.35fr 0.65fr; } }

.warning-badge-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .warning-badge-area {
        border-right: 1px solid rgba(255,171,0,0.15);
        padding-right: 2.5rem;
    }
}

.warning-icon-bounce {
    width: 5rem; height: 5rem;
    background: rgba(255,171,0,0.12);
    border: 2px solid rgba(255,171,0,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 0 20px var(--amber-glow);
}

.warning-icon-bounce svg { width: 2.5rem; height: 2.5rem; color: var(--amber); }

.warning-pill {
    display: inline-block;
    background: rgba(255,171,0,0.12);
    border: 1px solid rgba(255,171,0,0.25);
    color: var(--amber);
    font-size: 0.65rem;
    font-weight: 800;
    /* removed uppercase for amharic */
    letter-spacing: 0.1em;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.warning-badge-title { font-size: 1.6rem; font-weight: 900; color: var(--amber); }
.warning-badge-sub { font-size: 0.68rem; font-weight: 700; color: rgba(255,171,0,0.7); /* removed uppercase for amharic */ letter-spacing: 0.06em; }

.warning-content { display: flex; flex-direction: column; gap: 1.25rem; }
.warning-title { font-size: 1.35rem; font-weight: 800; color: var(--white); line-height: 1.35; }
body:not(.dark-mode) .warning-title { color: var(--light-text); }
.warning-text { font-size: 0.92rem; color: var(--gray-400); line-height: 1.75; }
body:not(.dark-mode) .warning-text { color: var(--light-muted); }

.warning-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 576px) { .warning-list { grid-template-columns: 1fr 1fr; } }

.warning-li-item {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 0.82rem; font-weight: 600; color: var(--gray-200);
    background: rgba(255,171,0,0.04);
    border: 1px solid rgba(255,171,0,0.1);
    padding: 0.6rem 0.9rem;
    border-radius: 0.65rem;
}

body:not(.dark-mode) .warning-li-item { color: var(--light-text); background: rgba(255,171,0,0.04); }

.warning-li-dot {
    width: 0.5rem; height: 0.5rem;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--amber-glow);
}

.warning-cta-btn {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, var(--amber) 0%, #ff8f00 100%);
    color: #1a0a00;
    text-decoration: none;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0.85rem 1.75rem;
    border-radius: 0.6rem;
    box-shadow: 0 4px 20px var(--amber-glow);
    transition: all var(--t1) var(--ease);
}

.warning-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--amber-glow); }

/* ══ SERVICES SECTION ═════════════════════════════════════════ */
.services-section {
    background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
}

body:not(.dark-mode) .services-section { background: #f8faff; }

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    background: rgba(0,102,255,0.04);
    border: 1px solid rgba(0,102,255,0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--t2) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--electric), var(--cyan));
    transform: scaleX(0);
    transition: transform var(--t2) var(--ease);
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(0,102,255,0.3);
    background: rgba(0,102,255,0.08);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,102,255,0.12);
}

.service-card:hover::before { transform: scaleX(1); }

body:not(.dark-mode) .service-card { background: white; border-color: rgba(0,102,255,0.08); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
body:not(.dark-mode) .service-card:hover { background: #f0f5ff; border-color: rgba(0,102,255,0.2); }

.service-icon-box {
    width: 3.25rem; height: 3.25rem;
    background: rgba(0,102,255,0.1);
    border: 1px solid rgba(0,102,255,0.2);
    color: var(--cyan);
    border-radius: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t2);
}

.service-card:hover .service-icon-box {
    background: rgba(0,102,255,0.2);
    border-color: rgba(0,102,255,0.45);
    box-shadow: 0 0 20px var(--electric-glow);
}

.service-icon-box svg { width: 1.5rem; height: 1.5rem; }

.service-card h3 { font-size: 1.05rem; font-weight: 800; }
.service-eng-title { font-size: 0.62rem; font-weight: 700; /* removed uppercase for amharic */ letter-spacing: 0.14em; color: var(--cyan); display: block; }
.service-desc { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; }
body:not(.dark-mode) .service-desc { color: var(--light-muted); }

/* ══ CLIENTS SECTION ══════════════════════════════════════════ */
.clients-wrapper {
    background: var(--blue-800);
    border-top: 1px solid rgba(0,102,255,0.08);
    border-bottom: 1px solid rgba(0,102,255,0.08);
}

body:not(.dark-mode) .clients-wrapper { background: white; border-color: rgba(0,102,255,0.06); }

.clients-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 576px) { .clients-container { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .clients-container { grid-template-columns: repeat(6, 1fr); } }

.client-logo-box {
    background: rgba(0,102,255,0.04);
    border: 1px solid rgba(0,102,255,0.08);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 800;
    color: var(--gray-500);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    transition: all var(--t2) var(--ease);
}

body:not(.dark-mode) .client-logo-box { background: #f8faff; border-color: #e0e8f8; color: #6688aa; }

.client-logo-box:hover {
    color: var(--electric-light);
    border-color: rgba(0,102,255,0.3);
    background: rgba(0,102,255,0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,102,255,0.08);
}

/* ══ TEAM SECTION ═════════════════════════════════════════════ */
.team-section-bg {
    background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
}

body:not(.dark-mode) .team-section-bg { background: #f0f5ff; }

.team-filter-bar {
    max-width: 1280px;
    margin: 0 auto 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(0,102,255,0.06);
    color: var(--gray-400);
    border: 1px solid rgba(0,102,255,0.12);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all var(--t1) var(--ease);
    font-family: var(--font);
}

.filter-btn:hover { color: var(--white); border-color: rgba(0,102,255,0.3); background: rgba(0,102,255,0.12); }
.filter-btn.active { background: var(--electric); color: white; border-color: var(--electric); box-shadow: 0 4px 15px var(--electric-glow); }

body:not(.dark-mode) .filter-btn { background: white; color: var(--light-muted); border-color: var(--light-border); }
body:not(.dark-mode) .filter-btn.active { background: var(--electric); color: white; border-color: var(--electric); }

/* ══ TEAM GRID — PASSPORT CARD LAYOUT ════════════════════════ */
.team-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 576px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 900px)  { .team-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .team-grid { grid-template-columns: repeat(5, 1fr); } }

/* Passport-style card */
.team-card {
    background: rgba(5, 18, 40, 0.75);
    border: 1px solid rgba(0,102,255,0.14);
    border-radius: 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Shiny top bar */
.team-card::before {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--electric), var(--cyan), var(--electric));
    background-size: 200%;
    animation: shimmer-bar 3s linear infinite;
}

@keyframes shimmer-bar {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

body:not(.dark-mode) .team-card {
    background: white;
    border-color: rgba(0,102,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0,200,255,0.35);
    box-shadow: 0 20px 50px rgba(0,102,255,0.18), 0 0 0 1px rgba(0,200,255,0.2);
    background: rgba(0,20,60,0.9);
}

body:not(.dark-mode) .team-card:hover {
    background: #f0f6ff;
    border-color: rgba(0,102,255,0.25);
}

/* ── Passport photo area ── */
.team-avatar-box {
    width: 100%;
    aspect-ratio: 3/4; /* Portrait passport ratio */
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-700) 0%, var(--blue-900) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    margin: 0;
    transition: none;
}

/* Passport photo grid overlay */
.team-avatar-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,102,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,255,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.team-card:hover .team-avatar-box {
    box-shadow: none;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Initials avatar (when no photo) */
.team-avatar-initials {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 30px rgba(0,102,255,0.4);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar-initials {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0,200,255,0.4);
}

/* ID badge label under photo */
.team-card-body {
    padding: 1rem 0.9rem 1.2rem;
    width: 100%;
}

/* Team card text */
.team-card h4 {
    font-size: clamp(0.82rem, 1.5vw, 0.96rem);
    font-weight: 800;
    margin-bottom: 0.15rem;
    color: var(--white);
    line-height: 1.3;
}

body:not(.dark-mode) .team-card h4 { color: var(--light-text); }

.team-eng-name {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gray-500);
    /* removed uppercase for amharic */
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.team-role {
    display: inline-block;
    font-size: 0.62rem;
    background: linear-gradient(135deg, rgba(0,102,255,0.15), rgba(0,200,255,0.1));
    color: var(--cyan);
    font-weight: 700;
    padding: 0.22rem 0.7rem;
    border-radius: 9999px;
    margin-bottom: 0.7rem;
    border: 1px solid rgba(0,200,255,0.25);
    letter-spacing: 0.03em;
    line-height: 1.5;
    max-width: 100%;
    word-break: break-word;
}

body:not(.dark-mode) .team-role {
    background: rgba(0,102,255,0.07);
    color: var(--electric);
    border-color: rgba(0,102,255,0.2);
}

.team-desc {
    font-size: clamp(0.68rem, 1.2vw, 0.78rem);
    color: var(--gray-400);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body:not(.dark-mode) .team-desc { color: var(--light-muted); }
body:not(.dark-mode) .team-desc { color: var(--light-muted); }

/* ══ CONTACT SECTION ══════════════════════════════════════════ */
.contact-section {
    background: var(--blue-800);
    border-top: 1px solid rgba(0,102,255,0.08);
}

body:not(.dark-mode) .contact-section { background: #ffffff; }

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) { .contact-grid { grid-template-columns: 0.42fr 0.58fr; } }

.contact-info-panel { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-title { font-size: 1.4rem; font-weight: 800; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-item {
    display: flex; gap: 1.1rem; align-items: flex-start;
}

.contact-info-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.85rem;
    background: rgba(0,102,255,0.08);
    border: 1px solid rgba(0,102,255,0.2);
    color: var(--cyan);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--t2);
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(0,102,255,0.16);
    box-shadow: 0 0 20px var(--electric-glow);
    transform: scale(1.05);
}

.contact-info-icon svg { width: 1.25rem; height: 1.25rem; }

.contact-info-text h5 { font-size: 0.68rem; font-weight: 800; color: var(--gray-400); /* removed uppercase for amharic */ letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contact-info-text p { font-size: 0.9rem; color: var(--white); font-weight: 600; }
body:not(.dark-mode) .contact-info-text p { color: var(--light-text); }

.contact-form-card {
    background: rgba(0,102,255,0.04);
    border: 1px solid rgba(0,102,255,0.12);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}

body:not(.dark-mode) .contact-form-card { background: #f0f5ff; border-color: rgba(0,102,255,0.1); }

.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    /* removed uppercase for amharic */
    letter-spacing: 0.09em;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(4,12,26,0.6);
    border: 1px solid rgba(0,102,255,0.15);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.88rem;
    padding: 0.85rem 1.1rem;
    border-radius: 0.7rem;
    outline: none;
    transition: all var(--t1) var(--ease);
}

body:not(.dark-mode) .form-control { background: white; border-color: rgba(0,102,255,0.15); color: var(--light-text); }

.form-control:focus {
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.12);
}

.form-control::placeholder { color: var(--gray-500); }

textarea.form-control { resize: none; min-height: 7.5rem; }

.form-submit-btn { width: 100%; border: none; cursor: pointer; }
.contact-success-msg { margin-top: 1rem; background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.25); color: var(--green); padding: 0.85rem; border-radius: 0.7rem; font-size: 0.82rem; font-weight: 700; text-align: center; }

/* ══ FOOTER ══════════════════════════════════════════════════ */
footer.footer-sec {
    background: #020509;
    color: var(--gray-300);
    padding: 5rem 2rem 2.5rem;
    border-top: 1px solid rgba(0,102,255,0.12);
    position: relative;
}

footer.footer-sec::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--electric), var(--cyan), transparent);
}

.footer-container { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 3.5rem; }

.footer-top { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.2fr 0.8fr 1fr; } }

.footer-brand-desc { color: var(--gray-500); font-size: 0.85rem; margin-top: 1rem; line-height: 1.75; }
.footer-title { font-size: 0.68rem; font-weight: 800; /* removed uppercase for amharic */ letter-spacing: 0.14em; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--gray-500); text-decoration: none; font-size: 0.85rem; transition: color var(--t1); }
.footer-links a:hover { color: var(--cyan); }

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

@media (min-width: 576px) { .footer-bottom { flex-direction: row; } }

.footer-copy { color: #2d3f5c; font-size: 0.75rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-social-link { color: var(--gray-500); font-size: 1rem; text-decoration: none; transition: color var(--t1); }
.footer-social-link:hover { color: var(--cyan); }

/* ══ ADMIN SECTION ════════════════════════════════════════════ */
.admin-sec { padding: 8rem 2rem 5rem; max-width: 1100px; margin: 0 auto; min-height: 90vh; }

.admin-login-card {
    max-width: 26rem; margin: 4rem auto;
    background: rgba(7,20,40,0.9);
    border: 1px solid rgba(0,102,255,0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg), var(--shadow-blue);
    text-align: center;
    backdrop-filter: blur(16px);
    color: var(--white);
}

body:not(.dark-mode) .admin-login-card { background: white; color: var(--light-text); box-shadow: var(--shadow-md); border-color: rgba(0,102,255,0.12); }

.admin-login-icon { font-size: 3rem; margin-bottom: 1rem; }
.admin-login-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.3rem; }
.admin-login-card p { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 1.75rem; }
.admin-login-hint { font-size: 0.7rem; color: var(--gray-500); margin-top: 1rem; }
.admin-login-error { background: rgba(255,61,87,0.08); border: 1px solid rgba(255,61,87,0.22); color: #ff6b81; padding: 0.85rem; border-radius: 0.7rem; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.25rem; text-align: left; }

.admin-dashboard-header {
    background: rgba(0,102,255,0.06);
    border: 1px solid rgba(0,102,255,0.15);
    border-radius: 1.25rem;
    padding: 1.75rem 2rem;
    display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between;
    margin-bottom: 2rem; color: var(--white);
}

body:not(.dark-mode) .admin-dashboard-header { background: rgba(0,102,255,0.04); color: var(--light-text); }
@media (min-width: 576px) { .admin-dashboard-header { flex-direction: row; } }

.admin-welcome-text h2 { font-size: 1.25rem; font-weight: 800; }
.admin-welcome-text p { font-size: 0.75rem; color: var(--gray-400); }

.admin-status-badge { background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.22); color: var(--green); font-size: 0.7rem; font-weight: 700; padding: 0.4rem 0.9rem; border-radius: 9999px; }

.admin-dashboard-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .admin-dashboard-grid { grid-template-columns: 1fr 1fr; } }

.admin-control-card {
    background: rgba(0,102,255,0.04);
    border: 1px solid rgba(0,102,255,0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 1.25rem;
}

body:not(.dark-mode) .admin-control-card { background: white; border-color: rgba(0,102,255,0.08); }

.admin-control-title-row { display: flex; align-items: center; gap: 0.75rem; }
.admin-control-icon { font-size: 1.75rem; }
.admin-control-title-row h3 { font-size: 1.1rem; font-weight: 800; }
.admin-control-title-row p { font-size: 0.62rem; color: var(--gray-400); /* removed uppercase for amharic */ letter-spacing: 0.06em; }
.admin-control-desc { font-size: 0.82rem; color: var(--gray-400); }
body:not(.dark-mode) .admin-control-desc { color: var(--light-muted); }

.admin-upload-box {
    background: rgba(4,12,26,0.5);
    border: 1px dashed rgba(0,102,255,0.25);
    border-radius: 0.85rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--t1);
}

body:not(.dark-mode) .admin-upload-box { background: #f8faff; border-color: rgba(0,102,255,0.18); }
.admin-upload-box:hover { border-color: var(--electric); background: rgba(0,102,255,0.04); }
.admin-upload-input { display: none; }
.admin-upload-label-text { font-size: 0.78rem; font-weight: 700; color: var(--cyan); display: block; margin-bottom: 0.25rem; }
.admin-upload-hint { font-size: 0.65rem; color: var(--gray-500); }

.admin-select-picker select {
    width: 100%;
    background: rgba(4,12,26,0.5);
    border: 1px solid rgba(0,102,255,0.15);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    outline: none;
    cursor: pointer;
}

body:not(.dark-mode) .admin-select-picker select { background: #f8faff; border-color: rgba(0,102,255,0.15); color: var(--light-text); }

.admin-active-status-bar {
    background: rgba(4,12,26,0.4);
    border: 1px solid rgba(0,102,255,0.1);
    border-radius: 0.7rem;
    padding: 0.8rem 1rem;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.75rem;
}

body:not(.dark-mode) .admin-active-status-bar { background: #f8faff; border-color: rgba(0,102,255,0.1); }
.admin-status-indicator { color: var(--green); font-weight: 700; }
.admin-status-link { color: var(--cyan); text-decoration: underline; font-weight: 700; }

.admin-monitor-panel {
    background: rgba(0,102,255,0.04);
    border: 1px solid rgba(0,102,255,0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
}

body:not(.dark-mode) .admin-monitor-panel { background: white; border-color: rgba(0,102,255,0.08); }
.admin-monitor-title { font-size: 1rem; font-weight: 800; margin-bottom: 1.5rem; }
.admin-monitor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (min-width: 576px) { .admin-monitor-grid { grid-template-columns: repeat(5, 1fr); } }

.admin-monitor-card {
    background: rgba(4,12,26,0.5);
    border: 1px solid rgba(0,102,255,0.08);
    border-radius: 0.85rem;
    padding: 1rem 0.5rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    transition: all var(--t1);
}

body:not(.dark-mode) .admin-monitor-card { background: #f8faff; border-color: var(--light-border); }
.admin-monitor-card.has-photo { border-color: rgba(0,230,118,0.3); background: rgba(0,230,118,0.03); }
.admin-monitor-name { font-size: 0.6rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }

.admin-monitor-thumb {
    width: 2.25rem; height: 2.25rem;
    border-radius: 0.5rem;
    background: rgba(0,102,255,0.08);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0,102,255,0.12);
    font-size: 0.75rem;
}

.admin-monitor-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-monitor-status { font-size: 0.52rem; font-weight: 800; /* removed uppercase for amharic */ letter-spacing: 0.06em; color: var(--gray-500); }
.admin-monitor-card.has-photo .admin-monitor-status { color: var(--green); }

.admin-alert-toast { background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.22); color: var(--green); font-size: 0.82rem; font-weight: 700; padding: 0.85rem 1.25rem; border-radius: 0.7rem; margin-bottom: 1.5rem; text-align: center; }
.admin-alert-toast.error { background: rgba(255,61,87,0.08); border-color: rgba(255,61,87,0.22); color: #ff6b81; }

/* ══ ADMIN TABS ═══════════════════════════════════════════════ */
.admin-tab-nav {
    display: flex; gap: 0; border-bottom: 1px solid rgba(0,102,255,0.12); margin-bottom: 2rem; overflow-x: auto;
}

body:not(.dark-mode) .admin-tab-nav { border-color: var(--light-border); }

.admin-tab-btn {
    background: none; border: none; padding: 0.7rem 1.1rem; font-size: 0.8rem; font-weight: 700; color: var(--gray-400); cursor: pointer; position: relative; transition: color var(--t1); white-space: nowrap; font-family: var(--font);
}

.admin-tab-btn:hover { color: var(--cyan); }
.admin-tab-btn.active { color: var(--cyan); }

.admin-tab-btn.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px;
    background: linear-gradient(to right, var(--electric), var(--cyan)); border-radius: 9999px;
}

.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }

/* ══ CRUD TABLE ═══════════════════════════════════════════════ */
.crud-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; gap: 1rem; flex-wrap: wrap; }

.crud-table-wrapper {
    background: rgba(0,102,255,0.03);
    border: 1px solid rgba(0,102,255,0.1);
    border-radius: 1rem;
    overflow-x: auto;
    margin-bottom: 2rem;
}

body:not(.dark-mode) .crud-table-wrapper { background: white; border-color: var(--light-border); box-shadow: var(--shadow-sm); }

.crud-table { width: 100%; border-collapse: collapse; text-align: left; }
.crud-table th, .crud-table td { padding: 0.9rem 1.25rem; font-size: 0.8rem; border-bottom: 1px solid rgba(0,102,255,0.06); }
body:not(.dark-mode) .crud-table th, body:not(.dark-mode) .crud-table td { border-color: var(--light-border); }

.crud-table th { background: rgba(0,102,255,0.06); font-weight: 800; color: var(--gray-400); /* removed uppercase for amharic */ letter-spacing: 0.06em; }
body:not(.dark-mode) .crud-table th { background: #f8faff; color: var(--light-muted); }

.crud-table tr:last-child td { border-bottom: none; }
.crud-table tr:hover td { background: rgba(0,102,255,0.04); }

.btn-action-edit { background: rgba(0,102,255,0.08); color: var(--electric-light); border: 1px solid rgba(0,102,255,0.2); padding: 0.32rem 0.75rem; border-radius: 0.45rem; font-size: 0.74rem; font-weight: 700; cursor: pointer; transition: all var(--t1); font-family: var(--font); }
.btn-action-edit:hover { background: rgba(0,102,255,0.18); }

.btn-action-delete { background: rgba(255,61,87,0.08); color: #ff6b81; border: 1px solid rgba(255,61,87,0.2); padding: 0.32rem 0.75rem; border-radius: 0.45rem; font-size: 0.74rem; font-weight: 700; cursor: pointer; transition: all var(--t1); font-family: var(--font); }
.btn-action-delete:hover { background: rgba(255,61,87,0.18); }

.btn-add-member { background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%); color: white; border: none; padding: 0.65rem 1.3rem; border-radius: 0.6rem; font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: all var(--t1); font-family: var(--font); box-shadow: var(--shadow-blue); }
.btn-add-member:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--electric-glow); }

.crud-form-card { background: rgba(0,102,255,0.04); border: 1px solid rgba(0,102,255,0.15); border-radius: 1.25rem; padding: 2rem; }
body:not(.dark-mode) .crud-form-card { background: #f8faff; border-color: rgba(0,102,255,0.1); }

.crud-form-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(0,102,255,0.1); }
body:not(.dark-mode) .crud-form-title { border-color: var(--light-border); }

.crud-lang-fieldset { border: 1px solid rgba(0,102,255,0.18); border-radius: 0.9rem; padding: 1.25rem; margin-bottom: 1.5rem; }
body:not(.dark-mode) .crud-lang-fieldset { border-color: rgba(0,102,255,0.12); }

.crud-lang-legend { font-size: 0.7rem; font-weight: 800; /* removed uppercase for amharic */ letter-spacing: 0.08em; color: var(--cyan); padding: 0 0.5rem; }

/* ══ HRM & SETTINGS ══════════════════════════════════════════ */
.hrm-section-card { background: rgba(0,102,255,0.04); border: 1px solid rgba(0,102,255,0.1); border-radius: 1.25rem; padding: 1.75rem; margin-bottom: 2rem; }
body:not(.dark-mode) .hrm-section-card { background: white; border-color: rgba(0,102,255,0.08); box-shadow: var(--shadow-sm); }

.hrm-section-title { display: flex; align-items: center; gap: 0.75rem; font-size: 1.05rem; font-weight: 800; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(0,102,255,0.08); }
body:not(.dark-mode) .hrm-section-title { border-color: var(--light-border); }

.settings-card { background: rgba(0,102,255,0.04); border: 1px solid rgba(0,102,255,0.12); border-radius: 1.25rem; padding: 1.75rem; margin-bottom: 1.5rem; }
body:not(.dark-mode) .settings-card { background: white; border-color: rgba(0,102,255,0.08); box-shadow: var(--shadow-sm); }

/* ══ CHATBOT ══════════════════════════════════════════════════ */
.chatbot-launcher {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 3.75rem; height: 3.75rem;
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%);
    border-radius: 50%; border: none; cursor: pointer; z-index: 200;
    box-shadow: 0 8px 30px var(--electric-glow);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t2) var(--ease);
}

.chatbot-launcher:hover { transform: scale(1.1); box-shadow: 0 12px 40px var(--electric-glow), 0 0 0 8px rgba(0,102,255,0.1); }
.chatbot-launcher svg { width: 1.75rem; height: 1.75rem; color: white; }

.chatbot-window {
    position: fixed;
    bottom: 6.5rem; right: 2rem;
    width: min(92vw, 22rem); height: 32rem;
    background: rgba(7,20,40,0.97);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0,102,255,0.2);
    border-radius: 1.5rem;
    overflow: hidden; z-index: 200;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-lg), var(--shadow-blue);
    animation: fade-up 0.25s var(--ease) both;
}

body:not(.dark-mode) .chatbot-window { background: rgba(240,245,255,0.98); border-color: rgba(0,102,255,0.15); }

.chatbot-header {
    background: linear-gradient(135deg, rgba(0,102,255,0.2) 0%, rgba(0,200,255,0.1) 100%);
    border-bottom: 1px solid rgba(0,102,255,0.18);
    padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
}

.chatbot-header-avatar { width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg, var(--electric), var(--cyan)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.chatbot-header-info h4 { font-size: 0.9rem; font-weight: 800; color: var(--white); }
body:not(.dark-mode) .chatbot-header-info h4 { color: var(--light-text); }
.chatbot-header-info p { font-size: 0.65rem; color: var(--gray-400); }

.chatbot-online-dot { width: 0.5rem; height: 0.5rem; background: var(--green); border-radius: 50%; margin-left: auto; box-shadow: 0 0 8px var(--green-glow); animation: pulse-ring 2s ease-in-out infinite; flex-shrink: 0; }

.chatbot-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.85rem; scroll-behavior: smooth; }
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(0,102,255,0.3); border-radius: 9999px; }

.chatbot-msg-bubble {
    max-width: 88%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.82rem;
    line-height: 1.65;
    animation: fade-up 0.2s var(--ease) both;
}

.chatbot-msg-bubble.bot { background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.18); color: var(--white); align-self: flex-start; border-bottom-left-radius: 0.2rem; }
body:not(.dark-mode) .chatbot-msg-bubble.bot { background: rgba(0,102,255,0.07); color: var(--light-text); }

.chatbot-msg-bubble.user { background: linear-gradient(135deg, var(--electric) 0%, #004dd9 100%); color: white; align-self: flex-end; border-bottom-right-radius: 0.2rem; }

.chatbot-typing-bubble { background: rgba(0,102,255,0.1); border: 1px solid rgba(0,102,255,0.18); padding: 0.85rem 1.1rem; border-radius: 1rem; align-self: flex-start; display: flex; gap: 0.35rem; align-items: center; border-bottom-left-radius: 0.2rem; }

.chatbot-typing-dot { width: 0.45rem; height: 0.45rem; background: var(--cyan); border-radius: 50%; animation: typing-dot 1.2s ease-in-out infinite; }
.chatbot-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing-dot:nth-child(3) { animation-delay: 0.4s; }

.chatbot-suggestions { padding: 0 1rem 0.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }

.chatbot-suggest-btn {
    background: rgba(0,102,255,0.08); border: 1px solid rgba(0,102,255,0.2); color: var(--cyan);
    font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 9999px;
    cursor: pointer; transition: all var(--t1); font-family: var(--font);
}

.chatbot-suggest-btn:hover { background: rgba(0,102,255,0.18); border-color: rgba(0,102,255,0.4); }

.chatbot-input-box { padding: 0.75rem 1rem; border-top: 1px solid rgba(0,102,255,0.1); display: flex; gap: 0.5rem; align-items: center; }
body:not(.dark-mode) .chatbot-input-box { border-color: var(--light-border); }

#chatbot-user-input {
    flex: 1;
    background: rgba(4,12,26,0.6); border: 1px solid rgba(0,102,255,0.15); color: var(--white);
    font-family: var(--font); font-size: 0.82rem; padding: 0.6rem 0.9rem; border-radius: 0.65rem; outline: none;
    transition: border-color var(--t1);
}

body:not(.dark-mode) #chatbot-user-input { background: white; border-color: rgba(0,102,255,0.15); color: var(--light-text); }
#chatbot-user-input:focus { border-color: var(--electric); }
#chatbot-user-input::placeholder { color: var(--gray-500); }

.chatbot-send-btn {
    width: 2.4rem; height: 2.4rem;
    background: linear-gradient(135deg, var(--electric) 0%, var(--cyan) 100%);
    border: none; border-radius: 0.65rem; color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t1); flex-shrink: 0;
}

.chatbot-send-btn:hover { transform: scale(1.08); box-shadow: var(--shadow-blue); }
.chatbot-send-btn svg { width: 1rem; height: 1rem; }

/* ══ CHATBOT CONTAINER STATES ════════════════════════════════ */
#stc-chatbot-container .chatbot-window { display: none; }
#stc-chatbot-container.active .chatbot-window { display: flex; }

/* ══ UTILITY ══════════════════════════════════════════════════ */
.hidden { display: none !important; }

/* ══ SCROLLBAR ════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(4,12,26,0.6); }
::-webkit-scrollbar-thumb { background: rgba(0,102,255,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,102,255,0.6); }

/* ══ INNOVATION BANNER ════════════════════════════════════════ */
.innovation-banner {
    background: linear-gradient(135deg, rgba(0,102,255,0.12) 0%, rgba(0,200,255,0.06) 100%);
    border-top: 1px solid rgba(0,102,255,0.15);
    border-bottom: 1px solid rgba(0,102,255,0.15);
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
}

body:not(.dark-mode) .innovation-banner { background: rgba(0,102,255,0.04); }

.banner-container {
    max-width: 1280px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 2rem; align-items: center; justify-content: space-between;
}

@media (min-width: 768px) { .banner-container { flex-direction: row; } }

.banner-content { text-align: center; }
@media (min-width: 768px) { .banner-content { text-align: left; } }

.banner-pill { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; font-weight: 800; /* removed uppercase for amharic */ letter-spacing: 0.12em; background: rgba(0,200,255,0.1); border: 1px solid rgba(0,200,255,0.25); color: var(--cyan); padding: 0.3rem 0.85rem; border-radius: 9999px; margin-bottom: 0.75rem; }

.banner-dot-ping { width: 0.4rem; height: 0.4rem; background: var(--cyan); border-radius: 50%; animation: pulse-ring 1.2s ease-in-out infinite; }

.banner-heading { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.35rem; }
.banner-desc { font-size: 0.92rem; color: var(--gray-400); }
body:not(.dark-mode) .banner-desc { color: var(--light-muted); }

/* ══════════════════════════════════════════════════════════════
   NEW FEATURES — Preloader, Testimonials, Portfolio, FAQ,
   Back-to-Top, WhatsApp, Stats Counter
   ══════════════════════════════════════════════════════════════ */

/* ── PRELOADER ─────────────────────────────────────────────── */
#stc-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #020c1b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#stc-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.preloader-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.3);
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255,255,255,0.08);
    border-top-color: #f97316;
    border-right-color: #0066ff;
    border-radius: 50%;
    animation: preloaderSpin 0.8s linear infinite;
}
.preloader-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.15em;
    /* removed uppercase for amharic */
}
@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(249,115,22,0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 50px rgba(249,115,22,0.5); }
}

/* ── TESTIMONIALS CAROUSEL ─────────────────────────────────── */
.testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: rgba(5, 18, 40, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(251, 191, 36, 0.12);
    border-radius: 1.1rem;
    padding: 1.75rem;
    transition: all 0.35s ease;
}
.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.08);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonial-dot.active {
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251,191,36,0.4);
    transform: scale(1.2);
}

/* ── PORTFOLIO / GALLERY CARDS ──────────────────────────────── */
.portfolio-card {
    background: rgba(5, 18, 40, 0.8);
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 1.1rem;
    overflow: hidden;
    transition: all 0.35s ease;
}
.portfolio-card:hover {
    border-color: rgba(34, 211, 238, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(34, 211, 238, 0.08);
}
.portfolio-card-visual {
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 140px;
}
.portfolio-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    /* removed uppercase for amharic */
    letter-spacing: 0.05em;
}
.portfolio-card-info {
    padding: 1.5rem 1.75rem;
}
.portfolio-card-info h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.55rem;
}
.portfolio-card-info p {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.portfolio-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
}

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: rgba(5, 18, 40, 0.7);
    border: 1px solid rgba(167, 139, 250, 0.1);
    border-radius: 0.85rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(167, 139, 250, 0.3);
}
.faq-item.active {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(5, 18, 40, 0.9);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.35rem;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
    gap: 1rem;
}
.faq-question:hover { color: #c084fc; }
.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #a78bfa;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.35rem;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.35rem 1.25rem;
}
.faq-answer p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.8;
}

/* ── BACK TO TOP BUTTON ──────────────────────────────────── */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff, #00c8ff);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 9998;
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.5);
}

/* ── WHATSAPP FLOATING BUTTON ──────────────────────────────── */
.whatsapp-float-btn {
    position: fixed;
    bottom: 5.5rem;
    left: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.35s ease;
    z-index: 9998;
    text-decoration: none;
    animation: whatsappBounce 2s ease-in-out infinite;
}
.whatsapp-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}
@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ── STATS COUNTER ANIMATION ───────────────────────────────── */
.stat-number {
    transition: all 0.3s ease;
}
.stat-number.counting {
    color: #f97316;
}

/* ══ MOBILE RESPONSIVE ════════════════════════════════════════ */
@media (max-width: 768px) {
    nav.nav-links { display: none; }
    .md-hide { display: block; }
    .sec-pad { padding: 4rem 1.25rem; }
    .sec-pad-sm { padding: 3rem 1.25rem; }
    .hero-sec { padding: 6rem 1.25rem 4rem; min-height: auto; }
    .terminal-card { max-width: 100%; }
    .chatbot-window { right: 1rem; bottom: 5.5rem; width: calc(100vw - 2rem); }
    .chatbot-launcher { bottom: 1.5rem; right: 1.5rem; }
    .hero-title { font-size: 2.2rem; }
    .container { padding: 0 1.25rem; }
    .admin-sec { padding: 6rem 1.25rem 4rem; }

    /* New features mobile */
    .testimonial-card { flex: 0 0 85vw; }
    .back-to-top-btn { width: 42px; height: 42px; bottom: 1.5rem; left: 1.5rem; }
    .whatsapp-float-btn { width: 46px; height: 46px; bottom: 5rem; left: 1.5rem; }
    .portfolio-card-visual { min-height: 100px; padding: 1.5rem; }
    .faq-question { font-size: 0.78rem; padding: 1rem; }
}

@media (min-width: 769px) {
    .mobile-nav-toggle { display: none !important; }
    .md-hide { display: none !important; }
}


/* Premium Portfolio Styles */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.filter-btn {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.filter-btn:hover {
    background: rgba(51, 65, 85, 0.8);
    color: #fff;
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}
.filter-btn.active {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
}
.portfolio-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(14, 165, 233, 0.1);
}
.portfolio-item:hover::before {
    transform: translateX(100%);
}
.portfolio-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05);
}
.portfolio-content h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
}
.portfolio-content p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}
.portfolio-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: #38bdf8;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    /* removed uppercase for amharic */
    border: 1px solid rgba(14, 165, 233, 0.2);
}
