
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
    line-height: 1.6;
  }
  
a {
    color: #fff;
    text-decoration: none;
  } 
  
  
 /*   a:hover {
    color: #00cc66;
  } */
  
  /* Header */
  header {
    background-color: #333;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 1.0rem;
    margin: 0;
    padding: 0;
  }
  
  nav a {
    font-weight: 500;
  }

  .section {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  
#home {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #1a1a1a, #333, #00ff88, #1a1a1a);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
}
  
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.hero {
  text-align: center;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #00ff88;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4rem;
  margin: 1rem 0 0.5rem;
}

.hero p {
  font-size: 1.5rem;
  margin: 0 0 2rem;
}

.btn {
  background-color: #00ff88;
  color: #1a1a1a;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00cc66;
}
  

  .about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .profile-pic {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
  }
  

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .project-card {
    background-color: #333;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
  }
  
  .project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  

  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
  }
  
  .contact-form button {
    align-self: center;
  }
  
  .social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .social-links a {
    font-size: 1.5rem;
    color: #00ff88;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #00cc66;
  }
  

  footer {
    background-color: #333;
    padding: 1rem;
    text-align: center;
  }
  

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease-out;
  }

  .thank-you-message {
    text-align: center;
    padding: 5rem 2rem;
  }
  
  .thank-you-message h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .thank-you-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }


header {
  background-color: #333;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.linkedin-icon {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.linkedin-icon:hover {
  color: #0077b5; 
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#lind {
  color: #00ff88;
}



#experience {
  padding: 2rem;
  background-color: #222;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1200px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.experience-card {
  background-color: #333;
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00ff88;
}

.experience-card .company {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.experience-card .duration {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.experience-card ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.experience-card ul li {
  margin-bottom: 0.5rem;
  color: #ddd;
}

.thank-you-message {
  text-align: center;
  padding: 2rem;
  background-color: #333;
  border-radius: 10px;
  margin-top: 2rem;
  display: none;
}

.thank-you-message p {
  font-size: 1.2rem;
  color: #00ff88;
}

nav ul li a i {
  margin-right: 8px
}

.desktop-menu a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.desktop-menu a.active {
    color: #00ff88; 
    font-weight: bold;
}

@media only screen and (max-width: 440px) {
  #profile-pic {
    display: none;
  }
  
}
