/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark Theme Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(255, 255, 255, 0.1);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #666666;
  
  /* Accent Colors */
  --accent-primary: #00d4ff;
  --accent-secondary: #ff006e;
  --accent-tertiary: #8338ec;
  
  /* Gradient */
  --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  --gradient-secondary: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
  
  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.profile-image img {
  width: 400px;   /* reduce image size */
  height: 400px;  /* keep it square */
  object-fit: cover;
  border-radius: 50%; /* make it circular */
  border: 4px solid #fff; /* optional border */
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  filter: blur(40px);
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-primary));
  top: 60%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(120deg); }
  66% { transform: translate(-20px, 10px) rotate(240deg); }
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 1000;
  transition: width 0.1s ease;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-smooth);
}

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

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-resume {
  background: var(--gradient-secondary);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-resume:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-profile {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 32px;
  padding: 8px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #18baff 0%, #e94057 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  min-width: 120px;
  max-width: 180px;
  text-align: center;
}

.btn-profile:hover {
  background: linear-gradient(90deg, #e94057 0%, #18baff 100%);
  box-shadow: 0 4px 16px rgba(24,186,255,0.15);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.nav-container {
  width: 100%;
  /* take full width */
  margin: 0;
  /* remove auto centering */
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
}

.nav-logo {
  margin-right: 3rem;
  /* spacing between logo and Home */
}

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 3rem;
  /* space between logo and Home */
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.2rem;

  justify-content: flex-start;
}

.nav-menu li:last-child {
  margin-left: 0;
  /* small spacing instead of auto push */
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
/* Flip Card Container */
.cert-card {
  perspective: 1200px;
  background: var(--glass-bg);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  overflow: hidden;
  min-height: 260px;
  max-width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: stretch;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.4, 0.2, 0.2, 1.2);
  transform-style: preserve-3d;
  will-change: transform;
}

.cert-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  border-radius: 18px;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  background: #181824;
}

.flip-card-back {
  background: var(--glass-bg);
  color: var(--text-main);
  transform: rotateY(180deg);
  padding: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cert-card {
    min-height: 180px;
    aspect-ratio: 16/9;
  }
}

.more-certifications {
  display: none; /* Hide by default */
  gap: 2rem; /* Optional: spacing between cert cards */
}


.view-more-wrapper {
  text-align: center;
  margin-top: 2rem; /* adds some space above the button */
}

#viewMoreBtn {
  display: inline-block; /* this makes sure it doesn’t stretch */
}
.hidden {
  display: none;
}






.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.profile-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
}

.profile-image i {
  font-size: 8rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Skills Section */
.skills {
  padding: 6rem 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns for 2 items per row */
  gap: 2rem;
}

/* Make it responsive for smaller screens */
@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
    /* stack in 1 column on small screens */
  }
}

.skill-category {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  text-align: center;
  transition: all var(--transition-smooth);
}

.skill-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.skill-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all var(--transition-smooth);
}

.skill-item:hover {
  background: var(--glass-bg);
  transform: scale(1.05);
}

.skill-item i {
  font-size: 2rem;
  color: var(--accent-primary);
}

.skill-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Education Section */
.education {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 2rem;
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: 2rem;
  padding-right: 0;
  margin-left: 50%;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  right: -2.7rem;
  box-shadow: 0 0 20px var(--accent-primary);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -2.7rem;
  right: auto;
}

.timeline-content {
  width: 100%;
}

.timeline-content h3 {
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-date {
  color: var(--accent-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.timeline-grade {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Certifications Section */
.certifications {
  padding: 6rem 0;
}

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

@media (max-width: 900px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cert-card {
    min-height: 180px;
    aspect-ratio: 16/9;
  }
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  width: 30px;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.contact-item a:hover {
  color: var(--accent-primary);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text p {
  color: var(--text-secondary);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .btn-resume {
    justify-content: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 2rem;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 4rem;
    padding-right: 0;
    margin-left: 0;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 4rem;
  }
  
  .timeline-dot {
    left: 1.3rem;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: 1.3rem;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .skill-items {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .glass-card {
    padding: 1.5rem;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

/* Coding Profiles Slider Styles */
.coding-profiles {
  padding: 6rem 0;
}
.coding-slideshow {
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  background-color: var(--slideshow-bgColor, #181824);
  border-radius: 30px;
  box-shadow: var(--primary-boxShadow, #000) 0px 0px 24px -3px;
  overflow: hidden;
  padding: 40px 32px;
  min-height: 420px;
  height: 420px;
  display: flex;
  align-items: center;
}
.codingSlides {
  display: none;
  animation: fade 0.7s ease-in-out;
}
.codingSlides .sliderCard {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 30px;
  border-radius: 20px;
  color: var(--font-primary-color, #fff);
  height: 100%;
}
.codingSlides .img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.codingSlides .img img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px var(--primary-boxShadow, #000);
  background: #fff;
  padding: 0;
  display: block;
  margin: 0 auto;
}
.codingSlides .info {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 1.5rem;
}
.codingSlides .info h3 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #18baff 0%, #e94057 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.codingSlides .info .time {
  font-size: 1.1rem;
  color: var(--slidecard-time, #797979);
  margin-bottom: 16px;
}
.codingSlides .info p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slidecard-p, #b3b3b3);
  text-align: justify;
  margin-bottom: 0;
}
.coding-slideshow .slider-dots {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  margin-top: 16px;
}
.coding-slideshow .arrow-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 64px;
  z-index: 2;
}
.coding-slideshow .arrow-wrapper a {
  background: #fff;
  color: var(--slideCard-h3, #7300ff);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 24px;
  transition: background 0.2s;
}
.coding-slideshow .arrow-wrapper a:hover {
  background: #ececec;
}
.coding-slideshow .dot {
  display: inline-block;
  width: 15px;
  height: 5px;
  margin: 0 4px;
  background-color: #797979;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}
.coding-slideshow .dot.active {
  width: 50px;
  margin: 0 4px;
  background-color: #797979;
}
.coding-slideshow .dot .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7300ff;
  animation: fillbar 2s linear forwards;
}
.coding-slideshow .prev,
.coding-slideshow .next {
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  width: 42px;
  height: 42px;
  margin-top: -24px;
  color: var(--view-i-color, #7300ff);
  font-size: 24px;
  font-weight: bold;
  background-color: var(--font-primary-color, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  box-shadow: 1px -2px 10px var(--primary-boxShadow, #000);
}
.coding-slideshow .prev:hover,
.coding-slideshow .next:hover {
  background-color: var(--projects-viewLink, #7300ff);
}
.coding-slideshow .prev {
  right: 80px;
}
.coding-slideshow .next {
  right: 20px;
}
.coding-slideshow .prev svg {
  transform: rotate(180deg);
}
@keyframes fade {
  from { opacity: 0.5; }
  to { opacity: 1; }
}
@keyframes fillbar {
  from { width: 0%; }
  to { width: 100%; }
}

/* Profile Bullets */
.profile-bullets {
  margin: 16px 0 0 0;
  padding-left: 22px;
  font-size: 1.08rem;
  color: #e6e6e6;
  line-height: 1.7;
  font-weight: 400;
  list-style: disc inside;
}
.profile-bullets li {
  margin-bottom: 6px;
}
