body {
  background: linear-gradient(to right, #2c3e50, #4ca1af);
  color: #f5f5f5;
  font-family: "Fira Code", monospace;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.terminal {
  background: #2d2d2d;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  width: 80%;
  max-width: 900px;
  height: 70%;
  display: flex;
  flex-direction: column;
  border: 1px solid #333;
  overflow: hidden;
}

.terminal-header {
  background: linear-gradient(to right, #3b3b3b, #1e1e1e);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid #333;
}

.buttons {
  display: flex;
  gap: 10px;
}

.buttons span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #555;
}

.buttons .close {
  background-color: #ff5f56;
}

.buttons .minimize {
  background-color: #ffbd2e;
}

.buttons .maximize {
  background-color: #27c93f;
}

.title {
  font-size: 14px;
  color: #fff;
  text-shadow: 0 0 3px #000;
}

.terminal-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background-color: #1e1e1e;
}

.terminal-body::-webkit-scrollbar {
  width: 12px;
}

.terminal-body::-webkit-scrollbar-track {
  background: #2c3e50;
  border-radius: 10px;
  margin: 4px;
}

.terminal-body::-webkit-scrollbar-thumb {
  background-color: #00bfff;
  border-radius: 10px;
  border: 3px solid #2c3e50;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.terminal-body::-webkit-scrollbar-thumb:hover {
  background-color: #1e90ff;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
}

.terminal-body {
  scrollbar-width: thin;
  scrollbar-color: #00bfff #2c3e50;
  scrollbar-radius: 10px;
}

.terminal-body {
  -ms-overflow-style: none;
}

.terminal-body::-ms-scrollbar {
  width: 12px;
  background: #2c3e50;
  border-radius: 10px;
}

.terminal-body::-ms-thumb {
  background-color: #00bfff;
  border-radius: 10px;
  border: 3px solid #2c3e50;
}

.output {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.input-line {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.prompt {
  margin-right: 10px;
  color: #4caf50;
}

input {
  background: none;
  border: none;
  color: #f5f5f5;
  flex: 1;
  font-size: 14px;
  outline: none;
  caret-color: #4caf50;
}

a {
  color: #4caf50;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.command {
  color: #c5c8c6;
}

.suggestion {
  color: #888;
}

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

.prompt::after {
  content: "";
  animation: blink 1s step-start 0s infinite;
}

.terminal-header,
.input-line {
  animation: slideDown 0.5s ease-out;
}

.output p {
  animation: fadeIn 0.3s ease-in;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gui-button {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
  color: #f5f5f5;
  text-decoration: none;
  border: 2px solid #00bfff;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 1000;
}

.gui-button:hover {
  background: linear-gradient(135deg, #4a4a4a, #5a5a5a);
  color: #ffffff;
  border-color: #1e90ff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

@media (max-width: 600px) {
  .terminal {
    height: 50%;
  }
}

.footer {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #f5f5f5;
}

.footer p {
  margin: 0;
}

/* Resume Section Styling */
.resume-section {
  background: #1e1e1e;
  color: #f5f5f5;
  width: 80%;
  max-width: 900px;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  margin-top: 20px;
}

.resume-content h2,
.resume-content h3 {
  color: #4caf50;
}

.resume-content a {
  color: #4caf50;
  text-decoration: none;
}

.resume-content a:hover {
  text-decoration: underline;
}

.resume-content .download-link {
  font-weight: bold;
  font-size: 16px;
}

.resume-content button {
  background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
  color: #f5f5f5;
  padding: 8px 16px;
  border: 2px solid #00bfff;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}

/* Projects Section Styling */
.projects-section {
  background: #1e1e1e;
  color: #f5f5f5;
  width: 80%;
  max-width: 900px;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  margin-top: 20px;
}

.projects-content h2 {
  color: #4caf50;
}

.project-item h3 {
  color: #4caf50;
}

.project-item a {
  color: #4caf50;
  text-decoration: none;
}

.project-item a:hover {
  text-decoration: underline;
}

.projects-content button {
  background: linear-gradient(135deg, #3a3a3a, #4a4a4a);
  color: #f5f5f5;
  padding: 8px 16px;
  border: 2px solid #00bfff;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}
