:root {
            --primary-color: #2ecc71;
            --secondary-color: #27ae60;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            cursor: default;
        }

        body {
            line-height: 1.6;
            color: var(--dark-color);
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 0 2rem;
        }

        /* Header */
        .header {
            background: var(--dark-color);
            color: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
        }

        .profile {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .profile-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 5px solid var(--primary-color);
        }

        /* Sections */
        .section {
            padding: 4rem 0;
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        /* Projects */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
        }

        /* Skills */
        .skills {
            display: inline-block;
            flex-warp: warp;
            gap: 1rem;
 
        }


        /* Contact */
        .contact {
            text-align: center;
            background: var(--dark-color);
            color: white;
            padding: 70px;
            padding-bottom: 0px;
            padding-top: 28px;
        }

        .h11{
            font-weight: bold;
            margin-top: 15px;
            }

         .link-text{
            cursor:pointer;
            }

        .link-text:hover , .link-text:active{
            color: #218838;
            cursor:pointer;
            }

        .contact-45{
            text-decoration: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            }
     
        .contact-45:hover{
            text-decoration: none;
            background-color: white;
            padding: 5px;
            border-radius: 10px;
            color: black;
            cursor: pointer;
            }
           
        .contact-45:active{
            text-decoration: none;
            background-color: #f0f8ff;
            padding: 5px;
            border-radius: 10px;
            color: black;
            cursor: pointer;
            }
          
       
          .h11{
              font-weight: bold;
              font-size: 20px;
              padding-bottom: 10px;
              }
            
            

        /* Responsive */
        @media (max-width: 768px) {
            .profile {
                flex-direction: column;
                text-align: center;
            }
        }