        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2a3a, #2c3e50);
            color: #ecf0f1;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }
        



        .profile-image {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            margin-bottom: 25px;
            overflow: hidden;
            border: 5px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #3498db, #2ecc71);
        }

        .profile-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .profile-photo:hover {
            transform: scale(1.05);
        }









        .container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
    .logo {
            font-size: 24px;
            font-weight: bold;
            color: #3498db;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            
        }
        
        .nav-links a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #3498db;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            right: 0;
            background-color: #3498db;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Main Content Styles */
        .main-content {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .profile-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .profile-image {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 5px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        .profile-image i {
            font-size: 80px;
            color: white;
            opacity: 0.8;
        }
        
        .info-section {
            flex: 2;
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .greeting {
            font-size: 28px;
            margin-bottom: 15px;
            color: #3498db;
        }
        
        .name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2ecc71;
        }
        
        .location {
            margin-bottom: 25px;
            color: #bdc3c7;
            font-size: 18px;
        }
        
        .description {
            margin-bottom: 30px;
            line-height: 1.8;
            font-size: 18px;
            color: #ecf0f1;
        }
        
        .skills-section h3 {
            margin-bottom: 20px;
            color: #3498db;
            font-size: 22px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 8px;
            display: inline-block;
        }
        
        .skills-list {
            list-style-type: none;
            
        }
        
        .skills-list li {
            
            margin-bottom: 12px;
            padding-right: 25px;
            position: relative;
            font-size: 18px;
        }
        
        .skills-list li:before {
            content: "▸";
            color: #2ecc71;
            font-weight: bold;
            position: absolute;
            right: 0;
            font-size: 20px;
        }
        
        /* Footer Styles */
        footer {
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bdc3c7;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .social-links a {
            color: #bdc3c7;
            font-size: 40px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: #3498db;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
            }
            
            .nav-links {
                gap: 15px;
                
                
            }
            
            .nav-links a {
                font-size: 16px;
                padding: 20px;
                font-weight: bold;
            }
            
            .profile-image {
                width: 180px;
                height: 180px;
            }
        }
        
        @media (max-width: 480px) {
            header {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links {
                gap: 10px;
            }
            
            .nav-links a {
                font-size: 14px;
            }
            
            .profile-image {
                width: 150px;
                height: 150px;
            }
            
            .greeting {
                font-size: 24px;
            }
            
            .name {
                font-size: 20px;
            }
        }
