body {
    margin: 0;
    font-family: 'Fira Code', monospace;
    background-color: #0d1117;
    color: #c9d1d9;
    scroll-behavior: smooth;
  }

  header {
    height: 100vh;
    background: #0d1117;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
  }

  #bgCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  header * {
    z-index: 1;
    position: relative;
  }

  header img {
    width: 140px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid #00ff90;
  }

  .enter-btn {
    color: #00ff90;
    border: 1px solid #00ff90;
    padding: 10px 20px;
    font-size: 1em;
    background: transparent;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
  }

  .enter-btn:hover {
    background-color: #00ff9010;
  }

  .scroll-down {
    font-size: 1.5em;
    color: #00ff90;
    animation: bounce 2s infinite;
    margin-top: 20px;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
  }

  h2 {
    text-align: center;
    color: #00ff90;
    margin-top: 60px;
  }

  .carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 40px;
    scroll-snap-type: x mandatory;
  }

  .card {
    flex: 0 0 auto;
    width: 250px;
    background: #161b22;
    color: #c9d1d9;
    padding: 20px;
    border-radius: 8px;
    scroll-snap-align: center;
    border: 1px solid #2ea043;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .card:hover {
    transform: scale(1.05);
    background-color: #1f2933;
    border-color: #00ff90;
  }

  .card h3 {
    color: #00ff90;
    margin-top: 0;
  }

  .extra {
    margin-top: 10px;
    font-size: 0.85em;
    opacity: 0.8;
  }

  .hire-section {
    background: #0d1117;
    padding: 60px 20px;
    text-align: center;
  }

  .hire-btn {
    background-color: transparent;
    color: #00ff90;
    border: 1px solid #00ff90;
    padding: 12px 28px;
    font-size: 1.1em;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .hire-btn:hover {
    background-color: #00ff9015;
  }
  .resume-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #00ff90;
    color: #0d1117;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .resume-btn:hover {
    background-color: #00cc73;
  }
  
  .chat-icon {
position: fixed;
bottom: 20px;
right: 20px;
background: #161b22;
border: 2px solid #00ff90;
color: #00ff90;
padding: 12px;
border-radius: 50%;
cursor: pointer;
z-index: 1000;
font-size: 1.4em;
transition: background 0.3s;
}

.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00ff90, #66ffcc);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 10px #00ff90;
}

.chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  background-color: #0d1117;
  border: 1px solid #00ff90;
  border-radius: 10px;
  color: #c9d1d9;
  font-family: 'Fira Code', monospace;
  box-shadow: 0 0 15px #00ff90;
  z-index: 999;
}


.chat-header {
  padding: 12px;
  font-weight: bold;
  background: #0d1117;
  border-bottom: 1px solid #00ff90;
  color: #00ff90;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  font-size: 0.95em;
  background-color: #0d1117;
  word-wrap: break-word;
  max-height: 60vh;
}

.chat-log .user {
  color: #00ff90;
  margin-bottom: 5px;
  text-align: right;
  word-break: break-word;
}

.chat-log .bot {
  color: #ffffff;
  margin-bottom: 5px;
  word-break: break-word;
}

#chat-input {
  width: 100%;
  padding: 12px;
  border: none;
  border-top: 1px solid #00ff90;
  background: #0d1117;
  color: #c9d1d9;
  font-family: 'Fira Code', monospace;
  outline: none;
  font-size: 0.95em;
  box-sizing: border-box;
}
.blink-cursor::after {
  content: '▌';
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
@media screen and (max-width: 480px) {
  .chat-window {
    right: 10px;
    left: 10px;
    width: auto;
  }
}