
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Electrolize', 'Segoe UI', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #0a0a0a;
            color: #e0e0e0;
            overflow-x: hidden;
        }

        h1, h2, h3, p {
            margin: 0;
            padding: 0;
        }

        /* Header & Navigation */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 255, 213, 0.1);
            backdrop-filter: blur(10px);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 30px;
            margin-right: 10px;
            border-radius: 50%;
        }

        .logo h1 {
            font-size: 24px;
            background: linear-gradient(90deg, #00fff2, #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links li a {
            text-decoration: none;
            color: #e0e0e0;
            font-size: 18px;
            padding: 8px 16px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links li a:hover {
            color: #00fff2;
            background: rgba(0, 255, 242, 0.1);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #00fff2;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after {
            width: 70%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: #00fff2;
            border-radius: 2px;
            transition: 0.3s;
        }

        /* Home Section */
        .home-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 100vh;
            padding: 100px 5% 50px;
            position: relative;
            overflow: hidden;
        }

        .home-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 255, 242, 0.1), transparent);
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }

        .intro {
            flex: 1;
            max-width: 600px;
            z-index: 1;
        }

        .intro h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        #name {
            background: linear-gradient(90deg, #00fff2, #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        #wrd {
            color: #00fff2;
            font-weight: 600;
        }

        #home-txt {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #b0b0b0;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 242, 0.2);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(0, 255, 242, 0.1);
            transform: translateY(-2px);
            border-color: #00fff2;
        }

        .contact-item i {
            color: #00fff2;
            font-size: 20px;
        }

        .buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .resume-btn {
            background: linear-gradient(90deg, #00fff2, #00ffaa);
            color: #0a0a0a;
            border: none;
        }

        .resume-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 242, 0.3);
        }

        .contact-btn {
            background: transparent;
            color: #00fff2;
            border: 2px solid #00fff2;
        }

        .contact-btn:hover {
            background: rgba(0, 255, 242, 0.1);
            transform: translateY(-3px);
        }

        /* Profile Image */
        .profile-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            margin-top: 70px;
            border-radius: 50%;
            background-color: #222;
            background-image: url('Photos/werdevs.png');
            background-size: cover;
            box-shadow: 0 0 20px 10px #00ffe5;
            animation: glow 1s infinite alternate;
        }

       

        /* Skills Section */
        #skill {
            padding: 100px 5%;
            text-align: center;
        }

        #skill h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #00fff2, #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .skill-category {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 242, 0.2);
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            transform: translateY(-10px);
            border-color: #00fff2;
            box-shadow: 0 20px 40px rgba(0, 255, 242, 0.2);
        }

        .skill-category h3 {
            color: #00fff2;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .skill-list {
            list-style: none;
            text-align: left;
        }

        .skill-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .skill-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #00ffaa;
        }

        /* Experience Section */
        #experience {
            padding: 100px 5%;
        }

        #experience h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(90deg, #00fff2, #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .experience-timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, #00fff2, transparent);
        }

        .experience-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
            border: 1px solid rgba(0, 255, 242, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }

        .experience-item:hover {
            border-color: #00fff2;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 242, 0.2);
        }

        .experience-item h3 {
            color: #00fff2;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .company {
            color: #00ffaa;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .date {
            color: #b0b0b0;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .experience-item ul {
            list-style: none;
            padding-left: 20px;
        }

        .experience-item li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .experience-item li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #00ffaa;
        }

        /* Projects Section */
        #projects {
            padding: 100px 5%;
        }

        #projects h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(90deg, #00fff2, #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 242, 0.2);
            transition: all 0.3s ease;
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-10px);
            border-color: #00fff2;
            box-shadow: 0 20px 40px rgba(0, 255, 242, 0.2);
        }

        .project-content {
            padding: 25px;
        }

        .project-card h3 {
            color: #00fff2;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .project-card p {
            color: #b0b0b0;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-links a {
            color: #00ffaa;
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 15px;
            border: 1px solid rgba(0, 255, 170, 0.3);
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .project-links a:hover {
            background: rgba(0, 255, 170, 0.1);
            border-color: #00ffaa;
        }

        /* Contact Section */
        #contact {
            padding: 100px 5%;
            text-align: center;
        }

        #contact h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            background: linear-gradient(90deg, #00fff2, #00ffaa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 242, 0.2);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: #00fff2;
            transform: translateY(-5px);
        }

        .contact-card h3 {
            color: #00fff2;
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            color: #e0e0e0;
            font-size: 24px;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            color: #00fff2;
            background: rgba(0, 255, 242, 0.1);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: rgba(10, 10, 10, 0.95);
            padding: 40px 5%;
            text-align: center;
            border-top: 1px solid rgba(0, 255, 242, 0.2);
            margin-top: 50px;
        }

        footer p {
            color: #b0b0b0;
            margin-bottom: 20px;
        }

        .copyright {
            color: #00ffaa;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .home-section {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }
            
            .intro h2 {
                font-size: 2.5rem;
            }
            
           
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }
            
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -8px);
            }
            
            .intro h2 {
                font-size: 2rem;
            }
           
            
            .skills-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .experience-timeline::before {
                left: 30px;
            }
        }

        @media (max-width: 480px) {
            .intro h2 {
                font-size: 1.8rem;
            }
            
            .buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .contact-info {
                flex-direction: column;
            }
        }

        /* Section Dividers */
        section {
            position: relative;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            max-width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #00fff2, transparent);
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* https://github.com/emmabostian/developer-portfolios?tab=readme-ov-file  */

/* <!-- https://asad-saeed-portfolio.vercel.app  */