
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #0f0f0f;
      color: #f2f2f2;
      overflow-x: hidden;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background: rgba(15, 15, 15, 0.7);
      backdrop-filter: blur(10px);
      z-index: 1000;
    }
    header h1 {
      font-size: 1.5em;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #fff, #aaa);
      -webkit-background-clip: text;
      color: transparent;
    }
    nav a { 
      color: #ccc;
      margin: 0 15px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }
    nav a:hover {
      color: #fff;
    }

    .hero {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      height: 100vh;
      padding: 0 10%;
      border:hidden black 2px;
      box-shadow:0 0 10px #2D2D2D,
      0 0 20px #2D2D2D;
    }
    .hero-space{
      min-height:30px;
    }
    .hero-text {
     
      border:hidden 2px black;
      border-radius:20px;
      max-width: 700px;
      box-shadow:0 0 5px rgb(44, 44, 44),
      0 0 10px rgb(39, 38, 38);
    }
      /* .hero-text :hover{
      transform:translateY(15px);
      transition: transform 1.1s;
      box-shadow:0 0 5px rgb(44, 44, 44),
      0 0 10px rgb(39, 38, 38); 
    }  */
    .hero-text h2 {
      margin-left:30px;
      font-size: 3em;
      margin-bottom: 10px;
      animation: fadeInUp 1s ease forwards;
    }
    .hero-text h3 {
      margin-left:30px;
      font-weight: 400;
      color: #bbb;
      margin-bottom: 20px;
      animation: fadeInUp 1.5s ease forwards;
    }
    .hero-text p {
      margin-left:30px;
      font-size: 1.1em;
      color: #aaa;
      margin-bottom: 30px;
      line-height: 1.6;
      animation: fadeInUp 2s ease forwards;
    }
    .hero-text button {
      margin-left:30px;
      background: linear-gradient(90deg, #fff, #aaa);
      color: #0f0f0f;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: bold;
      max-width:150px;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 4px 15px rgba(255,255,255,0.2);
      animation: fadeInUp 2.5s ease forwards;
    }
    .hero-text button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    }

    .hero-photo {
      width: 320px;
      height: 320px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
      border: 4px solid rgba(255, 255, 255, 0.05);
      animation: float 4s ease-in-out infinite;
    }
    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) brightness(0.9);
      transition: 0.5s;
    }
    .hero-photo img:hover {
      filter: grayscale(0%) brightness(1);
      transform: scale(1.05);
    }

    .about, .projects, .contact {
      border:#888 solid 5px;
      padding: 100px 10%;
      text-align: center;
    }
    .about h2, .projects h2, .contact h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #fff, #999);
      -webkit-background-clip: text;
      color: transparent;
    }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    .project {
      min-height:400px;
      background: #1a1a1a;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .project:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
    }
    .project h3 {
      margin-bottom: 10px;
      color: #eee;
    }
    .project p {
      color: #aaa;
      font-size: 0.95em;
    }

    footer {
      background: #0b0b0b;
      text-align: center;
      padding: 20px;
      color: #888;
      border-top: 1px solid #1a1a1a;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 900px) {
      .hero { flex-direction: column; text-align: center; }
      .hero-photo { margin-top: 40px; }
    }

      .gradient-button {
            background: linear-gradient(135deg, #7C3AED, #A855F7);
            color: white;
            font-weight: 600;
            text-decoration: none;
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .gradient-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(168, 85, 247, 0.6);
        }
        



        .login-background {
            position: relative;
            background-color: black; 
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-background::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle at 70% 30%, rgba(181, 176, 181, 0.3), rgba(0, 0, 0, 0));
            animation: float-planet 20s infinite alternate ease-in-out;
            z-index: 1;
        }

        .login-background::after {
            content: '';
            position: absolute;
            top: 15%;
            left: 5%;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 70%, rgba(125, 123, 128, 0.1), rgba(0, 0, 0, 0));
            animation: float-planet-2 15s infinite alternate-reverse ease-in-out;
            z-index: 1;
        }

        @keyframes float-planet {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(-50px, 30px) scale(1.05); }
        }
        @keyframes float-planet-2 {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(20px, -50px) scale(1.1); }
        }
        
        .login-card {
            position: relative;
            width: 100%;
            max-width: 384px; 
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            margin: 2rem; 

            background-color: rgba(22, 22, 24, 0.8); 
            backdrop-filter: blur(10px); 
            border: 1px solid rgba(11, 11, 11, 0.2);
            box-shadow: 0 0 50px rgba(245, 244, 245, 0.4), 0 0 20px rgba(173, 171, 180, 0.2);
            z-index: 10;
        }

            .login-card h3 {
            font-size: 1.875rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .login-card p {
            color: #9ca3af; 
            font-size: 0.875rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .form-group label {
            display: block;
            text-align: left;
            font-size: 0.75rem;
            font-weight: 500;
            color: #9ca3af;
            margin-bottom: 0.25rem;
        }

        .login-input {
            width: 100%;
            padding: 0.5rem 0.25rem;
            font-size: 0.875rem;
            
            background-color: transparent;
            border: none;
            border-bottom: 1px solid #020303; 
            color: var(--color-text-light);
            transition: border-bottom-color 0.3s;
        }

        .login-input:focus {
            outline: none;
            border-bottom-color: var(--color-accent);
        }

        .forgot-password-link {
            display: block;
            text-align: left;
            padding-top: 0.5rem;
            font-size: 0.75rem;
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }
        .forgot-password-link:hover { color: var(--color-accent); }
        
        .show-password-link {
            position: absolute;
            right: 0.25rem;
            bottom: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #7a797c;
            text-decoration: none;
        }

        .divider {
            display: flex;
            align-items: center;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        
        .divider-line {
            flex-grow: 1;
            border-top: 1px solid #374151;
        }
        
        .divider-text {
            flex-shrink: 0;
            margin: 0 1rem;
            color: #6b7280;
            font-size: 0.875rem;
            font-weight: 300;
        }

        .apple-button {
            width: 100%;
            padding: 0.75rem 0;
            border-radius: 0.5rem;
            color: white;
            font-weight: 500;
            background-color: #2D2D2D;
            border: 1px solid #4B5563;
            transition: background-color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
            font-size: 0.875rem;
        }

        .apple-button:hover {
            background-color: #6a6767;
        }
        
        .apple-button svg { width: 1.25rem; height: 1.25rem; }

        .signup-text {
            margin-top: 2rem;
            font-size: 0.75rem;
            color: #6b7280;
        }
        
        .signup-text a {
            color: #a78bfa;
            font-weight: 600;
            text-decoration: none;
        }

        .g-cont{
        width:100%;
        height:30%;
        min-height:100px;
        background-color:#1a1a1a;
        border:2px white hidden;
        display:flex;
        justify-content:center;
        border-radius:30px;
        align-items:center;
        }
        .gmail{
          width:40%;
          height:40%;
          min-height:60px;
          background-color:black;
          border:hidden black 2px;
          border-radius:20px;
        }
        .git{
          width:40%;
          height:40%;
          min-height:60px;
          background-color:black;
          border:hidden black 2px;
          border-radius:20px;
        }
        .g-cont:hover {
          transform:scale(1.1);
        transition:transform 1s;
        }
        button{
          
        }