    :root {
      --primary: #6a11cb;
      --accent: #2575fc;
      --bg-dark: #0d1117;
      --bg-panel: #161b22;
      --text-light: #e4e6eb;
      --text-muted: #8b949e;
    }
   body {
  margin: 0;
  font-family: 'Comic Relief', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
}


    #preloader {
      position: fixed;
      width: 100%;
      height: 100%;
      background: var(--bg-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    .navbar {
      background: transparent;
      padding: 1rem 2rem;
    }
    .nav-link {
      color: var(--text-light);
      margin-right: 1rem;
      font-weight: 500;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--primary);
    }
    .hero {
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      color: var(--accent);
    }
    .typed-text {
      font-size: 1.5rem;
      color: var(--text-muted);
      margin-top: 1rem;
    }
    .btn-custom {
      background: var(--primary);
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      color: #fff;
      margin-top: 2rem;
    }
    .btn-custom:hover {
      background: #5517aa;
    }
    .section {
      padding: 5rem 2rem;
    }
    .section h2 {
      font-weight: 700;
      margin-bottom: 2rem;
      text-align: center;
    }
    .card-dark {
      background: var(--bg-panel);
      border: none;
      border-radius: 1rem;
      transition: transform 0.3s;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }
    .card-dark:hover {
      transform: translateY(-8px);
    }
    .card-dark img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: 0.5s;
    }
    .card-dark:hover img {
      transform: scale(1.1);
    }
    .form-control, .form-control:focus {
      background: var(--bg-panel);
      border: 1px solid #30363d;
      color: var(--text-light);
    }
    .coffee-box {
      text-align: center;
      background: var(--bg-panel);
      padding: 3rem;
      border-radius: 1rem;
      margin: 5rem auto;
      max-width: 600px;
    }
    .coffee-box a {
      margin-top: 1rem;
      display: inline-block;
      background: var(--primary);
      padding: 0.8rem 2rem;
      border-radius: 30px;
      color: white;
      text-decoration: none;
      font-weight: 500;
    }
    .coffee-box a:hover {
      background: #5517aa;
    }
    footer {
      text-align: center;
      padding: 2rem;
      font-size: .9rem;
      background: var(--bg-panel);
      color: var(--text-muted);
    }
    .experience-container {
      height: 200px;
      overflow: hidden;
      position: relative;
      background: var(--bg-panel);
      border-radius: 1rem;
      padding: 1rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }
    .experience-list-wrapper {
      display: flex;
      flex-direction: column;
      animation: scrollUpLinear 15s linear infinite;
    }
    .experience-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .experience-list li {
      padding: 1rem 0;
      font-size: 1.1rem;
      color: var(--text-light);
      text-align: center;
    }
    @keyframes scrollUpLinear {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    footer a:hover {
  color: #0d6efd; /* Bootstrap primary color or your custom */
  text-decoration: none;
}
