/* ===== BASE ===== */
.projects-page {
  padding: 100px 10% 80px;
  background: #0d0d0d;
  color: #eaeaea;
  font-family: 'Poppins', sans-serif;
}

/* ===============================
   NAVBAR — Logo Left / Menu Center
=============================== */
.navbar {
  width: 100%;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1000;
}

/* LOGO (top-left corner) */
.logo {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.logo a {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-color);
}

/* NAV LINKS CENTERED */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

/* Hire Me Button */
.nav-links .btn {
  border: 1px solid var(--accent-color);
  border-radius: 25px;
  padding: 8px 20px;
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-links .btn:hover {
  background: var(--accent-color);
  color: var(--bg-color);
}

/* Hide on desktop */
.menu-icon {
  display: none;
}


/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center;
  font-size: 2.6rem;
  color: var(--accent-color);
  font-family: 'Space Mono', monospace;
  margin-bottom: 60px;
}

/* ===== PROJECT CONTAINER ===== */
.project-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 90px;
  padding: 30px 0;
}

.project-info {
  flex: 1 1 45%;
  text-align: left;
  padding-right: 20px;
}

.project-index {
  font-size: 2.8rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-color);
  margin-bottom: 8px;
}

.project-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.project-info p {
  color: #b5b5b5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.tech-stack {
  color: var(--accent-color);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.project-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.project-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #ccc;
  transition: 0.3s;
  font-size: 1.2rem;
}

.project-links a:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
}

/* ===== PROJECT IMAGE ===== */
.project-img {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.project-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 25px #00ff8820;
  transition: 0.4s ease;
  margin-bottom: 25px; /* creates space above the nav buttons */
}

.project-img img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 35px #00ff8840;
}

/* ===== CUSTOM NAVIGATION (Green Arrows under each image) ===== */
.project-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 10px;
}

.nav-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 0 15px #00ff8830;
}

.nav-arrow:hover {
  background: var(--accent-color);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 25px #00ff8870;
}

/* ===== REMOVE SWIPER DEFAULT CONTROLS ===== */
.swiper-pagination,
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 60px;
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 35px 0;
  color: #888;
  font-size: 0.9rem;
}

