/* Reset */
body, h1, p, ul, li, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #fff;
    overflow-x: hidden;
  }
  
  header nav ul {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
  }
  
  header nav ul li a {
    color: #fff;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  header nav ul li a:hover {
    color: #0f0;
  }
  
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    height: 100vh;
  }
  
  .hero .content h1 {
    font-size: 48px;
    line-height: 1.4;
  }
  
  .hero .content h1 span {
    color: #0f0;
  }
  
  .hero .content p {
    margin: 10px 0;
  }
  
  .hero .content p .highlight {
    color: #0f0;
  }
  
  .hero .social-icons {
    display: flex;
    margin-top: 20px;
  }
  
  .hero .social-icons a {
    font-size: 20px;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .hero .social-icons a:hover {
    color: #0f0;
  }
  
  .hero .btn {
    display: inline-block;
    background: #0f0;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .hero .btn:hover {
    background: #fff;
  }
  /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
  }
  
  .navigation {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    list-style: none;
  }
  
  .navigation li {
    margin: 0 15px;
  }
  
  .navigation a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .navigation a:hover {
    color: #00ff00;
  }
  
  .about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
    margin-top: 60px; /* Offset for fixed header */
  }
  
  .profile-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-text {
    flex: 2;
    margin-left: 50px;
  }
  
  .about-text p {
    margin-bottom: 10px;
  }
  /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
  }
  
  .skills-section {
    padding: 50px;
  }
  
  .skills-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .skills-container {
    width: 80%;
    margin: 0 auto;
  }
  
  .skill {
    margin-bottom: 20px;
  }
  
  .skill label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
  }
  
  .progress-bar {
    width: 100%;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .progress {
    background: #00ffff;
    padding: 5px;
    text-align: center;
    color: #000;
    border-radius: 5px 0 0 5px;
  }
  
  .professional-skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .circle-skill {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px;
  }
  
  .circle-skill svg {
    width: 100%;
    height: 100%;
  }
  
  circle {
    fill: none;
    stroke-width: 10;
    stroke: #333;
    r: 40;
    cx: 50;
    cy: 50;
  }
  
  circle:nth-child(2) {
    stroke: #00ffff;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 1s;
  }
  
  .circle-skill .label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    font-size: 14px;
  }
  /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h2 span {
    color: #00ffff;
  }
  
  .content {
    padding: 50px;
    text-align: center;
  }
  
  .content h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00ffff;
  }
  
  .content p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .content ul {
    list-style-type: none;
    padding: 0;
  }
  
  .content-list li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .content-list li i {
    margin-right: 10px;
    color: #00ffff;
  }
  
  .content-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: #ffffff;
    transition: color 0.3s;
  }
  
  .content-icons a:hover {
    color: #00ffff;
  }
  
  .container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .contact-form {
    width: 100%;
    max-width: 500px;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #0f172a;
    color: #ffffff;
  }
  
  .contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #00ffff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #00cccc;
  }
  
  footer {
    margin-top: 50px;
    text-align: center;
    padding: 10px;
    background-color: #333;
  }
  
  footer p {
    font-size: 14px;
    color: #ffffff;
  }
  
  .top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #00ffff;
    background-color: #333;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .top:hover {
    background-color: #00cccc;
  }
  
  /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
  }
  
  .contact-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px;
  }
  
  .contact-content {
    max-width: 500px;
  }
  
  .contact-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .contact-content h1 span {
    color: #00ffff;
  }
  
  .contact-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00ffff;
  }
  
  .contact-content p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .contact-details {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .contact-details li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .contact-details li i {
    margin-right: 10px;
    color: #00ffff;
  }
  
  .social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: #5984b6;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #00ffff;
  }
  
  .form-container {
    max-width: 400px;
    width: 100%;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
  }
  
  .contact-form textarea {
    resize: none;
    height: 100px;
  }
  
  .contact-form button {
    padding: 10px;
    background-color: #00ffff;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #00cccc;
  }
  
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #00ffff;
    background-color: #697d3c;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
  }
  
  .scroll-to-top:hover {
    background-color: #00cccc;
  }
 
  .profile-container {
    position: relative;
    width: 500px;
    height: 250px;
  }
  
  .glow-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.897) 50%, transparent 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.7), 0 0 40px rgba(0, 191, 255, 0.5), 0 0 60px rgba(0, 191, 255, 0.3);
    animation: glow 2s infinite alternate;
  }
  
  .glow-circle img {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
  }
  
  @keyframes glow {
    from {
      box-shadow: 0 0 20px rgba(4, 0, 255, 0.297), 0 0 40px rgba(0, 255, 21, 0.5), 0 0 60px rgba(0, 191, 255, 0.3);
    }
    to {
      box-shadow: 0 0 30px rgba(0, 8, 255, 0.9), 0 0 60px rgba(0, 255, 76, 0.7), 0 0 90px rgba(0, 191, 255, 0.5);
    }
 } 
    
  /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Header */
  .main-header {
    background-color: #1e293b;
    padding: 20px 0;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
  }
  
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
  }
  
  .navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navigation ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #9ca3af;
    transition: color 0.3s;
  }
  
  .navigation ul li a:hover {
    color: #00ffff;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    position: relative;
  }
  
  .hero-content {
    max-width: 50%;
  }
  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero-content h2 {
    font-size: 48px;
    color: #00ff00;
    margin-bottom: 10px;
  }
  
  .hero-content h4 {
    font-size: 20px;
    color: #00ff00;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    font-size: 30px;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    color: #00ffff;
    transform: scale(1.2);
  }
  
  .btn {
    padding: 10px 20px;
    background-color: #00ff00;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #00cccc;
  }
  
  /* Profile Picture */
  .profile-container {
    position: relative;
  }
  
  .glowing-circle {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 30, 255, 0.7), 0 0 40px rgba(255, 0, 255, 0.5), 0 0 60px rgba(0, 255, 68, 0.3);
    animation: glow 2s infinite alternate;
  }
  
  .glowing-circle img {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
  }
  
  @keyframes glow {
    from {
      box-shadow: 0 0 20px rgba(0, 136, 255, 0.7), 0 0 40px rgba(0, 255, 145, 0.5), 0 0 60px rgba(183, 255, 0, 0.3);
    }
    to {
      box-shadow: 0 0 30px rgba(255, 0, 255, 0.9), 0 0 60px rgba(255, 0, 81, 0.7), 0 0 90px rgba(255, 0, 255, 0.5);
    }
  }
  
  /* Decorative Elements */
  .decorative-elements {
    position: absolute;
    top: 50px;
    left: -100px;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .flower {
    position: absolute;
    top: 100px;
    left: 200px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #ff00ff, #ffcccc);
    border-radius: 50%;
    filter: blur(50px);
    animation: move 5s linear infinite alternate;
  }
  
  .worm {
    position: absolute;
    bottom: 100px;
    right: 200px;
    width: 200px;
    height: 50px;
    background: linear-gradient(90deg, #00ff00, #ffff00, #00ff00);
    border-radius: 25px;
    filter: blur(10px);
    animation: wiggle 3s infinite ease-in-out;
  }
  
  @keyframes move {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(50px);
    }
  }
  
  @keyframes wiggle {
    0%, 100% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(15deg);
    }
  }

 