* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
  }
  #bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: black;
  }
  
  .container {
    width: 90%;
    margin: auto;
    max-width: 1100px;
  }
  section {
    padding: 80px 0;
  }
  #hero {
    text-align: center;
    padding-top: 150px;
  }
  #hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  .highlight {
    color: #fff;
    background: linear-gradient(to right, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  #hero .title {
    font-size: 1.2em;
    color: #ccc;
  }
  .scroll-btn {
    display: inline-block;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 10px 20px;
    transition: 0.3s;
  }
  .scroll-btn:hover {
    background-color: #fff;
    color: #000;
  }
  h2 {
    font-size: 2em;
    margin-bottom: 20px;
    border-left: 4px solid white;
    padding-left: 10px;
  }
  ul {
    list-style: square;
    margin-left: 20px;
  }
  .project {
    margin-bottom: 20px;
  }
  a {
    color: #fff;
    text-decoration: underline;
  }
  footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #444;
    font-size: 0.9em;
    color: #aaa;
  }
  
  /* ----aabout meeee */

  #about {
    padding: 6rem 2rem;
    background: #000;
    color: #fff;
  }
  .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .about-highlights li {
    list-style: none;
    padding: 0.5rem 0;
    position: relative;
  }
  .about-highlights li::before {
    content: "★";
    position: absolute;
    left: -1.5rem;
    color: #999;
  }
  
  /* ------------------------ */

  /* Skillllssssssssss-------- */
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .skill-category {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  .skill-category:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
  }
  

  /* --------------- */

  


  /* -----Project-------- */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .project-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
  }
  .project-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
  }
  

  /* ------------------ */


/* ----------Experinceee */
.timeline {
    border-left: 2px solid rgba(255,255,255,0.1);
    margin-left: 1rem;
    padding-left: 2rem;
  }
  .timeline-item {
    margin-bottom: 2rem;
    position: relative;
  }
  .timeline-item::before {
    content: "●";
    color: gray;
    position: absolute;
    left: -1.2rem;
    top: 0.2rem;
  }
  
  /* ------------------- */


  /* Achievements Section */
#achievements {
    padding: 50px 20px;
  }
  
  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .achievement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
  }
  
  .achievement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .achievement-card p {
    font-size: 1rem;
    color: #ccc;
  }
  
  .achievement-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
  }

  
/* Contact Me: Improved UI */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  #contact-form button {
    padding: 10px 20px;
    border: none;
    background-color: black;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  #contact-form button:hover {
    background-color: #333;
    transform: scale(1.05);
  }
  
  #contact p {
    text-align: center;
    margin-top: 20px;
  }
  
  #contact a {
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  #contact a:hover {
    color: gray;
  }
  .social-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background-color 0.3s;
}

.social-btn.linkedin {
  background-color: #0a66c2;
}
.social-btn.linkedin:hover {
  background-color: #004182;
}

.social-btn.x {
  background-color: #000000;
  border: 1px solid #fff;
}
.social-btn.x:hover {
  background-color: #333333;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-btn.instagram:hover {
  opacity: 0.9;
}

.social-btn.whatsapp {
  background-color: #25d366;
}
.social-btn.whatsapp:hover {
  background-color: #1da851;
}