
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #11071F; 
            color: #fff; 
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
          
            background: rgba(17, 7, 31, 0.95); 
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ff9500;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 5% 4rem;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .hero-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #ff9500;
            box-shadow: 0 0 30px rgba(255, 149, 0, 0.3);
        }

        .hero-image img {
            width: 90%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: #ff9500;
        }

        .hero-content h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .hero-content p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #ff9500;
            color: #fff;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #ff7700;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 149, 0, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #ff9500;
            padding: 0.8rem 2rem;
            border: 2px solid #ff9500;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: #ff9500;
            color: #fff;
        }

        /* Section Styles */
        section {
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            color: #ff9500;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto 2rem;
            text-align: center;
            font-size: 1.1rem;
        }

        .skills {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .skill-tag {
            background: rgba(255, 149, 0, 0.2);
            color: #ff9500;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            border: 2px solid #ff9500;
            font-weight: 500;
        }

        /* Experience Section */
        .experience-grid {
            display: grid;
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .experience-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            display: flex;
            gap: 1.5rem;
            align-items: start;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .experience-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(255, 149, 0, 0.2);
        }

        .experience-icon {
            width: 60px;
            height: 60px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .experience-details h3 {
            color: #ff9500;
            margin-bottom: 0.5rem;
        }

        .experience-date {
            color: #fff; 
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        
        
        /* Project Grid */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(255, 149, 0, 0.2);
        }

        .project-card h3 {
            color: #ff9500;
            margin-bottom: 1rem;
        }

        .project-card p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-intro {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .contact-list {
            max-width: 500px;
            margin: 0 auto;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(255, 149, 0, 0.2);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #ff9500;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .contact-item a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 2rem 5%;
            text-align: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: #ff9500;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: #fff;
            color: #ff9500;
            transform: translateY(-5px);
        }

        .copyright {
            color: #fff; /* Changed from grey to white */
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                position: absolute;
                right: 5%;
                top: 1rem;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s;
            }

            nav ul.active {
                max-height: 500px;
            }

            .hero {
                padding-top: 5rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content h2 {
                font-size: 1.3rem;
            }

          

             

            .hero-image {
                width: 200px;
                height: 200px;
            }
        }
