/* 0xrmd Portfolio Terminal Interface Styles */
/* Color scheme: #00bf63 (green), #ff3131 (red), #ffffff (white) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #00bf63;
  --bg: #000;
  --text: #ffffff;
  --accent: #1a1a1a;
  --danger: #ff3131;
  --font: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font);
  background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
  color: var(--text);
  padding: 4rem 2rem;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Animated background particles */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 49, 49, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 191, 99, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  animation: float 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(1deg);
  }

  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

/* Matrix rain background */
.matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  opacity: 0.1;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(5) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(6) {
  animation-delay: 0.5s;
}

.fade-in:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  background: linear-gradient(145deg, #0a0a0a 0%, #111 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 191, 99, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 191, 99, 0.4);
  animation: containerGlow 4s ease-in-out infinite;
  font-family: 'Courier New', monospace;
}

.terminal-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border-radius: 15px 15px 0 0;
  margin: -2rem -2rem 2rem -2rem;
  border-bottom: 2px solid rgba(0, 191, 99, 0.3);
}

.terminal-controls {
  display: flex;
  gap: 8px;
  margin-right: auto;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn.close {
  background: #ff3131;
}

.control-btn.minimize {
  background: #ffaa00;
}

.control-btn.maximize {
  background: #00bf63;
}

.control-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px currentColor;
}

.terminal-title {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0 auto;
}

.terminal-prompt {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  animation: blink 1s step-end infinite;
}

.command-line {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: 'Courier New', monospace;
}

.prompt-text {
  color: var(--primary);
  margin-right: 0.5rem;
}

.command-input {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  outline: none;
  flex: 1;
  caret-color: var(--primary);
  position: relative;
}

.command-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.command-input:focus {
  box-shadow: 0 0 10px rgba(0, 191, 99, 0.3);
  border-radius: 4px;
  padding: 0.2rem;
}

.terminal-content {
  min-height: 400px;
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 191, 99, 0.2);
  margin-bottom: 1rem;
  position: relative;
}

.output-line {
  margin-bottom: 0.8rem;
  font-family: 'Courier New', monospace;
  animation: typewriter 0.5s ease-out;
  line-height: 1.4;
}

.output-line:hover {
  background: rgba(0, 191, 99, 0.1);
  padding: 0.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

@keyframes typewriter {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 100%;
    opacity: 1;
  }
}

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

.nav-item {
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.1), rgba(255, 49, 49, 0.1));
  border: 1px solid rgba(0, 191, 99, 0.3);
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 99, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 191, 99, 0.4);
  border-color: var(--primary);
}

.nav-item:hover::before {
  left: 100%;
}

.nav-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.nav-title {
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.nav-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin-top: 2rem;
  border: 1px solid rgba(0, 191, 99, 0.2);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.ascii-art {
  color: var(--primary);
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
  margin: 2rem 0;
  white-space: pre;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 191, 99, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(0, 191, 99, 0.8);
  }
}

.coming-soon {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 49, 49, 0.1), rgba(0, 191, 99, 0.1));
  border: 2px dashed rgba(0, 191, 99, 0.4);
  border-radius: 15px;
  margin: 2rem 0;
  animation: borderPulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 191, 99, 0.05), transparent);
  animation: rotate 15s linear infinite;
  z-index: -1;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin: 1rem 0;
  overflow: hidden;
  border: 1px solid rgba(0, 191, 99, 0.3);
}

.progress-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #00bf63, #ffffff, #00bf63);
  background-size: 200% 100%;
  animation: progressShine 2s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes progressShine {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.progress-text {
  color: var(--primary);
  font-weight: bold;
  margin-top: 0.5rem;
  font-family: 'Courier New', monospace;
}

@keyframes borderPulse {

  0%,
  100% {
    border-color: rgba(0, 191, 99, 0.4);
  }

  50% {
    border-color: rgba(0, 191, 99, 0.8);
  }
}

.coming-soon h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.loading-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {

  0%,
  20% {
    content: '';
  }

  40% {
    content: '.';
  }

  60% {
    content: '..';
  }

  80%,
  100% {
    content: '...';
  }
}

@keyframes containerGlow {

  0%,
  100% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 191, 99, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  50% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 191, 99, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

.cyber-border {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f) padding-box,
    linear-gradient(45deg, #00bf63, #ff3131, #ffffff, #00bf63) border-box;
}

.logo-container {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.logo-container img {
  max-width: 220px;
  width: 85%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 191, 99, 0.6);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(1deg);
  }

  50% {
    transform: translateY(-5px) rotate(0deg);
  }

  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

.logo-container img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 50px rgba(0, 191, 99, 0.8), 0 0 100px rgba(255, 49, 49, 0.3);
  filter: brightness(1.2);
}

h1 {
  font-size: 2.8rem;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--primary), #ffffff, var(--danger));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.typing-effect {
  overflow: hidden;
  border-right: 3px solid var(--primary);
  white-space: nowrap;
  animation: typing 3s steps(40) forwards, blink-caret 1s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary);
  }
}

.glitch-text {
  position: relative;
  animation: glitch 3s linear infinite;
}

@keyframes glitch {

  2%,
  64% {
    transform: translate(2px, 0) skew(0deg);
  }

  4%,
  60% {
    transform: translate(-2px, 0) skew(0deg);
  }

  62% {
    transform: translate(0, 0) skew(5deg);
  }
}

h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

h2:hover {
  transform: translateX(10px);
  text-shadow: 0 0 10px rgba(0, 191, 99, 0.8);
}

.section {
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 191, 99, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 191, 99, 0.3);
  border-color: rgba(0, 191, 99, 0.5);
}

.section:hover::before {
  left: 100%;
}

.section:nth-child(odd) {
  border-left: 3px solid var(--primary);
}

.section:nth-child(even) {
  border-left: 3px solid var(--danger);
}

p,
li {
  line-height: 1.8;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.section:hover p,
.section:hover li {
  transform: translateX(5px);
}

.highlight {
  background: linear-gradient(45deg, var(--primary), #ffffff);
  color: #000;
  padding: 3px 8px;
  border-radius: 8px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

code {
  background: linear-gradient(45deg, #111, #222);
  padding: 6px 10px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  color: var(--danger);
  border: 1px solid rgba(255, 49, 49, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

code:hover {
  background: linear-gradient(45deg, #222, #333);
  box-shadow: 0 0 10px rgba(255, 49, 49, 0.5);
  transform: scale(1.05);
}

ul {
  padding-left: 1.5rem;
}

li {
  position: relative;
  padding-left: 1rem;
}

li::before {
  content: '▶';
  position: absolute;
  left: -0.5rem;
  color: var(--primary);
  font-size: 0.8rem;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.3;
  }
}

a {
  color: var(--primary);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--danger));
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  text-shadow: 0 0 8px rgba(0, 191, 99, 0.8);
  transform: translateY(-2px);
}

.tagline {
  font-style: italic;
  font-size: 1.3rem;
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 0 12px 12px 0;
  position: relative;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.contact-info {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  padding: 2rem;
  border-radius: 15px;
  line-height: 2.2;
  box-shadow: inset 0 0 20px rgba(255, 49, 49, 0.1), 0 0 20px rgba(0, 191, 99, 0.2);
  border: 1px solid rgba(255, 49, 49, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 191, 99, 0.1), transparent, rgba(255, 49, 49, 0.1), transparent);
  animation: rotate 10s linear infinite;
  z-index: -1;
}

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

.color-red {
  color: #ff3131 !important;
}

.color-white {
  color: #ffffff !important;
}

.color-green {
  color: #00bf63 !important;
}

strong {
  position: relative;
  transition: all 0.3s ease;
}

strong:hover {
  color: var(--primary);
  text-shadow: 0 0 5px rgba(0, 191, 99, 0.8);
}

html {
  scroll-behavior: smooth;
}

/* About Section Styles */
.about-section {
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 30px rgba(0, 191, 99, 0.3),
    inset 0 0 30px rgba(0, 191, 99, 0.1);
  animation: glow 2s ease-in-out infinite alternate;
}

.about-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1rem;
}

.about-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 191, 99, 0.5);
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.9;
  font-weight: 300;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.about-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 191, 99, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: left 0.5s ease;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 191, 99, 0.2);
  transform: translateY(-2px);
}

.about-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-details p {
  margin-bottom: 0.5rem;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.6;
}

.about-details strong {
  color: var(--primary);
  font-weight: 600;
}

.about-details ul {
  list-style: none;
  padding-left: 1rem;
}

.about-details li {
  margin-bottom: 0.3rem;
  position: relative;
  color: var(--text);
  opacity: 0.9;
}

.about-details li::before {
  content: '▶';
  color: var(--primary);
  position: absolute;
  left: -1rem;
}

.about-details code {
  background: rgba(0, 191, 99, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

.about-quote {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(0, 191, 99, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}

.about-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-quote cite {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.about-services {
  margin-top: 2rem;
}

.about-services h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.service-item {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(0, 191, 99, 0.2);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 191, 99, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.service-name {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
}

.about-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 191, 99, 0.3);
}

.close-about-btn {
  background: linear-gradient(45deg, var(--primary), #00a855);
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.close-about-btn:hover {
  background: linear-gradient(45deg, #00a855, var(--primary));
  box-shadow: 0 0 20px rgba(0, 191, 99, 0.4);
  transform: translateY(-2px);
}

.close-about-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 2rem 1rem;
  }

  .container {
    padding: 2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .logo-container img {
    max-width: 180px;
  }

  .navigation-menu {
    grid-template-columns: 1fr;
  }

  .status-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .ascii-art {
    font-size: 0.6rem;
  }

  .about-section {
    padding: 1.5rem;
  }

  .about-header h2 {
    font-size: 2rem;
  }

  .about-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .about-quote blockquote {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .terminal-header {
    padding: 0.5rem;
  }

  .terminal-title {
    font-size: 0.8rem;
  }

  .coming-soon {
    padding: 1rem;
  }

  .coming-soon h2 {
    font-size: 1.5rem;
  }

  .nav-item {
    padding: 0.8rem;
  }

  .status-bar {
    padding: 0.8rem;
  }

  .status-item {
    font-size: 0.8rem;
  }

  .about-section {
    padding: 1rem;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .about-card {
    padding: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}