body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "Courier New", monospace;
  user-select: none;
}

body {
  width: 100%;
  height: 100%;
  /* Add your background pattern here */
  background-color: #000000;
  background-image: radial-gradient(rgb(60, 60, 60) 2px, transparent 0);
  background-size: 30px 30px;
  background-position: -5px -5px
}

a {
  color: #00FF00;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid #ffffff;
  background-color: #000;
  position: sticky;
  top: 0;
  user-select: none;
}

.navbar .logo img {
  width: 40px; /* Adjust size as needed */
  height: auto;
  border-radius: 50%; /* Optional: makes it circular if it’s a square image */
  cursor: pointer;
  transition: transform 0.2s ease;
  user-select: none;
}

.navbar .logo img:hover {
  transform: scale(1.1);
  user-select: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  user-select: none;
}

.navbar li a.active {
  color: #fff;
  font-weight: bold;
  user-select: none;
}


.hero {
  padding: 10rem 3rem;
  max-width: 800px;
}

.intro {
  color: #00FF00;
}

.title {
  font-size: 3rem;
  margin: 0.5rem 0;
}

.subtitle {
  font-size: 2rem;
  color: #ccc;
}

.description {
  margin: 1.5rem 0;
  color: #aaa;
  line-height: 1.5;
}

.primary-btn {
  background: transparent;
  border: 1px solid #00FF00;
  color: #00FF00;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  font-family: "Courier New"
}

.primary-btn:hover {
  background-color: #00FF00;
  color: #000;
}

.page {
  padding: 0.5rem 3rem;
  max-width: 10000px;
}

/* Experenace */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #0a0a0a;
  border: 1px solid #222;
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  user-select: none;
}

.card h2 {
  color: #00FF00;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card .company {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card p {
  color: #ddd;
  line-height: 1.5;
}

.tech {
  margin-top: 1rem;
}

.tech span {
  background-color: #111;
  border: 1px solid #00FF00;
  color: #00FF00;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-right: 0.4rem;
  display: inline-block;
}

/* Work Page (3D Modelling & GFX Side by Side) */
.work-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 3rem;
}

.work-column {
  flex: 1 1 48%;
  min-width: 320px;
}

.work-column .title {
  text-align: center;
  border-bottom: 1px solid #00FF00;
  padding-bottom: 0.5rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.model-card {
  background-color: #0a0a0a;
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.model-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 1px solid #00FF00;
  user-select: none;
}

.model-card p {
  color: #00FF00;
  font-size: 0.9rem;
  padding: 0.75rem;
  margin: 0;
  text-align: center;
  font-family: "Courier New", monospace;
  user-select: none;
}


/* About Page Layout */
.about {
  margin-top: 3rem;
  line-height: 1.7;
}

.about .title {
  margin-bottom: 1rem;
}

.about .description {
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 900px;
}

.about-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.about-section {
  flex: 1 1 300px;
}

.about-section .subtitle {
  color: #00FF00;
  margin-bottom: 1rem;
  border-bottom: 1px solid #00FF00;
  padding-bottom: 0.5rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  color: #fff;
  margin: 0.5rem 0;
  transition: color 0.3s;
}

.about-list li:hover {
  color: #00FF00;
}

/* Contact Page */
.contact {
  margin-top: 3rem;
  max-width: 800px;
}

.contact .description {
  color: #ccc;
  margin-bottom: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  border-bottom: 1px solid #111;
  padding-bottom: 0.5rem;
}

.contact-label {
  color: #00FF00;
  font-weight: bold;
  min-width: 100px;
}

.contact-item a {
  color: #fff;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #00FF00;
}

body {
  transform: scale(1);
  transform-origin: top left;
  width: 100%;
  height: 100%;
}
body {
  overflow-x: hidden;
}

body {
  zoom: 1.2;
}

