  /* Overall CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Navbar */
  .navbar {
    width: 100%;
    padding: 20px 40px;
    background:black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
  }
  
  .logo span {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    display: block;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    transition: 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  .connect-btn {
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(90deg, #a855f7, #f97316);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .connect-btn:hover {
    opacity: 0.9;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
  }
  
  .name {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: popUp 2s ease-in-out, gradientShift 5s ease infinite;
  }
  
  .quote {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #aaa;
    font-style: italic;
    animation: fadeInUp 2s ease-in-out;
  }
  
  /* Animations */
  @keyframes popUp {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .name {
    background-size: 200% 200%;
  }
  

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .connect-btn {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  
    .name {
      font-size: 2.5rem;
    }
  
    .quote {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .name {
      font-size: 2rem;
    }
  
    .quote {
      font-size: 0.95rem;
    }
  }
  .tagline {
    margin-top: 0.8rem;
    font-size: 1rem;
    color: #e2e2e2;
    font-weight: 500;
    max-width: 90%;
    line-height: 1.6;
    animation: fadeInUp 2.5s ease-in-out;
  }
  

  @media (max-width: 768px) {
    .tagline {
      font-size: 0.95rem;
      text-align: center;
      padding: 0 20px;
    }
  }
  
  @media (max-width: 480px) {
    .tagline {
      font-size: 0.9rem;
      padding: 0 15px;
    }
  }

.tech-stack {
  color: #aaa; 
  font-size: 1rem;
  margin-top: 1rem;
  font-style: italic;
  letter-spacing: 0.5px;
}
.about {
  background-color: black;
  width: 100vw;
  padding: 120px 0;
}

.about-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-heading {
  font-size: 2.8rem;
  font-weight: 600;
  color: #a855f7;
  text-align:center;
  margin-left: 80px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap:20px;
  margin-left: 80px;
}

.text-section {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  min-width: 300px;
}

.img-section {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 300px;
  
}

.img-section img {
  width: 100%;
  max-width: 350px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.07);
  animation: popUp 2s ease-in-out;

  transform: scale(1.1); 
  object-fit: cover;   
}



@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-heading {
    font-size: 2rem;
  }

  .text-section p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .about-img img {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
}

.skills {
  background-color: black;
  width: 100vw;
  padding: 100px 0;
}

.skills-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

.skills-heading {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #a855f7, #ec4899, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
}

.skill-card {
  background: linear-gradient(145deg, #1f1f1f, #151515);
  color: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
  background: linear-gradient(145deg, #1e1e1e, #121212);
}


@media (max-width: 768px) {
  .skills-heading {
    font-size: 2rem;
  }

  .skill-card {
    font-size: 1rem;
    padding: 20px;
  }
}
.projects-section {
  background-color: #0f0f1b;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.section-title {
  font-size: 2.5rem;
  background: linear-gradient(to right, #a855f7, #ec4899, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #aaa;
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
  padding: 0 10px;
  font-size: 1rem;
}

.projects-grid {
  padding-left: 80px;
  padding-right: 80px;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.project-card {
  background-color: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.project-image {
  height: 180px;
  background-color: #2c2c3e;
  background-size: cover;
  background-position: center;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.3rem;
  color: #f9fafb;
  margin-bottom: 10px;
}

.project-info p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  background: linear-gradient(to right, #a855f7, #ec4899);
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .project-info h3 {
    font-size: 1.1rem;
  }

  .project-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    border-radius: 12px;
  }

  .project-image {
    height: 160px;
  }
}
.contact-section {
  background-color: #000;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 20px;
  background: linear-gradient(to right, #a855f7, #ec4899, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  animation: gradientShift 6s ease infinite;
  background-size: 200% 200%;
}

.contact-subtitle {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 50px;
  max-width: 700px;
  margin-inline: auto;
  padding: 0 10px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border: 2px solid #a855f7;
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #a855f7;
  border-color: #ec4899;
}

.contact-form button {
  background: linear-gradient(to right, #a855f7, #f97316);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.social-icons a {
  color: #a855f7;
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover img{
  transform: scale(1.3);
  box-shadow: 0 0 15px 5px #ec4899; 

}
.social-icons a img {
  object-fit: contain;   
  vertical-align: middle;
  transition: transform 0.3s ease;
}


@media (max-width: 768px) {
  .contact-form {
    width: 90%;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }
}

.footer-section {
  background-color:black;
  padding: 20px 0;
  text-align: center;
}

.main-footer p {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ec4899, #a855f7); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sparkle 2s infinite alternate;
}


@keyframes sparkle {
  0% {
    filter: drop-shadow(0 0 2px #ec4899);
  }
  100% {
    filter: drop-shadow(0 0 6px #a855f7);
  }
}



