        :root{
            --orange:#ff4500;
            --blue:#1e90ff;
            --yellow:#FFFF00;
            --green:#008631;
            --red:#FF0000;
            --black:#000000;

        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        /* Navigation */
        nav {
            background-color: #2c3e50;
            padding: 1rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-menu {
            display: flex;
            justify-content: flex-end;
            list-style: none;
            margin: 0 auto;
        }

        .nav-menu li a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .nav-menu li a:hover {
            color: #3498db;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 0.5rem;
        }


        /* Hero Section */
        .hero {
            height: 100vh;
            background: radial-gradient(#219ebc,#023047);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 1rem;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            padding: 0.8rem 2rem;
            background-color: white;
            color: #3498db;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }

        /* Projects Section */
        .projects {
            padding: 5rem 2rem;
            background-color: #f9f9f9;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            width: 100%;
            height: 200px;
            background-color: #ddd;
        }
        img{
            width: 100%;
            height:200px;
        }
        a{
            text-decoration: none;
            color: black;
        }

        .project-info {
            padding: 1.5rem;
        }
        #skills {
            background: #f8f9fa;
            padding: 5rem 2rem;
        }

        .skills-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .skill-item {
            padding: 1rem;
        }

        .skill-item i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #3498db;
        }
        #html{
           color:var(--orange); 
        }
        #js{
            color:var(--yellow);
        }
        #git{
            color:var(--orange);
        }
        #nodejs{
            color:var(--green);
        }
        #java{
            color:var(--red);
        }
        #mongo{
            color:var(--green);
        }
        #linux{
            color:var(--red);
        }
        #virtualization{
            color:var()
        }
         /* About Section */
         #about {
            padding: 5rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        #content1, #content2{
            margin-bottom: 10px;
        }


        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            background-color: #2c3e50;
            color: white;
            text-align: center;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            margin-top: 0.5rem;
        }

        .submit-button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-button:hover {
            background-color: #2980b9;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #3498db;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 0.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hamburger{
                display: block;
            }
            .hero-content h1 {
                font-size: 2rem;
            }

            .nav-menu {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: #2c3e50;
                flex-direction: column;
                padding: 1rem 0;
                text-align: center;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .nav-menu li a {
                display: block;
                padding: 0.5rem 1rem;
            }
        }