* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Share Tech Mono', monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #060606;
  color: #e0e0e0;
  line-height: 1.6;
}
section, header {
  scroll-margin-top: 100px;
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: auto;
}

/* NAVIGATION */
nav {
  background: #111;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 4px solid #00ffea;
}
.nav-wrapper {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #00ffea;
  align-self: flex-end;
}
.hamburger::before { content: '☰'; }
.hamburger.open::before { content: '✖'; }
.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.menu a {
  color: #00ffea;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.menu a:hover { color: #ffffff; }

/* PROFILE LOGO */
.center-logo {
  text-align: center;
  margin-bottom: 1rem;
}
.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #00ffea;
  animation: glow 2s infinite alternate;
  background-color: #000;
}
.center-logo .title {
  color: #00ffea;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
@keyframes glow {
  from { box-shadow: 0 0 10px #00ffea; }
  to { box-shadow: 0 0 25px #00ffea; }
}

/* BUTTONS */
.btn {
  padding: 0.7rem 1.5rem;
  background: #00ffea;
  color: #000;
  border: none;
  cursor: pointer;
  margin-right: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
  border-radius: 5px;
  min-width: 150px;
  text-align: center;
}
.btn:hover {
  background: #008e7f;
}
.button-group {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

/* EXPERIENCE */
.experience {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.experience img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.experience-details {
  flex: 1;
}
.experience-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.experience-details .company {
  font-weight: bold;
  color: #00ffea;
  margin-left: 0.5rem;
}
.experience-details .years {
  font-style: italic;
  color: #aaa;
  margin-bottom: 0.5rem;
}
.experience-details ul {
  list-style: none;
  padding-left: 0;
}
.experience-details ul li {
  margin-bottom: 0.4rem;
}
.experience-details ul li::before {
  content: '➤';
  margin-right: 0.5rem;
  color: #00ffea;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: #111;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}
.service-card i {
  font-size: 2rem;
  color: #00ffea;
  margin-bottom: 1rem;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.service-card p {
  color: #ccc;
  line-height: 1.5;
}

/* GALLERY */
.custom-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.custom-gallery img {
  width: 100%;
  border-radius: 8px;
  background: #222;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.custom-gallery img:hover {
  transform: scale(1.05);
}

.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  flex-direction: column;
}
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
}
.lightbox-caption {
  margin-top: 1rem;
  color: #00ffea;
  font-size: 0.9rem;
}
.lightbox-caption a {
  color: #00ffea;
  text-decoration: underline;
}
.lightbox-caption a:hover {
  color: #fff;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #00ffea;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
.lightbox-nav {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
}
.lightbox-nav button {
  padding: 0.6rem 1.2rem;
  font-size: 1.5rem;
  border: 2px solid #00ffea;
  background: transparent;
  color: #00ffea;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox-nav button:hover {
  background: #00ffea;
  color: #000;
}

/* TESTIMONIAL */
.testimonial {
  display: none;
}
.testimonial.active {
  display: block;
}
.testimonial-slider {
  max-width: 600px;
  margin: 3rem auto;
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #00ffea;
  text-align: center;
}
.testimonial-slider p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}
.testimonial-slider span {
  font-style: italic;
  color: #00ffea;
}
.testimonial-controls {
  margin-top: 1.5rem;
}
.testimonial-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid #00ffea;
  color: #00ffea;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.testimonial-buttons .btn:hover {
  background-color: #00ffea;
  color: #000;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #060606;
  border-top: 4px solid #00ffea;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.socials a {
  color: #00ffea;
  font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-bottom: 1rem;
  }
  .nav-inner {
    display: none;
    flex-direction: column;
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 0;
    animation: slideDown 0.3s ease-out;
  }
  .nav-wrapper.nav-open .nav-inner {
    display: flex !important;
  }
  @keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  .lightbox-caption {
    font-size: 0.75rem;
    bottom: 10px;
  }
}
