        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #0a0a0a 0%);
            color: #e0e0e0;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 auto;
        }

        header {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00ff88;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00ff88;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        nav a:hover {
            color: #00ff88;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            border: 2px solid #00ff88;
            background: transparent;
            color: #00ff88;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn:hover {
            background: #00ff88;
            color: #0a0a0a;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .btn-primary {
            background: #00ff88;
            color: #0a0a0a;
        }

        .btn-primary:hover {
            background: #00d4ff;
            border-color: #00d4ff;
        }

        section {
            padding: 80px 0;
        }

        h3 {
            font-size: 36px;
            margin-bottom: 50px;
            margin-top: 130px;
            text-align: center;
            color: #00ff88;
        } 

        .hero {
          padding: 140px 0 100px;
        }
        
        .hero-wrapper {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 100px;
        }
        
         .hero-image {
          flex: 1;
          border: 2px solid #00ff88;
          padding: 15px;
          border-radius: 5px;
          width: 90%;
          height: 30%;
          box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
        }
        
        .hero-image img {
          width: 100%;
          height: 100%;
          border-radius: 8px;
          filter: grayscale(100%);
        }
        
        .hero-content {
          flex: 1;
          text-align: left;
        }
        
        .hero-content h2 {
          font-size: 26px;
          color: #b0b0b0;
          margin-bottom: 10px;
        }
        
        .hero-content h1 {
          font-size: 54px;
          margin-bottom: 25px;
          background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
          background-clip: text;
          -webkit-text-fill-color: transparent;
        }
        
        .hero-content p {
          font-size: 18px;
          color: #9ca3af;
          max-width: 520px;
          margin-bottom: 40px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 15px;
            color: #c0c0c0;
        }

        .info-box {
            background: rgba(15, 15, 32, 0.5);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #00ff88;
        }

        .info-box p {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
        }

        .info-box strong {
            color: #00ff88;
        }

        .skills-container h3 {
            max-width: 1200px;
            margin-top: 40px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 0;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .skill-card {
            background: rgba(15, 15, 32, 0.5);
            padding: 35px;
            margin-left: 200px;
            margin-right: 200px;
            margin-top: 0px;
            margin-bottom: 100px;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 136, 0.2);
            transition: all 0.3s;
        }

        .skill-card:hover {
            transform: translateY(-5px);
            border-color: #00ff88;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
        }

        .skill-card h4 {
            color: #00ff88;
            margin-bottom: 15px;
            font-size: 22px;
        }

        .skill-card ul {
            list-style: none;
        }

        .skill-card li {
            padding: 8px 0;
            color: #b0b0b0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .skill-card li:last-child {
            border-bottom: none;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: rgba(15, 15, 32, 0.5);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 136, 0.2);
            transition: all 0.3s;
        }

        .project-card:hover {
            transform: translateY(-5px);
            border-color: #00ff88;
        }

        .project-card h4 {
            color: #00ff88;
            margin-bottom: 15px;
            font-size: 22px;
        }

        .project-card p {
            color: #b0b0b0;
            margin-bottom: 15px;
        }

        .project-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            background: rgba(0, 255, 136, 0.2);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            color: #00ff88;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-content p {
            color: #b0b0b0;
            margin-bottom: 30px;
        }

        .contact-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 90px;
        }

        footer {
            background: rgba(10, 10, 20, 0.9);
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #00ff88;
        }

        footer p {
            color: #888;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero h2 {
                font-size: 22px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            nav ul {
                gap: 15px;
            }

            .skills-grid, .projects-grid {
                grid-template-columns: 1fr;
            }
        }