
:root {
  --bg-color: #121212;
  --primary-color: #00f5a0;
  --text-color: #f0f0f0;
  --accent-color: #0ff;
  --card-bg: #1e1e1e;

  --bg-color-light: #f9f9f9;
  --primary-color-light: #007b59;
  --text-color-light: #121212;
  --accent-color-light: #0aa;
  --card-bg-light: #ffffff;
}

:root {
  /* Dark mode variables (default) */
  --bg-color: #121212;
  --text-color: #f0f0f0;
  --primary-color: #00f5a0;
  --card-bg: #1e1e1e;

  /* Light mode variables */
  --bg-color-light: #f9f9f9;
  --text-color-light: #121212;
  --primary-color-light: #007b59;
  --card-bg-light: #ffffff;
}

/* Default: dark mode */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
}

/* Light mode overrides */
body.light-mode {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}

/* Example: Nav bar */
nav {
  background-color: var(--bg-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  transition: background-color 0.3s, box-shadow 0.3s;
}

body.light-mode nav {
  background-color: var(--bg-color-light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Links */
nav a {
  color: var(--text-color);
  transition: color 0.3s;
}

body.light-mode nav a {
  color: var(--text-color-light);
}


/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html, body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  transition: background-color 0.3s, color 0.3s;
  height: 100%;
  padding: 80px 20px 20px;
}

body.light-mode {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}

/* Sections */
section {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, box-shadow 0.3s, opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  color: var(--text-color);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.light-mode section {
  background-color: var(--card-bg-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  color: var(--text-color-light);
}

/* Headings */
h1, h2, h3 {
  color: var(--primary-color);
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3 {
  color: var(--primary-color-light);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
}


/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  z-index: 1100;
  padding: 10px 0;
  transition: background-color 0.3s;
}

body.light-mode nav {
  background-color: var(--bg-color-light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

body.light-mode nav a {
  color: var(--text-color-light);
}

nav a:hover,
nav a:focus {
  color: var(--primary-color);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

nav a:hover::after,
nav a:focus::after {
  width: 100%;
}

/* Toggle & Hamburger */
.mode-toggle,
.hamburger {
  position: fixed;
  top: 18px;
  font-size: 1.8rem;
  z-index: 1200;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.mode-toggle {
  right: 20px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

body.light-mode .mode-toggle {
  color: var(--text-color-light);
}

.hamburger {
  right: 70px;
  color: var(--text-color);
}

body.light-mode .hamburger {
  color: var(--text-color-light);
}

/* Home */
#home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  margin-bottom: 20px;
}

/* Glitch */
.glitch {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: bold;
  color: var(--accent-color);
  transition: opacity 0.3s ease-in-out;
}

.cursor {
  animation: blink 1s infinite;
}

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



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


#social-media {
  position: fixed;
  bottom: -100px;
  left: 30px;
  display: flex;
  gap: 30px;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
}

#social-media li a {
  color: white; /* Customize as needed */
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

#social-media li a:hover {
  transform: scale(1.2);
  color: var(--primary-color); /* Optional hover color */
}

@media (max-width: 768px) {
  #social-media {
    
    bottom: 15px;
    left: 10px;
    gap: 10px;
  }

  #social-media li a {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #social-media {
    bottom: 10px;
    left: 5px;
    gap: 8px;
  }

  #social-media li a {
    font-size: 1rem;
  }
}


/* About */
#about {
  padding: 60px 20px;
  border-radius: 12px;
}

.about-me {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 180px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

body.light-mode .about-img {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  max-width: 600px;
}

.about-text h3 {
  color: #0ef;
}

.about-text p,
.about-text ul {
  font-size: 1rem;
  line-height: 1.6;
}

.about-text ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
  color: #ccc;
}

.about-text a {
  color: #0ef;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
}


/* Portfolio */
#portfolio {
  padding: 60px 20px;
  text-align: center;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.portfolio-filter button {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
  background-color: var(--primary-color);
  color: #000;
}

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

.portfolio-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

.resume-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
  flex-wrap: wrap;
}

.resume-left,
.resume-right {
  flex: 1 1 45%;
  min-width: 300px;
}

h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .resume-container {
    flex-direction: column;
    gap: 20px;
  }

  .resume-left,
  .resume-right {
    flex: 1 1 100%;
    min-width: auto;
  }
}


h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .resume-container {
    flex-direction: column;
    gap: 20px;
  }

  .resume-left,
  .resume-right {
    flex: 1 1 100%;
  }
}


/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 80px 10px 30px;
  }

  h1 {
    font-size: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .about-me {
    flex-direction: column;
    text-align: center;
  }

  .skills-container {
    flex-direction: column;
    gap: 25px;
  }

  .portfolio-items {
    grid-template-columns: 1fr !important;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 60px;
    width: 100%;
    background-color: var(--card-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 12px 12px;
  }

  nav ul.active {
    max-height: 500px;
    padding: 10px 0;
  }

  nav li {
    padding: 12px 0;
  }

  .hamburger {
    display: block;
  }

  .mode-toggle, .hamburger {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
    max-width: 90vw;
  }

  .about-img {
    width: 120px;
  }
}
:root {
  --bg-color: #121212;
  --primary-color: #00f5a0;
  --text-color: #f0f0f0;
  --accent-color: #0ff;
  --card-bg: #1e1e1e;

  --bg-color-light: #f9f9f9;
  --primary-color-light: #007b59;
  --text-color-light: #121212;
  --accent-color-light: #0aa;
  --card-bg-light: #ffffff;
}



/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.portfolio-item img {
  width: 100%;
  height: 300px; /* Or adjust as needed */
  object-fit: cover; /* Ensures the image fills the box without distortion */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Base */
html, body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
  transition: background-color 0.3s, color 0.3s;
  height: 100%;
  padding: 80px 20px 20px;
}

body.light-mode {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}

/* Sections */
section {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, box-shadow 0.3s, opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  color: var(--text-color);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.light-mode section {
  background-color: var(--card-bg-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  color: var(--text-color-light);
}

/* Headings */
h1, h2, h3 {
  color: var(--primary-color);
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3 {
  color: var(--primary-color-light);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  z-index: 1100;
  padding: 10px 0;
  transition: background-color 0.3s;
}

body.light-mode nav {
  background-color: var(--bg-color-light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

body.light-mode nav a {
  color: var(--text-color-light);
}

nav a:hover,
nav a:focus {
  color: var(--primary-color);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

nav a:hover::after,
nav a:focus::after {
  width: 100%;
}

/* Toggle & Hamburger */
.mode-toggle,
.hamburger {
  position: fixed;
  top: 18px;
  font-size: 1.8rem;
  z-index: 1200;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.mode-toggle {
  right: 20px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

body.light-mode .mode-toggle {
  color: var(--text-color-light);
}

.hamburger {
  right: 70px;
  color: var(--text-color);
}

body.light-mode .hamburger {
  color: var(--text-color-light);
}

/* Home */
#home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  margin-bottom: 20px;
}

/* Glitch */
.glitch-container {
  padding: 10px;
  margin-top: 10px;
}

.glitch {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  animation: glitch-flicker 2s infinite;
  color: var(--accent-color);
}

.cursor {
  display: inline-block;
  animation: blink 1s steps(1) infinite;
  color: var(--accent-color);
}

@keyframes glitch-flicker {
  0%, 100% { text-shadow: 0.5px 0 #b3b3b3, -0.5px 0 #b3b3b3; }
  50% { text-shadow: 1px 0 #aaa, -1px 0 #aaa; }
}

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

/* About */
#about {
  padding: 60px 20px;
  border-radius: 12px;
}

.about-me {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 180px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

body.light-mode .about-img {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  max-width: 600px;
}

.about-text h3 {
  color: #0ef;
}

.about-text p,
.about-text ul {
  font-size: 1rem;
  line-height: 1.6;
}

.about-text ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
  color: #ccc;
}

.about-text a {
  color: #0ef;
  text-decoration: none;
}

.about-text a:hover {
  text-decoration: underline;
}

/* Skills */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}





:root {
    --primary-color: #00f5a0;
    --accent-color: #0ff;
  }

  .bar {
    height: 10px;
    background: #444;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    width: 300px; /* fixed width for demo */
  }

  .bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    width: 0;
    transition: width 0.6s ease;
    border-radius: 20px 0 0 20px;
  }

  .bar.w-70 .bar-fill { width: 70%; }
  .bar.w-75 .bar-fill { width: 75%; }
  .bar.w-80 .bar-fill { width: 80%; }
  .bar.w-85 .bar-fill { width: 85%; }
  .bar.w-90 .bar-fill { width: 90%; }
  .bar.w-95 .bar-fill { width: 95%; }


/* Portfolio */
#portfolio {
  padding: 60px 20px;
  text-align: center;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.portfolio-filter button {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
  background-color: var(--primary-color);
  color: #000;
}

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

.portfolio-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 80px 10px 30px;
  }
  @media (max-width: 768px) {
  .about-text p {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
  }
  .about-text li {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .about-text p {
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
  }
}

  h1 {
    font-size: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .about-me {
    flex-direction: column;
    text-align: center;
  }

  .skills-container {
    flex-direction: column;
    gap: 25px;
  }

  .portfolio-items {
    grid-template-columns: 1fr !important;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 60px;
    width: 100%;
    background-color: var(--card-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 12px 12px;
  }

  nav ul.active {
    max-height: 500px;
    padding: 10px 0;
  }

  nav li {
    padding: 12px 0;
  }

  .hamburger {
    display: block;
  }

  .mode-toggle, .hamburger {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
    max-width: 90vw;
  }

  .about-img {
    width: 150px;
  }
}

#contact {
    padding: 40px 20px;
    background-color: var(--card-bg);
    color: var(--text-color);
    position: relative;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Copyable Email Style */
.copyable-email {
    user-select: all;
    cursor: text;
    color: var(--primary-color);
}

/* Social Media Styles */
#social-media {
    position: absolute;
    bottom: 0px;
    left: 20px;
    display: flex;
    gap: 20px;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

#social-media li a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

#social-media li a:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}




.bar {
  position: relative;
  height: 10px;
  background: #444;
  border-radius: 20px;
  overflow: hidden;
  width: 300px; /* or any fixed width */
}

.bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  width: 0;
  transition: width 0.6s ease;
  border-radius: 20px 0 0 20px;
}

/* Widths for progress */
.bar.w-70 .bar-fill { width: 70%; }
.bar.w-75 .bar-fill { width: 75%; }
.bar.w-80 .bar-fill { width: 80%; }
.bar.w-85 .bar-fill { width: 85%; }
.bar.w-90 .bar-fill { width: 90%; }
.bar.w-95 .bar-fill { width: 95%; }

/* Text on bar */
.bar-text {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  user-select: none;
  pointer-events: none;
}


















.resume-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 60px;
  padding: 20px 0;
  position: relative;
}

/* Vertical timeline line */
.resume-container::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 3px;
  background-color: var(--line-color);
  transform: translateX(-50%);
  z-index: 1;
}

.resume-left,
.resume-right {
  flex: 1 1 45%;
  padding: 0 20px;
  position: relative;
  z-index: 2; /* above line */
}

h2, h3 {
  color: var(--primary-color);
}

.section {
  margin-bottom: 2rem;
}

/* Timeline item container */
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

/* Circle on the timeline */
.timeline-item .circle {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 3px solid var(--line-color);
  border-radius: 50%;
  margin-right: 20px;
  margin-top: 6px; /* align roughly with text first line */
  box-shadow: 0 0 5px rgba(0, 170, 255, 0.7);
}

/* Content of each item */
.timeline-item .content {
  max-width: 100%;
}

.timeline-item ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.timeline-item ul li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  list-style-type: disc;
  color: #222;
}

/* Italic text styling */
.timeline-item em {
  font-style: italic;
  color: #555;
}

/* Responsive: stack columns */
@media (max-width: 768px) {
  .resume-container {
    flex-direction: column;
  }
  .resume-container::before {
    left: 8px;
    top: 0;
    bottom: auto;
    width: 3px;
    height: 100%;
    transform: none;
  }
  .resume-left,
  .resume-right {
    padding-left: 40px;
  }
  .timeline-item {
    margin-bottom: 1.5rem;
  }
  .timeline-item .circle {
    margin-left: -30px;
  }
}
#resume ul li {
  color: white;
}

#resume strong{
  color: white;
}
#resume em{
  color: white;
}
body.light-mode #resume ul li {
  color: var(--text-color-light);
}

.portfolio-item img {
  width: 100%;
  height: 200px; /* Or adjust as needed */
  object-fit: cover; /* Ensures the image fills the box without distortion */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.portfolio-item Certificate{
  width: 100%;
  height: 200px; /* Or adjust as needed */
  object-fit: cover; /* Ensures the image fills the box without distortion */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



.portfolio-item a:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 255, 170, 0.45); /* subtle green glow */
}


.contact p{
  color: white;
  font-size: 50px;
}

.about-img{
  width: 300px;
  height: auto;
}