:root {
  /* variables */
  --cg-black: rgb(30, 32, 32);
  --cg-blue: rgb(36, 94, 255);
  --cg-grey: rgb(243, 243, 243);
  --cg-white: rgb(255, 255, 255);
}

html {
  height: 100%;
}

body {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 30%, #1f2937 70%, #111827 100%);
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-out;
  color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* CSS for navigation */

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 7%;
  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;

  background-color: var(--cg-black);
  color: var(--cg-white);
  padding: 0px 0px;

  /* Debug border */
  /* border: solid red; */
}

.nav-list {
  display: flex;
  flex-direction: row;
  position: relative;
  right: 30px;
  list-style: none;

  /* Debug border */
  /* border: solid blue; */
}

.navbar a {
  background: linear-gradient(45deg, #8b5cf6, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin: 0 12px;
  text-decoration: none;
  letter-spacing: 1px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.navbar a:hover {
  background: linear-gradient(45deg, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transform: translateY(-2px);
}

.navbar a:active {
  background: linear-gradient(45deg, #8b5cf6, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #8b5cf6, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo a:hover {
  text-decoration: None;
}

main {
  padding: 0;
  margin: 0;
  display: block;
  animation: slideUp 1s ease-out;
}

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

.page-title {
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-family: Georgia;
}

/* CSS for portfolio grid */

.portfolio-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.project-name {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}

.project-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.5rem;
  text-align: left;
}

.project-link {
  display: inline-block;
  background-color: var(--cg-black);
  color: var(--cg-white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  letter-spacing: 1px;
}

.project-link:hover {
  background-color: var(--cg-blue);
  color: var(--cg-white);
}

/* CSS for home page */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 30%, #1f2937 70%, #111827 100%);
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}


.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  flex: 1;
  color: white;
  margin-right: 3rem;
}

.hero-greeting {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-name {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #fff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #f0f8ff;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #8b5cf6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #6366f1;
  transform: translateY(-2px);
}

.hero-image {
  flex-shrink: 0;
}

.image-container {
  position: relative;
  width: 400px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #8b5cf6, #6366f1, #8b5cf6);
  border-radius: 30px;
  opacity: 0.3;
  z-index: -1;
  animation: imageGlow 3s ease-in-out infinite alternate;
}

.image-container::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
  border-radius: 25px;
  z-index: -1;
}

@keyframes imageGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.profile-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4), 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: transparent;
  color: white;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  position: relative;
}


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

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #e5e7eb;
}

.about-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.about-link {
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #8b5cf6, #6366f1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.about-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Page Titles - White Text with Neon Border */
main h1:not(.hero-name):not(.hero-greeting) {
  color: white;
  text-shadow: 
    -1px -1px 0 #8b5cf6,
    1px -1px 0 #8b5cf6,
    -1px 1px 0 #8b5cf6,
    1px 1px 0 #8b5cf6,
    0 0 3px #8b5cf6;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0;
}

/* Portfolio specific title styling */
.portfolio-title {
  color: white !important;
  text-shadow: 
    -1px -1px 0 #8b5cf6,
    1px -1px 0 #8b5cf6,
    -1px 1px 0 #8b5cf6,
    1px 1px 0 #8b5cf6,
    0 0 3px #8b5cf6;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0;
}

.title-highlight {
  color: white;
  text-shadow: 
    -1px -1px 0 #8b5cf6,
    1px -1px 0 #8b5cf6,
    -1px 1px 0 #8b5cf6,
    1px 1px 0 #8b5cf6,
    0 0 3px #8b5cf6;
}

/* CSS for resume page */

.button {
  background-color: var(--cg-black);
  border: none;
  color: var(--cg-white);

  font-family: monospace;

  padding: 5px 7px;
  text-align: center;

  border-radius: 2px;
}

.button:hover {
  background-color: var(--cg-blue);
}


/* CSS for contact form */

label {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  resize: none;
}

/* Add some spacing to the form */
form {
  width: 500px;
  margin: 0 auto;
}

/* CSS for portfolio */

.hero-section {
  text-align: left;
  padding: 2rem 2rem 1rem 2rem;
  background: transparent;
  color: var(--cg-black);
  margin-bottom: 1rem;
}

.portfolio-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
}

.portfolio-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 400;
  text-align: left;
}

.portfolio-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: slideUpFade 1.2s ease-out;
  animation-fill-mode: both;
}

.project-card:nth-child(1) {
  animation-delay: 0.1s;
}

.project-card:nth-child(2) {
  animation-delay: 0.2s;
}

.project-card:nth-child(3) {
  animation-delay: 0.3s;
}

.project-card:nth-child(4) {
  animation-delay: 0.4s;
}

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

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-card.featured {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.project-image {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
}

.project-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.5rem;
  text-align: left;
  font-weight: 400;
}

.project-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.project-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-align: center;
}

.project-link.primary {
  background: var(--cg-black);
  color: white;
}

.project-link.primary:hover {
  background: var(--cg-blue);
  color: white;
}


/* CSS for tech stack */

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: auto;
  margin-bottom: 1rem;
}

.tech-tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.tech-tag:hover {
  transform: translateY(-1px);
  opacity: 1;
}

/* Resume Page Styles */
.hero-section {
  text-align: center;
  width: 100%;
}

.resume-title {
  color: white !important;
  text-shadow: -1px -1px 0 #8b5cf6, 1px -1px 0 #8b5cf6, -1px 1px 0 #8b5cf6, 1px 1px 0 #8b5cf6, 0 0 3px #8b5cf6;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.download-resume-btn {
  display: inline-block !important;
  margin: 0 auto 3rem auto;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #8b5cf6, #6366f1);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  border: 2px solid #a78bfa;
  text-align: center;
}

.download-resume-btn:hover {
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4), 0 0 20px rgba(167, 139, 250, 0.6);
  border: 2px solid #c4b5fd;
}

.resume-tabs {
  display: flex !important;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
  padding: 0.5rem;
  width: 100%;
  overflow-x: auto;
}

.resume-tabs .tab-btn {
  display: inline-block !important;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 80px;
  height: auto;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.resume-tabs .tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.resume-tabs .tab-btn:hover::before {
  left: 100%;
}

.resume-tabs .tab-btn:hover {
  background: linear-gradient(45deg, #8b5cf6, #6366f1);
  border-color: #8b5cf6;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

html {
  scroll-behavior: smooth;
}

/* Enhanced smooth scrolling */
* {
  scroll-behavior: smooth;
}

.resume-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
  clear: both;
}

.resume-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.resume-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.card-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: #e5e7eb;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.card-date {
  color: #a78bfa;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.card-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.skill-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
  color: #a78bfa;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: linear-gradient(45deg, #8b5cf6, #6366f1);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.project-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(45deg, #8b5cf6, #6366f1);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.project-link:hover {
  background: linear-gradient(45deg, #6366f1, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.coursework-section {
  margin-bottom: 2rem;
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.course-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.course-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

/* Hero Card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin-right: 2rem;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* About Card */
.about-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 2rem auto 0 auto;
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}


/* Let's Connect Card */
.connect-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto 4rem auto;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.connect-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.connect-card .card-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.connect-card .card-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.connect-card .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* Scroll Buttons */
.scroll-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem 0 0 0;
  padding: 0.5rem;
}

.scroll-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 100px;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.scroll-btn span {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.scroll-arrow {
  position: relative;
  width: 2px;
  height: 20px;
}

.scroll-arrow-line {
  width: 2px;
  height: 15px;
  background: linear-gradient(180deg, #8b5cf6, #6366f1);
  border-radius: 1px;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-arrow-head {
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #8b5cf6;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

/* Scroll Target */
#scroll-target {
  margin-top: -6rem;
  padding-top: 6rem;
}

/* Spacer Section */
.spacer-section {
  height: 8rem;
  width: 100%;
}


/* CSS for footer */

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cg-black);
  color: var(--cg-white);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}