@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Poppins:wght@400;600&display=swap');

:root {
  --primary: #00e676; /* Bright green */
  --accent: #ffe600;  /* Vibrant yellow */
  --bg: #0a0f1a;
  --bg-glass: rgba(20, 30, 40, 0.65);
  --text: #eaf6fb;
  --card: rgba(30, 40, 60, 0.7);
  --border: #00e676;
  --shadow: 0 4px 32px 0 rgba(0,230,118,0.10), 0 1.5px 8px 0 rgba(255,230,0,0.08);
  --radius: 22px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: #0a0f1a;
  opacity: 0.14;
  pointer-events: none;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: transparent;
  pointer-events: none;
}

header {
  position: sticky;
  top: 0;
  background: rgba(10, 15, 26, 0.85);
  box-shadow: var(--shadow);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  backdrop-filter: blur(8px);
}

.logo {
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-shadow: 0 0 12px var(--primary), 0 0 2px #fff;
}

nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1px;
  transition: color var(--transition), text-shadow var(--transition);
  text-shadow: none;
}

nav a:hover {
  color: var(--accent);
  text-shadow: 0 0 16px var(--accent), 0 0 2px #fff;
}

nav a.active {
  color: var(--primary);
  text-shadow: 0 0 16px var(--primary), 0 0 2px #fff;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.socials a {
  color: var(--primary);
  font-size: 1.3rem;
  transition: color var(--transition);
}

.socials a:hover {
  color: var(--accent);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem 1.5rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 60vh;
  margin-bottom: 3.5rem;
}

.hero-img {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-img img,
.hero-photo {
  width: 400px;
  height: 400px;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: none;
  box-shadow: none !important;
  background: none;
  filter: brightness(1.1) saturate(1.2);
  display: block;
  margin: 0 auto;
}

.hero-photo {
  transform: scale(1.18); /* Increase or decrease for more/less zoom */
  object-position: 50% 40%; /* Adjust second value for up/down centering */
}

.hero-content {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.5rem 3rem;
  backdrop-filter: none;
  border: none;
  align-items: flex-start;
}

.hero-content h1 {
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  font-size: 3.2rem;
  margin: 0 0 1.2rem 0;
  font-weight: 700;
  color: var(--primary);
  text-shadow: none !important;
}

.typing {
  font-size: 1.7rem;
  color: var(--accent);
  font-weight: 700;
  min-height: 2.5rem;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px var(--accent);
  margin-bottom: 0.7rem;
}

.aboutme-btn {
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
  color: #222;
  border: none;
  border-radius: 999px;
  font-size: 1.25rem;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.aboutme-btn:hover, .aboutme-btn:focus {
  background: linear-gradient(90deg, var(--accent) 40%, var(--primary) 100%);
  color: var(--primary);
  box-shadow: none;
  outline: none;
}

.cta-btn {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  box-shadow: var(--shadow);
}

.cta-btn:hover {
  background: var(--accent);
  color: var(--text);
}

/* About Me */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  align-items: flex-start;
  margin-top: 16rem;
}

.about-gallery {
  flex: 1 1 340px;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.about-gallery img {
  width: 340px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 0 32px var(--primary), 0 0 8px var(--accent);
  border: 3px solid var(--primary);
  background: #111;
  filter: brightness(1.1) saturate(1.2);
}

.about-content {
  flex: 2 1 420px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--bg-glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2.7rem;
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--primary);
}

.about-content h2 {
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  margin: 0 0 0.7rem 0;
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: none;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.7rem 0 1.2rem 0;
}

.skill-badge {
  background: rgba(0,230,118,0.12);
  color: var(--primary);
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: none;
  border: 2px solid var(--primary);
  letter-spacing: 0.7px;
  text-shadow: none;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0 0;
  color: #baffc9;
  font-size: 1.15rem;
}

.about-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-specialties, .about-services {
  margin: 0 0 1.2rem 1.2rem;
  padding-left: 1.2rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.about-specialties li, .about-services li {
  margin-bottom: 0.4em;
  list-style: disc inside;
}
.about-specialties li::marker, .about-services li::marker {
  color: var(--primary);
}

/* Section Headings */
section {
  margin-bottom: 3.5rem;
}

section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-shadow: none;
}

/* Certificates Grid */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.certificate-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.certificate-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}

.certificate-card img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.7rem;
  background: #eee;
}

.certificate-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.certificate-desc {
  font-size: 0.98rem;
  color: #555;
  text-align: center;
}

/* Branding Section */
.branding-intro {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

.branding-showcase {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.branding-logo {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.branding-palette {
  display: flex;
  gap: 0.5rem;
}

.palette-color {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.branding-mission {
  font-size: 1.05rem;
  color: #555;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}

.portfolio-card img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.7rem;
  background: #eee;
}

.portfolio-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.portfolio-tools {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.portfolio-link {
  color: var(--primary);
  text-decoration: underline;
  font-size: 0.98rem;
  margin-top: 0.3rem;
}

/* Contact Section */
.contact-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  margin: 4rem 0 3rem 0;
}
.contact-left {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: flex-start;
}
.contact-blurb {
  font-size: 1.15rem;
  color: var(--text);
}
.contact-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.contact-icon {
  width: 64px;
  height: 38px;
  object-fit: contain;
  border-radius: 12px;
  padding: 4px 10px;
}
.contact-icon:hover {
  filter: none;
  transform: scale(1.15) rotate(-6deg);
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0,255,255,0.18);
}
.contact-email {
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
  word-break: break-all;
}
.contact-form {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: rgba(34, 40, 49, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1.5px solid rgba(0,255,255,0.18);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 1.5px 8px 0 rgba(0,255,255,0.08);
  padding: 2.2rem 2.5rem;
  border-radius: var(--radius);
  min-width: 260px;
  max-width: 520px;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
}
.contact-form:focus-within {
  box-shadow: 0 12px 36px 0 rgba(0,255,255,0.22), 0 2px 12px 0 rgba(255,0,255,0.13);
  border: 1.5px solid var(--accent);
}
.contact-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1.5px solid rgba(0,255,255,0.13);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0.7rem;
  background: rgba(255,255,255,0.13);
  resize: none;
  color: var(--text);
  transition: border 0.2s, background 0.2s;
}
.contact-form textarea {
  min-height: 90px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent);
  background: rgba(255,255,255,0.22);
}
.contact-form .consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
}
.contact-form button {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(0,255,255,0.13);
  letter-spacing: 1px;
}
.contact-form button:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(0,255,255,0.18);
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .contact-form, .contact-left {
    max-width: 100vw;
  }
  .contact-bg-animated { display: none; }
}
@media (max-width: 600px) {
  .contact-form {
    padding: 1.2rem 0.5rem;
  }
  .contact-icon {
    width: 48px;
    height: 28px;
    padding: 2px 6px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero, .about {
    flex-direction: column;
    align-items: stretch;
  }
  .about-gallery {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    min-width: 0;
  }
  .about-gallery img {
    width: 260px;
    height: 260px;
  }
  .about {
    margin-top: 10rem;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  main {
    padding: 1rem 0.2rem 2rem 0.2rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  section h2 {
    font-size: 1.5rem;
  }
  .about-gallery img {
    width: 120px;
    height: 120px;
  }
  .about {
    margin-top: 5rem;
  }
}

.cert-gallery-section {
  margin: 4rem 0 3rem 0;
}
.cert-gallery-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
}
.cert-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}
.cert-card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,230,118,0.10), 0 1.5px 8px 0 rgba(255,230,0,0.08);
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.cert-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,230,118,0.18), 0 2px 12px 0 rgba(255,230,0,0.13);
}
.cert-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  min-height: 220px;
  background: #222;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.cert-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: #222;
  display: block;
}
.cert-card-title {
  margin-top: 0.2rem;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.5px;
}

@media (max-width: 1100px) {
  .cert-gallery {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}
@media (max-width: 700px) {
  .cert-gallery {
    grid-template-columns: 1fr;
  }
  .cert-card {
    max-width: 98vw;
  }
  .cert-img-wrap {
    min-height: 160px;
  }
}

.group-photos {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.group-photos img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,230,118,0.10), 0 1.5px 8px 0 rgba(255,230,0,0.08);
  object-fit: cover;
  background: #222;
  display: block;
}
@media (max-width: 1100px) {
  .group-photos img {
    max-width: 220px;
  }
}
@media (max-width: 700px) {
  .group-photos {
    flex-direction: column;
    gap: 1.2rem;
  }
  .group-photos img {
    max-width: 98vw;
  }
}

.group-photo-side {
  max-width: 400px;
  width: 100%;
  height: auto;
}
.group-photo-middle {
  max-width: 300px;
  width: 100%;
  height: auto;
}
@media (max-width: 1100px) {
  .group-photo-side {
    max-width: 260px;
  }
  .group-photo-middle {
    max-width: 180px;
  }
}
@media (max-width: 700px) {
  .group-photo-side, .group-photo-middle {
    max-width: 98vw;
  }
}

/* --- Contact Section Glassmorphism & Animation --- */
.contact-bg-animated {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, #2e2e4e 0%, #1a1a2e 100%);
  overflow: hidden;
}
@media (max-width: 900px) {
  .contact-bg-animated { display: none; }
}
.contact-socials {
  margin-top: 0.5rem;
}
.contact-icon {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 2px 8px rgba(0,255,255,0.10);
  border: 1.5px solid rgba(0,255,255,0.13);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s, border 0.2s;
}
.contact-icon:hover {
  filter: none;
  transform: scale(1.15) rotate(-6deg);
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0,255,255,0.18);
}
/* Fade-in animation for contact section */
.contact-section { animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.1s both; }
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}

/* Make left-side texts and logo bigger on contact page */
.contact-left .contact-blurb {
  font-size: 1.35rem;
  font-weight: 500;
}
.contact-left .contact-email {
  font-size: 1.22rem;
  font-weight: 700;
}
.logo {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
}
/* Highlight effect for email section after send */
.highlight-email {
  background: linear-gradient(90deg, #00fff0 0%, #7f7fff 100%);
  color: #222 !important;
  border-radius: 8px;
  padding: 0.3em 0.7em;
  transition: background 0.4s, color 0.4s;
}

/* Contact form success message styling */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(34, 40, 49, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1.5px solid var(--primary);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 1.5px 8px 0 rgba(0,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem;
  margin-top: 1.5rem;
  color: var(--text);
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}
.contact-success h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.7rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
}
.contact-success p {
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0;
}

/* --- Projects Page Styles --- */
.projects-section {
  margin: 4rem 0 3rem 0;
  padding: 0 1rem;
}
.projects-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  letter-spacing: 2px;
}
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.project-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  background: rgba(34, 40, 49, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18), 0 1.5px 8px 0 rgba(0,255,255,0.08);
  border: 1.5px solid rgba(0,255,255,0.18);
  padding: 2.5rem 2.5rem;
  align-items: flex-start;
  transition: box-shadow 0.3s, border 0.3s, background 0.3s;
}
.project-card:hover {
  box-shadow: 0 12px 36px 0 rgba(0,255,255,0.22), 0 2px 12px 0 rgba(255,0,255,0.13);
  border: 1.5px solid var(--accent);
}
.project-main-img {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-main-img img {
  max-width: 440px;
  width: 100%;
  min-width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
}
.project-info {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.project-info h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
}
.project-info p {
  color: var(--text);
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
}
.project-info a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}
.project-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  margin: 1rem 0 1.2rem 0;
  padding-bottom: 0.5rem;
}
.project-gallery img {
  flex: 0 0 auto;
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,255,255,0.10);
  transition: transform 0.18s, box-shadow 0.18s;
  background: #fff;
}
.project-gallery img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 4px 16px rgba(0,255,255,0.18);
}
.project-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 2.2rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #222;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px 0 rgba(0,255,255,0.13);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.project-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(0,255,255,0.18);
}
@media (max-width: 900px) {
  .projects-list {
    flex-direction: column;
    gap: 2.2rem;
  }
  .project-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 0.7rem;
  }
  .project-main-img img {
    max-width: 100vw;
    height: 220px;
    min-width: 0;
  }
  .project-gallery img {
    width: 200px;
    height: 120px;
  }
}
@media (max-width: 600px) {
  .projects-title {
    font-size: 1.5rem;
  }
  .project-info h2 {
    font-size: 1.1rem;
  }
  .project-main-img img {
    height: 140px;
  }
  .project-gallery img {
    width: 120px;
    height: 70px;
  }
}

.cv-download-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.9rem 2.2rem;
  background: var(--primary);
  color: #0a0f1a;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(0,230,118,0.13);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.cv-download-btn:hover, .cv-download-btn:focus {
  background: var(--accent);
  color: #0a0f1a;
  box-shadow: 0 4px 24px 0 rgba(255,230,0,0.18);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

/* Hamburger menu styles */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  margin-left: 1.2rem;
}
.nav-toggle-bar {
  width: 28px;
  height: 3.5px;
  background: var(--primary);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  nav {
    display: none;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: var(--bg-glass);
    box-shadow: -2px 0 24px rgba(0,0,0,0.18);
    z-index: 110;
    padding: 5.5rem 2.2rem 2rem 2.2rem;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    border-top-left-radius: 22px;
    border-bottom-left-radius: 22px;
    border-left: 2px solid var(--primary);
    opacity: 0.98;
    pointer-events: none;
  }
  .mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .mobile-nav a {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,230,118,0.13);
    transition: color 0.2s;
  }
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  .mobile-nav a:hover {
    color: var(--accent);
  }
}
@media (min-width: 901px) {
  .mobile-nav {
    display: none !important;
  }
}

.graphics-section {
  margin-top: 4.5rem;
  background: #181f2a !important;
  border: 3px solid #00e676;
  padding: 2rem;
  box-shadow: 0 0 24px 0 rgba(0,230,118,0.18);
  opacity: 1 !important;
  color: #ffe600;
  position: relative;
  z-index: 10;
}
.graphics-title {
  text-align: center;
  color: #ffe600;
  font-size: 2.5rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px #000, 0 0 2px #00e676;
}
.graphics-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.graphics-card {
  background: #222b3a !important;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: center;
  padding: 1rem;
  border: 2px solid #00e676;
  opacity: 1 !important;
}
.graphics-card img {
  width: auto;
  max-width: 100%;
  max-height: 600px;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 12px;
  background: #222;
  box-shadow: 0 2px 8px rgba(0,230,118,0.13);
  border: 2px solid #ffe600;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}
.graphics-card img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(0,230,118,0.25), 0 2px 12px 0 rgba(255,230,0,0.18);
  z-index: 2;
}
.graphics-caption {
  color: #ffe600;
  font-size: 1rem;
  margin-top: 0.5rem;
  text-shadow: 0 2px 8px #000, 0 0 2px #00e676;
}
@media (max-width: 900px) {
  .graphics-gallery {
    grid-template-columns: 1fr;
  }
  .graphics-card img {
    max-width: 98vw;
  }
  .graphics-card.business-card img {
    max-width: 48vw;
    min-width: 80px;
  }
  .graphics-card {
    padding: 1.2rem 0.5rem 1.1rem 0.5rem;
    min-width: 0;
    min-height: 0;
  }
  .graphics-caption {
    font-size: 1.1rem;
  }
}

/* Lightbox Modal Styles */
#lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 15, 26, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.2s;
}
#lightbox-modal.active {
  display: flex;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 8px 32px #00e67699, 0 2px 12px #ffe60099;
  border: 4px solid #ffe600;
  background: #222;
  display: block;
  margin: auto;
}
#lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 3rem;
  color: #ffe600;
  cursor: pointer;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  z-index: 10001;
  transition: color 0.2s, transform 0.2s;
}
#lightbox-close:hover {
  color: #00e676;
  transform: scale(1.15) rotate(8deg);
}
#lightbox-caption {
  color: #ffe600;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  text-shadow: 0 2px 8px #000, 0 0 2px #00e676;
}
@media (max-width: 600px) {
  #lightbox-close {
    top: 12px;
    right: 18px;
    font-size: 2.2rem;
  }
  #lightbox-img {
    max-width: 98vw;
    max-height: 60vh;
  }
  #lightbox-caption {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* Offer Section Styles */
.offer-section {
  background: #181f2a;
  border: 3px solid #00e676;
  border-radius: 22px;
  margin: 4rem auto 3rem auto;
  padding: 3rem 2rem 2.5rem 2rem;
  max-width: 1200px;
  display: block;
  opacity: 1;
  position: relative;
}
.offer-title {
  text-align: center;
  color: #ffe600;
  font-size: 2.2rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 8px #000, 0 0 2px #00e676;
}
.offer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.offer-card {
  background: #222b3a;
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 rgba(0,230,118,0.08);
  border: 2px solid #00e676;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  color: #eaf6fb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.offer-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(0,230,118,0.18);
  border-color: #ffe600;
}
.offer-card-title {
  color: #00e676;
  font-size: 1.3rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  margin-bottom: 1.1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #000, 0 0 2px #ffe600;
}
.offer-list {
  list-style: disc inside;
  color: #ffe600;
  font-size: 1.05rem;
  margin: 0 0 0 0.5rem;
  padding: 0;
}
.offer-list li {
  margin-bottom: 0.7rem;
  color: #eaf6fb;
  font-family: 'Poppins', Arial, sans-serif;
}
.offer-rates, .offer-work {
  background: #20242e;
  border-radius: 10px;
  border: 1px solid #444;
  box-shadow: none;
  padding: 0.7rem 0.7rem;
  margin: 1.2rem auto 1rem auto;
  max-width: 300px;
  text-align: center;
  font-size: 0.96rem;
}
.offer-rate-value {
  color: #00e676;
  font-size: 1.3rem;
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  margin-bottom: 0.4rem;
  font-weight: 700;
  text-shadow: 0 2px 8px #000, 0 0 2px #ffe600;
}
.offer-rate-desc {
  color: #ffe600;
  font-size: 0.98rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.offer-work {
  margin: 2.5rem auto 0 auto;
  max-width: 600px;
  background: #232b3a;
  border-radius: 14px;
  border: 2px solid #00e676;
  box-shadow: 0 2px 12px 0 rgba(0,230,118,0.13);
  padding: 1.5rem 1.2rem;
}
.offer-work-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #eaf6fb;
  font-size: 0.98rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.offer-work-list li {
  margin-bottom: 0.5rem;
  color: #ffe600;
}
@media (max-width: 1200px) {
  .offer-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .offer-cards {
    gap: 1.2rem;
  }
}
@media (max-width: 900px) {
  .offer-cards {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: stretch;
  }
  .offer-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
    border-radius: 14px;
  }
  .offer-card {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    font-size: 0.98rem;
  }
  .offer-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .offer-rates, .offer-work {
    max-width: 100%;
    padding: 0.5rem 0.3rem;
    font-size: 0.92rem;
    border-radius: 8px;
  }
  .offer-rate-value {
    font-size: 1.1rem;
  }
  .offer-list {
    font-size: 0.95rem;
  }
  .offer-work-list {
    font-size: 0.95rem;
  }
  .graphics-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem !important;
    border-radius: 14px;
  }
  .graphics-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .graphics-gallery {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }
  .graphics-card {
    min-width: 0;
    max-width: 100%;
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    border-radius: 10px;
  }
  .graphics-card img {
    max-width: 100vw;
    height: auto;
    border-radius: 8px;
  }
  .graphics-caption {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .offer-section {
    padding: 0.7rem 0.1rem 0.7rem 0.1rem;
    border-radius: 8px;
  }
  .offer-title {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }
  .offer-card {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    border-radius: 8px;
    font-size: 0.92rem;
  }
  .offer-rates, .offer-work {
    padding: 0.3rem 0.1rem;
    font-size: 0.88rem;
    border-radius: 6px;
  }
  .offer-rate-value {
    font-size: 0.95rem;
  }
  .offer-list {
    font-size: 0.88rem;
  }
  .offer-work-list {
    font-size: 0.88rem;
  }
  .graphics-section {
    padding: 0.7rem 0.1rem 0.7rem 0.1rem !important;
    border-radius: 8px;
  }
  .graphics-title {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }
  .graphics-gallery {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 0.7rem;
  }
  .graphics-card {
    padding: 0.4rem 0.1rem 0.4rem 0.1rem;
    border-radius: 6px;
  }
  .graphics-card img {
    max-width: 98vw;
    border-radius: 6px;
  }
  .graphics-caption {
    font-size: 0.88rem;
  }
}

/* Certifications Slideshow Styles */
.certifications-slideshow {
  position: relative;
  max-width: 1200px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
  position: relative;
  background: transparent;
  padding: 3rem 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  display: none;
  text-align: center;
  color: var(--text);
  animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
  display: block;
}

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

.slide h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.slide p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: var(--text);
}

.slide-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.slide-images img {
  max-width: 450px;
  max-height: 300px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  opacity: 1;
  filter: none;
}

.slide-images img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: none;
}

.navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: var(--primary);
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navigation:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

.other-certs {
  margin-top: 4rem;
  padding: 2rem;
}

.other-certs h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.cert-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cert-card {
  background: transparent;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cert-img-wrap {
  margin-bottom: 1rem;
}

.cert-img-wrap img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
}

.cert-card-title {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .slide h2 {
    font-size: 2rem;
  }

  .slide p {
    font-size: 1rem;
  }

  .slide-images {
    flex-direction: column;
    align-items: center;
  }

  .slide-images img {
    max-width: 350px;
    max-height: 250px;
  }

  .navigation {
    font-size: 1.5rem;
    padding: 0.8rem;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-in-out;
}

.lightbox-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease-in-out;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Make all images clickable */
.slide-images img,
.cert-img-wrap img {
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-images img:hover,
.cert-img-wrap img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox-image {
    max-height: 70vh;
  }

  .lightbox-close {
    top: -40px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-caption {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}
