
:root {
  --neon-blue: #0ff0fc;
  --neon-pink: #ff2a6d;
  --neon-purple: #d300c5;
  --neon-green: #39ff14;
  --dark-bg: #0a0a12;
  --darker-bg: #050508;
  --grid-color: rgba(15, 240, 252, 0.05);
  --text-color: #e0e0e0;
  --terminal-text: #00ff41;
  --error-red: #ff0038;
  --warning-yellow: #f5d90a;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.glitch, .glitch-text {
  position: relative;
}

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

.glitch::before, .glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-pink);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after, .glitch-text::after {
  left: -2px;
  text-shadow: -2px 0 var(--neon-blue);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(31px, 9999px, 94px, 0); }
  10% { clip: rect(112px, 9999px, 76px, 0); }
  20% { clip: rect(85px, 9999px, 77px, 0); }
  30% { clip: rect(27px, 9999px, 97px, 0); }
  40% { clip: rect(64px, 9999px, 98px, 0); }
  50% { clip: rect(61px, 9999px, 85px, 0); }
  60% { clip: rect(99px, 9999px, 114px, 0); }
  70% { clip: rect(34px, 9999px, 115px, 0); }
  80% { clip: rect(98px, 9999px, 129px, 0); }
  90% { clip: rect(43px, 9999px, 96px, 0); }
  100% { clip: rect(82px, 9999px, 64px, 0); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(65px, 9999px, 119px, 0); }
  10% { clip: rect(25px, 9999px, 145px, 0); }
  20% { clip: rect(129px, 9999px, 102px, 0); }
  30% { clip: rect(79px, 9999px, 85px, 0); }
  40% { clip: rect(66px, 9999px, 134px, 0); }
  50% { clip: rect(24px, 9999px, 108px, 0); }
  60% { clip: rect(82px, 9999px, 148px, 0); }
  70% { clip: rect(91px, 9999px, 143px, 0); }
  80% { clip: rect(6px, 9999px, 67px, 0); }
  90% { clip: rect(37px, 9999px, 128px, 0); }
  100% { clip: rect(82px, 9999px, 104px, 0); }
}


.terminal-text {
  font-family: 'Courier New', monospace;
  color: var(--terminal-text);
  text-shadow: 0 0 5px var(--neon-green);
}

.blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}


.cyber-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--darker-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.holographic-loader {
  position: relative;
  width: 80%;
  max-width: 600px;
  padding: 2rem;
  border: 1px solid var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-blue);
  background-color: rgba(10, 10, 18, 0.8);
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, 
    transparent, 
    var(--neon-blue), 
    transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

.terminal-text {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(15, 240, 252, 0.2);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
  animation: progress-load 3s ease-out forwards;
}

@keyframes progress-load {
  0% { width: 0; }
  100% { width: 100%; }
}


.cyber-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 18, 0.9);
  border-bottom: 1px solid var(--neon-blue);
  box-shadow: 0 0 20px rgba(15, 240, 252, 0.2);
}

.cyber-header-top {
  background-color: var(--darker-bg);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neon-purple);
}

.cyber-alert {
  text-align: center;
  color: var(--error-red);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.alert-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

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

.cyber-logo img {
  height: 50px;
  filter: drop-shadow(0 0 5px var(--neon-blue));
   margin-right: auto; 
}

.neon-logo {
  transition: all 0.3s ease;
}

.neon-logo:hover {
  filter: drop-shadow(0 0 10px var(--neon-blue)) brightness(1.2);
}

.cyber-menu {
  display: flex;
  align-items: center;
}

.main-menu__wrapper-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.cyber-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-line {
  height: 3px;
  width: 100%;
  background-color: var(--neon-blue);
  transition: all 0.3s ease;
}

.cyber-menu-list {
  display: flex;
  list-style: none;
    margin: 0; 
  padding: 0; 
}

.cyber-menu-item {
  margin-left: 2rem;
  position: relative;
}

.neon-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.neon-link:hover {
  color: var(--neon-blue);
}

.link-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-blue);
  transition: width 0.3s ease;
}

.neon-link:hover .link-hover {
  width: 100%;
}

.cyber-cta .cyber-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cyber-button:hover {
  background-color: rgba(15, 240, 252, 0.1);
  box-shadow: 0 0 10px var(--neon-blue);
}

.button-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    var(--neon-pink) 45%,
    var(--neon-pink) 55%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cyber-button:hover .button-glitch {
  opacity: 0.3;
}

.button-pulse {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--neon-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.cyber-button:hover .button-pulse {
  transform: scaleX(1);
}


.cyber-main {
  margin-top: 120px;
  padding: 2rem;
}

.cyber-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 4rem;
}

.cyber-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 60%, var(--darker-bg) 100%);
  z-index: -1;
}

.cyber-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(15, 240, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 240, 252, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
}

.cyber-hero-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, 
      transparent 45%, 
      rgba(255, 42, 109, 0.1) 45%, 
      rgba(255, 42, 109, 0.1) 55%, 
      transparent 55%),
    linear-gradient(-45deg, 
      transparent 45%, 
      rgba(15, 240, 252, 0.1) 45%, 
      rgba(15, 240, 252, 0.1) 55%, 
      transparent 55%);
  z-index: -1;
  opacity: 0.5;
}

.cyber-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

.cyber-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cyber-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.cyber-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--neon-blue);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--neon-blue), transparent);
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0% { height: 50px; opacity: 1; }
  50% { height: 70px; opacity: 0.5; }
  100% { height: 50px; opacity: 1; }
}


.cyber-departments {
  padding: 4rem 0;
  position: relative;
}

.cyber-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cyber-section-title {
  font-size: 2.5rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-line {
  height: 2px;
  width: 100px;
  background: linear-gradient(to right, transparent, var(--neon-blue), transparent);
  margin: 0.5rem auto;
}

.section-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-green);
}

.cyber-departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.cyber-department-card {
  position: relative;
  border: 1px solid var(--neon-blue);
  padding: 1.5rem;
  background-color: rgba(10, 10, 18, 0.7);
  transition: all 0.3s ease;
  min-height: 250px;
  overflow: hidden;
}

.cyber-department-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(15, 240, 252, 0.3);
}

.card-hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(15, 240, 252, 0.1) 45%,
    rgba(15, 240, 252, 0.1) 55%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cyber-department-card:hover .card-hologram {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.card-data {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  color: var(--neon-green);
}


.cyber-leadership {
  padding: 4rem 0;
  background-color: rgba(5, 5, 8, 0.5);
}

.cyber-profiles {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cyber-profile-card {
  position: relative;
  display: flex;
  background-color: rgba(10, 10, 18, 0.8);
  border: 1px solid var(--neon-blue);
  margin-bottom: 2rem;
  overflow: hidden;
}

.director {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.cyber-profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.profile-hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 42, 109, 0.1) 45%,
    rgba(255, 42, 109, 0.1) 55%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cyber-profile-card:hover .profile-hologram {
  opacity: 0.5;
}

.profile-image {
  position: relative;
  width: 150px;
  height: 150px;
  border: 2px solid var(--neon-blue);
  margin-bottom: 1rem;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-stamp {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--neon-pink);
  color: var(--darker-bg);
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: bold;
}

.profile-info {
  padding: 1rem;
  flex-grow: 1;
}

.profile-name {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.profile-title {
  font-size: 1rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.profile-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.value {
  color: var(--neon-green);
}

.active {
  color: var(--neon-green);
}

.cyber-link {
  color: var(--neon-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cyber-link:hover {
  color: var(--neon-pink);
  text-decoration: underline;
}


.cyber-join {
  padding: 4rem 0;
  position: relative;
}

.cyber-steps {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cyber-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--neon-blue);
  margin-right: 1.5rem;
  min-width: 50px;
  text-align: center;
}

.step-content {
  position: relative;
  padding-bottom: 1rem;
  border-left: 1px solid var(--neon-blue);
  padding-left: 1.5rem;
  flex-grow: 1;
}

.step-title {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.step-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-line {
  position: absolute;
  bottom: 0;
  left: -1px;
  width: 1px;
  height: 0;
  background-color: var(--neon-blue);
  animation: step-line 1s forwards;
  animation-delay: 0.5s;
}

@keyframes step-line {
  to { height: 100%; }
}

.cyber-warning {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 1.5rem;
  border: 1px solid var(--error-red);
  background-color: rgba(255, 0, 56, 0.1);
  display: flex;
  align-items: center;
}

.warning-icon {
  font-size: 2rem;
  color: var(--error-red);
  margin-right: 1rem;
}


.cyber-stats {
  padding: 4rem 0;
  background-color: rgba(5, 5, 8, 0.7);
}

.cyber-terminal {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--neon-blue);
  background-color: var(--darker-bg);
  font-family: 'Courier New', monospace;
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(15, 240, 252, 0.1);
  border-bottom: 1px solid var(--neon-blue);
}

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

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

.red { background-color: var(--error-red); }
.yellow { background-color: var(--warning-yellow); }
.green { background-color: var(--neon-green); }

.terminal-title {
  flex-grow: 1;
  text-align: center;
  color: var(--neon-blue);
  font-weight: bold;
}

.terminal-body {
  padding: 1.5rem;
}

.terminal-line {
  margin-bottom: 1rem;
}

.prompt {
  color: var(--neon-green);
  margin-right: 0.5rem;
}

.command {
  color: var(--neon-blue);
}

.terminal-output {
  margin-top: 1rem;
}

.output-line {
  margin-bottom: 0.5rem;
  color: var(--terminal-text);
}

.cyber-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cyber-stat {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(15, 240, 252, 0.3);
  background-color: rgba(15, 240, 252, 0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.stat-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(15, 240, 252, 0.2);
}

.bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
}


.cyber-footer {
  position: relative;
  padding: 3rem 2rem;
  background-color: var(--darker-bg);
  border-top: 1px solid var(--neon-blue);
  text-align: center;
}

.cyber-footer-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(15, 240, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 240, 252, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.cyber-footer-content {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 5px var(--neon-blue));
}

.footer-warning {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1rem;
  border: 1px solid var(--error-red);
  color: var(--error-red);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--neon-blue);
}

.year {
  color: var(--neon-green);
}

.cyber-security-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--neon-green);
  background-color: rgba(57, 255, 20, 0.1);
}

.badge-icon {
  font-size: 1.5rem;
  color: var(--neon-green);
  margin-right: 0.5rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.cyber-terminal-section {
  padding: 2rem;
  background-color: rgba(10, 10, 18, 0.8);
  border: 1px solid var(--neon-blue);
  margin: 2rem auto;
  max-width: 1400px;
}

.cyber-search {
  margin-bottom: 2rem;
}

.search-input {
  display: flex;
  align-items: center;
  background-color: rgba(15, 240, 252, 0.1);
  border: 1px solid var(--neon-blue);
  padding: 0.5rem 1rem;
}

.search-input i {
  color: var(--neon-blue);
  margin-right: 1rem;
}

.search-input input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: var(--neon-green);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  outline: none;
}

.search-input input::placeholder {
  color: rgba(15, 240, 252, 0.5);
}

.cyber-table-container {
  overflow-x: auto;
}

.cyber-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 2rem;
}

.cyber-table th {
  background-color: rgba(15, 240, 252, 0.2);
  color: var(--neon-blue);
  padding: 1rem;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.cyber-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(15, 240, 252, 0.1);
  color: var(--text-color);
  position: relative;
}

.cyber-table-row:hover {
  background-color: rgba(15, 240, 252, 0.05);
}

.cyber-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
}

.cyber-status.active {
  background-color: rgba(57, 255, 20, 0.1);
  color: var(--neon-green);
}

.cyber-status.warning {
  background-color: rgba(245, 217, 10, 0.1);
  color: var(--warning-yellow);
}

.cyber-status.expired {
  background-color: rgba(255, 0, 56, 0.1);
  color: var(--error-red);
}

.cyber-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cyber-pagination-info {
  color: var(--neon-blue);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.cyber-message {
  text-align: center;
  padding: 2rem;
  color: var(--neon-blue);
  font-size: 1.2rem;
}

.cyber-message i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}


@media (max-width: 992px) {
  .cyber-menu-toggle {
    display: flex;
  }
  
  .cyber-menu-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--darker-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    border-left: 1px solid var(--neon-blue);
    z-index: 1000;
  }
  
  .cyber-menu-list.active {
    right: 0;
  }
  
  .cyber-menu-item {
    margin: 1rem 0;
  }
  
  .cyber-title {
    font-size: 2.5rem;
  }
  
  .cyber-hero {
    height: auto;
    padding: 6rem 0;
  }
}

@media (max-width: 768px) {
  .cyber-nav {
    padding: 1rem;
  }
  
  .cyber-title {
    font-size: 2rem;
  }
  
  .cyber-section-title {
    font-size: 1.8rem;
  }
  
  .cyber-profile-card {
    flex-direction: column;
  }
  
  .profile-image {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 576px) {
  .cyber-title {
    font-size: 1.8rem;
  }
  
  .cyber-departments-grid {
    grid-template-columns: 1fr;
  }
  
  .cyber-steps {
    padding: 0 1rem;
  }
  
  .cyber-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .step-content {
    border-left: none;
    border-top: 1px solid var(--neon-blue);
    padding-left: 0;
    padding-top: 1rem;
  }
  
  .step-line {
    display: none;
  }
  
  .cyber-warning {
    flex-direction: column;
    text-align: center;
  }
  
  .warning-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}


.fa-brain-circuit:before {
  content: "🧠";
}
.fa-eye-target:before {
  content: "👁️";
}
.fa-biohazard:before {
  content: "☣️";
}
.fa-skull-cowboy:before {
  content: "💀";
}
.fa-drone:before {
  content: "🚁";
}
.fa-ghost:before {
  content: "👻";
}
.fa-shield-halved:before {
  content: "🛡️"
}

.fa-user-secret:before {
  content: "🕵️";
}

.fa-exclamation-triangle::before {
  content: "\f071"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-shield-alt::before {
  content: "\f3ed";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}