/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Fira Code', monospace;
    background: var(--bg-color);
    color: var(--text-color);
    scroll-behavior: smooth;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
  }
  
  /* Particle Background */
  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
  }
  
  /* Loader */
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader-svg {
    width: 100px;
    height: 100px;
    stroke: var(--highlight-color);
  }
  
  /* Theme Toggle */
  .theme-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  #themeToggle {
    transition: transform 0.3s;
  }
  
  #themeToggle:hover {
    transform: scale(1.2);
  }
  
  /* Menu Button */
  .menu-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--text-color);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: inline-block;
    white-space: nowrap;
  }
  
  .menu-btn:hover {
    background: var(--hover-fill);
    color: var(--bg-color);
  }
  
  /* Main Content */
  main.content {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
  }
  
  /* Contact Card */
  .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 140px);
    padding: 2rem;
  }
  
  .contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 255, 204, 0.15);
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    text-align: center;
    transition: all 0.4s ease-in-out;
  }
  
  .contact-card:hover {
    box-shadow: 0 0 20px #00ffe1, 0 0 40px rgba(0, 255, 204, 0.3);
    transform: translateY(-5px);
  }
  
  /* Form */
  #contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Fira Code', monospace;
    resize: none;
    outline: none;
    transition: border 0.3s;
  }
  
  #contact-form input:focus,
  #contact-form textarea:focus {
    border-color: var(--highlight-color);
  }
  
  #contact-form button {
    background: var(--highlight-color);
    color: var(--bg-color);
    border: none;
    padding: 0.9rem 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #contact-form button:hover {
    background: var(--hover-fill);
    color: var(--bg-color);
  }
  
  /* Social Section */
  .social-section {
    margin-top: 2.5rem;
  }
  
  .social-section h3 {
    margin-bottom: 1.2rem;
    color: var(--highlight-color);
    font-size: 1.5rem;
    text-shadow: 0 0 8px #00ffe1;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .icon-link {
    transition: transform 0.3s;
  }
  
  .icon-link:hover {
    transform: scale(1.2);
  }
  
  .icon {
    width: 40px;
    height: 40px;
  }
  
  /* Scroll To Top Button */
  #scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--highlight-color);
    color: var(--bg-color);
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
  }
  
  #scrollTopBtn:hover {
    background: var(--hover-fill);
    color: var(--bg-color);
  }
  
  /* Quote Section */
  .quote-section {
    margin: 5rem auto 3rem;
    padding: 2rem;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    width: 90%;
    max-width: 800px;
    color: var(--text-color);
    box-shadow: 0 8px 32px rgba(0, 255, 204, 0.2);
    transition: all 0.4s ease-in-out;
  }
  
  .quote-section:hover {
    box-shadow: 0 0 20px #00ffe1, 0 0 30px rgba(0, 255, 204, 0.25);
    transform: scale(1.02);
  }
  
  .quote-section h2 {
    font-size: 2.2rem;
    font-family: 'Fira Code', monospace;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
    text-shadow: 0 0 8px #00ffe1;
  }
  
  .quote-box {
    font-family: 'Fira Code', monospace;
    font-size: 1.4rem;
    font-style: italic;
    padding: 1rem;
  }
  
  #quoteAuthor {
    font-family: 'Fira Code', monospace;
    margin-top: 1.2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
  }
  
  /* Fade In Animation */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
  .footer {
    text-align: center;
    padding: 20px;
    background-color: #111; /* or any color matching your theme */
    color: #fff; /* text color */
    font-size: 14px;
    position: relative; /* or fixed if you want it always at the bottom */
    bottom: 0;
    width: 100%;
  }
  
  .footer p {
    margin: 0;
    letter-spacing: 0.5px;
  }
  