@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

      :root {
        --primary: #3a86ff;
        --secondary: #8338ec;
        --accent: #ff006e;
        --dark: #1a1a2e;
        --light: #f8f9fa;
      }

      body {
        font-family: "Montserrat", sans-serif;
        background-color: var(--dark);
        color: var(--light);
        overflow-x: hidden;
      }

      .canvas-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0.3;
      }

      .section {
        min-height: 100vh;
        padding: 6rem 2rem;
        position: relative;
      }

      .project-card {
        transition: all 0.3s ease;
        transform-style: preserve-3d;
        perspective: 1000px;
      }

      .project-card:hover {
        transform: translateY(-10px) scale(1.02);
      }

      .project-modal {
        transform: scale(0.9);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
      }

      .project-modal.active {
        transform: scale(1);
        opacity: 1;
        pointer-events: all;
      }

      .language-switch {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
      }

      .nav-link {
        position: relative;
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
      }

      .nav-link:hover::after {
        width: 100%;
      }

      .scroll-indicator {
        animation: bounce 2s infinite;
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateY(0);
        }
        40% {
          transform: translateY(-20px);
        }
        60% {
          transform: translateY(-10px);
        }
      }

      .skill-bar {
        height: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
      }

      .skill-progress {
        height: 100%;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 4px;
        transition: width 1s ease;
      }

      .pagination-btn {
        transition: all 0.3s ease;
      }

      .pagination-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }

      .form-input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
      }

      .form-input:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.3);
      }

      .floating-element {
        animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
        100% {
          transform: translateY(0px);
        }
      }