/* Hero Section - Updated to match React component */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom right, #f8fafc, #ffffff, rgba(239, 246, 255, 0.2));
  padding-top: 5rem;
  padding-bottom: 3rem;
  min-height: 100vh;
  transition: background-color 0.3s;
}

.dark-mode .hero {
  background: linear-gradient(to bottom right, #111827, #1f2937, rgba(30, 58, 138, 0.2));
}

/* Background Elements - More subtle */
.hero-background {
  position: absolute;
  inset: 0;
}

.bg-circle-1 {
  position: absolute;
  top: 8rem;
  left: 4rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(219, 234, 254, 0.6);
  border-radius: 50%;
  opacity: 0.3;
}

.bg-square-1 {
  position: absolute;
  top: 12rem;
  right: 6rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
  border-radius: 0.25rem;
  transform: rotate(45deg);
}

.bg-circle-2 {
  position: absolute;
  bottom: 10rem;
  left: 6rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
  border-radius: 50%;
}

.bg-square-2 {
  position: absolute;
  bottom: 8rem;
  right: 8rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(165, 243, 252, 0.4);
  border-radius: 0.5rem;
  transform: rotate(12deg);
}

.bg-blur-1 {
  position: absolute;
  top: 25%;
  left: 33%;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(to right, rgba(219, 234, 254, 0.3), rgba(224, 242, 254, 0.3));
  border-radius: 50%;
  filter: blur(3rem);
}

.bg-blur-2 {
  position: absolute;
  bottom: 33%;
  right: 33%;
  width: 16rem;
  height: 16rem;
  background: linear-gradient(to right, rgba(224, 242, 254, 0.2), rgba(219, 234, 254, 0.2));
  border-radius: 50%;
  filter: blur(3rem);
}

/* Dark mode background elements */
.dark-mode .bg-circle-1 {
  border-color: rgba(96, 165, 250, 0.2);
}

.dark-mode .bg-square-1 {
  background: linear-gradient(to right, rgba(96, 165, 250, 0.1), rgba(34, 211, 238, 0.1));
}

.dark-mode .bg-circle-2 {
  background: linear-gradient(to right, rgba(34, 211, 238, 0.2), rgba(96, 165, 250, 0.2));
}

.dark-mode .bg-square-2 {
  border-color: rgba(34, 211, 238, 0.2);
}

.dark-mode .bg-blur-1 {
  background: linear-gradient(to right, rgba(30, 58, 138, 0.2), rgba(21, 94, 117, 0.2));
}

.dark-mode .bg-blur-2 {
  background: linear-gradient(to right, rgba(21, 94, 117, 0.15), rgba(30, 58, 138, 0.15));
}

/* Container */
/* Container - Modified to reduce left padding even more */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-container {
    padding: 0 1.5rem 0 0.5rem; /* Reduced left padding from 1rem to 0.5rem */
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 0 2rem 0 0.5rem; /* Reduced left padding from 1rem to 0.5rem */
  }
}

@media (min-width: 1280px) {
  .hero-container {
    padding: 0 2rem; /* Minimal left padding on very large screens */
  }
}
/* Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 32PX;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12rem;
  }
}

/* Left Column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  
}

@media (min-width: 1024px) {
  .hero-left {
    gap: 2rem;
   
  }
}

/* Badge - Updated to match React component */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(219, 234, 254, 0.4);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  max-width: 100%;
  width: fit-content;
}

.dark-mode .hero-badge {
  background-color: rgba(31, 41, 55, 0.7);
  border-color: rgba(29, 78, 216, 0.4);
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: linear-gradient(to right, #2563eb, #06b6d4);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #4b5563;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.dark-mode .hero-badge span {
  color: #9ca3af;
}

/* Title - Updated to match React component */
.hero-title h1 {
  font-size: 2.25rem; /* Reduced from 2.5rem */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
}

@media (min-width: 640px) {
  .hero-title h1 {
    font-size: 3rem; /* Reduced from 3rem */
  }
}

@media (min-width: 768px) {
  .hero-title h1 {
    font-size: 3.75rem; /* Reduced from 3.75rem */
  }
}

@media (min-width: 1024px) {
  .hero-title h1 {
    font-size: 4.5rem; /* Reduced from 4.5rem */
  }
}

.title-gradient-1 {
  background: linear-gradient(to right, #111827, #1f2937, #111827);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dark-mode .title-gradient-1 {
  background: linear-gradient(to right, #ffffff, #f3f4f6, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-gradient-2 {
  background: linear-gradient(to right, #2563eb, #06b6d4, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title p {
  font-size: 1rem;
  color: #4b5563;
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero-title p {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .hero-title p {
    margin: 0;
  }
}

.dark-mode .hero-title p {
  color: #9ca3af;
}

/* Features - Updated to match React component */
.hero-features {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .hero-features {
    display: flex;
  }
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.dark-mode .feature-badge {
  background-color: rgba(31, 41, 55, 0.5);
  border-color: rgba(55, 65, 81, 0.5);
}

.feature-icon {
  height: 0.875rem;
  width: 0.875rem;
}

.feature-badge:nth-child(1) .feature-icon {
  color: #10b981;
}

.feature-badge:nth-child(2) .feature-icon {
  color: #eab308;
  fill: currentColor;
}

.feature-badge:nth-child(3) .feature-icon {
  color: #3b82f6;
}

.feature-badge span {
  color: #4b5563;
  font-size: 0.75rem;
}

.dark-mode .feature-badge span {
  color: #9ca3af;
}

/* Buttons - Updated to match React component */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: flex-start;
  padding-top: 0.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}

.btn-primary {
  background: linear-gradient(to right, #2563eb, #06b6d4);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(to right, #1d4ed8, #0891b2);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

.btn-icon {
  height: 1rem;
  width: 1rem;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
  transform: translateX(0.25rem);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #e5e7eb;
  color: #374151;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  cursor: pointer;
}

.dark-mode .btn-secondary {
  background-color: rgba(31, 41, 55, 0.8);
  border-color: #374151;
  color: #d1d5db;
}

.btn-secondary:hover {
  background-color: white;
  border-color: #bfdbfe;
  color: #2563eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dark-mode .btn-secondary:hover {
  background-color: #1f2937;
  border-color: #2563eb;
  color: #60a5fa;
}

/* Right Column - Updated to match React component */
.hero-right {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-right {
    display: block;
  }
}

.tech-stack {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tech-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
  border-radius: 1rem;
  filter: blur(1.25rem);
  z-index: -10;
}

.dark-mode .tech-stack {
  background-color: rgba(31, 41, 55, 0.9);
  border-color: rgba(55, 65, 81, 0.5);
}

.dark-mode .tech-stack::before {
  background: linear-gradient(to right, rgba(96, 165, 250, 0.1), rgba(34, 211, 238, 0.1));
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tech-card {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid;
}

.tech-web {
  background: linear-gradient(to bottom right, #eff6ff, rgba(219, 234, 254, 0.5));
  border-color: rgba(191, 219, 254, 0.3);
}

.dark-mode .tech-web {
  background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.3), rgba(30, 64, 175, 0.3));
  border-color: rgba(55, 114, 255, 0.3);
}

.tech-mobile {
  background: linear-gradient(to bottom right, #f0fdf4, rgba(220, 252, 231, 0.5));
  border-color: rgba(220, 252, 231, 0.3);
}

.dark-mode .tech-mobile {
  background: linear-gradient(to bottom right, rgba(20, 83, 45, 0.3), rgba(21, 128, 61, 0.3));
  border-color: rgba(34, 197, 94, 0.3);
}

.tech-backend {
  background: linear-gradient(to bottom right, #faf5ff, rgba(243, 232, 255, 0.5));
  border-color: rgba(243, 232, 255, 0.3);
}

.dark-mode .tech-backend {
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.3), rgba(91, 33, 182, 0.3));
  border-color: rgba(147, 51, 234, 0.3);
}

.tech-design {
  background: linear-gradient(to bottom right, #fff7ed, rgba(254, 215, 167, 0.5));
  border-color: rgba(254, 215, 170, 0.3);
}

.dark-mode .tech-design {
  background: linear-gradient(to bottom right, rgba(124, 45, 18, 0.3), rgba(154, 52, 18, 0.3));
  border-color: rgba(249, 115, 22, 0.3);
}

.tech-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.tech-icon {
  height: 1rem;
  width: 1rem;
}

.tech-web .tech-icon {
  color: #2563eb;
}

.dark-mode .tech-web .tech-icon {
  color: #60a5fa;
}

.tech-mobile .tech-icon {
  color: #16a34a;
}

.dark-mode .tech-mobile .tech-icon {
  color: #4ade80;
}

.tech-backend .tech-icon {
  color: #9333ea;
}

.dark-mode .tech-backend .tech-icon {
  color: #a78bfa;
}

.tech-design .tech-icon {
  color: #ea580c;
}

.dark-mode .tech-design .tech-icon {
  color: #fb923c;
}

.tech-label {
  font-size: 0.75rem;
  font-weight: 700;
}

.tech-web .tech-label {
  color: #2563eb;
}

.dark-mode .tech-web .tech-label {
  color: #60a5fa;
}

.tech-mobile .tech-label {
  color: #16a34a;
}

.dark-mode .tech-mobile .tech-label {
  color: #4ade80;
}

.tech-backend .tech-label {
  color: #9333ea;
}

.dark-mode .tech-backend .tech-label {
  color: #a78bfa;
}

.tech-design .tech-label {
  color: #ea580c;
}

.dark-mode .tech-design .tech-label {
  color: #fb923c;
}

.tech-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
}

.dark-mode .tech-title {
  color: #e5e7eb;
}

.tech-desc {
  font-size: 0.75rem;
  color: #4b5563;
}

.dark-mode .tech-desc {
  color: #9ca3af;
}

/* Quality Card - Updated to match React component */
.quality-card {
  background: linear-gradient(to right, #2563eb, #06b6d4);
  padding: 1rem;
  border-radius: 0.75rem;
  color: white;
  margin-bottom: 1rem;
}

.quality-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.quality-title {
  font-size: 0.875rem;
  font-weight: 500;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.quality-icon {
  height: 1rem;
  width: 1rem;
}

.quality-label {
  font-size: 0.875rem;
  font-weight: 700;
}

.quality-progress {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  height: 0.5rem;
}

.quality-bar {
  background-color: white;
  height: 0.5rem;
  border-radius: 9999px;
  width: 100%;
  animation: pulse 2s infinite;
}

/* Action Grid - Updated to match React component */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.action-btn {
  background-color: #f9fafb;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  cursor: pointer;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.dark-mode .action-btn {
  background-color: #374151;
}

.action-btn:hover {
  background-color: #f3f4f6;
}

.dark-mode .action-btn:hover {
  background-color: #4b5563;
}

.action-icon {
  height: 1rem;
  width: 1rem;
  color: #4b5563;
}

.dark-mode .action-icon {
  color: #9ca3af;
}

.action-btn:hover .action-icon {
  color: #2563eb;
}

.dark-mode .action-btn:hover .action-icon {
  color: #60a5fa;
}

.action-btn:nth-child(2):hover .action-icon {
  color: #16a34a;
}

.dark-mode .action-btn:nth-child(2):hover .action-icon {
  color: #4ade80;
}

.action-btn:nth-child(3):hover .action-icon {
  color: #9333ea;
}

.dark-mode .action-btn:nth-child(3):hover .action-icon {
  color: #a78bfa;
}

.action-btn span {
  font-size: 0.75rem;
  color: #4b5563;
}

.dark-mode .action-btn span {
  color: #9ca3af;
}

.action-btn:hover span {
  color: #2563eb;
}

.dark-mode .action-btn:hover span {
  color: #60a5fa;
}

.action-btn:nth-child(2):hover span {
  color: #16a34a;
}

.dark-mode .action-btn:nth-child(2):hover span {
  color: #4ade80;
}

.action-btn:nth-child(3):hover span {
  color: #9333ea;
}

.dark-mode .action-btn:nth-child(3):hover span {
  color: #a78bfa;
}

/* Floating Badges - Updated to match React component */
.floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dark-mode .floating-badge {
  background-color: rgba(31, 41, 55, 0.9);
  border-color: rgba(55, 65, 81, 0.5);
}

.floating-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-badge-1 {
  top: -1rem;
  left: -1rem;
  animation: bounce 2s infinite;
}

.floating-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.floating-badge-1 span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
}

.dark-mode .floating-badge-1 span {
  color: #d1d5db;
}

.floating-badge-2 {
  top: -0.5rem;
  right: -1.5rem;
  padding: 0.75rem;
}

.floating-badge-2 .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.floating-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
}

.dark-mode .floating-title {
  color: white;
}

.floating-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

.dark-mode .floating-subtitle {
  color: #9ca3af;
}

.floating-badge-3 {
  bottom: -0.75rem;
  left: -1.5rem;
  background: linear-gradient(to right, #2563eb, #06b6d4);
  color: white;
  border: none;
  padding: 0.5rem 0.75rem;
}

.floating-icon {
  height: 0.75rem;
  width: 0.75rem;
}

.floating-badge-3 span {
  font-size: 0.75rem;
  font-weight: 500;
}

.floating-badge-4 {
  bottom: -1rem;
  right: -1rem;
  padding: 0.5rem;
}

.floating-badge-4 .floating-icon {
  height: 0.75rem;
  width: 0.75rem;
  color: #10b981;
}

.floating-badge-4 span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
}

.dark-mode .floating-badge-4 span {
  color: #d1d5db;
}

/* Backdrop blur support fallback */
@supports not (backdrop-filter: blur(4px)) {
  .hero-badge,
  .feature-badge,
  .btn-secondary,
  .tech-stack,
  .floating-badge,
  .dialog {
    background-color: rgba(255, 255, 255, 0.8); /* Fallback */
  }

  .dark-mode .hero-badge,
  .dark-mode .feature-badge,
  .dark-mode .btn-secondary,
  .dark-mode .tech-stack,
  .dark-mode .floating-badge,
  .dark-mode .dialog {
    background-color: rgba(31, 41, 55, 0.8);
  }
}

/* Dialog - Updated to match React component */
.dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}

.dialog-overlay.active {
  display: flex;
  opacity: 1;
}

.dark-mode .dialog-overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.dialog {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 28rem;
  width: 100%;
  margin: 0 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.dark-mode .dialog {
  background-color: #1f2937;
  border-color: rgba(55, 65, 81, 0.5);
}

.dialog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.dialog-icon {
  height: 2rem;
  width: 2rem;
  color: #2563eb;
}

.dark-mode .dialog-icon {
  color: #60a5fa;
}

.dialog h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.dark-mode .dialog h2 {
  color: white;
}

.dialog p {
  font-size: 0.875rem;
  color: #4b5563;
}

.dark-mode .dialog p {
  color: #9ca3af;
}

.dialog-btn {
  background: linear-gradient(to right, #2563eb, #06b6d4);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: none;
  cursor: pointer;
}

.dialog-btn:hover {
  background: linear-gradient(to right, #1d4ed8, #0891b2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 1rem;
  height: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  animation: bounce 2s infinite;
}

.dark-mode .scroll-mouse {
  border-color: rgba(96, 165, 250, 0.4);
}

.scroll-dot {
  width: 0.125rem;
  height: 0.375rem;
  background-color: rgba(37, 99, 235, 0.6);
  border-radius: 9999px;
  margin-top: 0.375rem;
  animation: pulse 2s infinite;
}

.dark-mode .scroll-dot {
  background-color: rgba(96, 165, 250, 0.6);
}

/* Animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}