body 
{
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: pink;
}

/* Particles Background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.menu 
{
  display: flex;
  justify-content: center;  /* Centers menu items horizontally */
  align-items: center;      /* Centers vertically */
  gap: 50px;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;              /* Full width */
  height: 40px;             /* Top nav height */
  z-index: 20;
}
.menu a
 {
  color:#b0e0e6;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  transition: color 0.1s, transform 0.3s;
}

.menu a:hover {
  color: 	#FFFFFF;
  transform: translateY(-3px);
}

/* Text Section */
.header-text {
  max-width: 1000px;
  margin: 0 auto; /* Center the block horizontally */
  text-align: center; /* Center the text inside */
  padding: 60px 30px; /* Optional: Add some vertical/horizontal spacing */
}

.header-text h1 {
	color: #FF1493; 
  margin: 20px 0 10px 0;
  font-size: 2.5em;
  font-weight: bold;
  padding: 10px;
}

.header-text h3 {
  margin: 10px 0;
  font-size: 1.5em;
  color:  #b0e0e6;
  padding-bottom:-20px; 
  margin-bottom:10px;
 }
 
 
 .tagline {
  font-style: italic;
  color: #b0e0e6;
  margin-top: 10px;
  font-size: 1.3em;
}

/* Image Section */
.profile-image img {
  width: 450px; /* adjust as needed */
  height: 250px;
  object-fit: cover;               /* keeps aspect ratio nicely cropped */
  
  display: block;
  margin: -40px auto;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.4);  /* blends with particles background */
  box-shadow: 0 0 20px rgba(255, 192, 203, 0.6), 0 0 40px rgba(255, 255, 255, 0.2); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}





.aboutme {
  
  padding: 40px;
  border-radius: 12px;
  margin: 40px auto;
  color:black;
  max-width: 800px;
  box-shadow: 0 0 15px #ff69b4;
  transition: box-shadow 0.3s ease-in-out;
  
  /* Add background image */
 

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: brightness(0.8); /* Optional: Darkens image for better text visibility */
}

.pi {
  
  background-color:#000;
  color:#b0e0e6;
  font-family: 'Segoe UI', 'Calibri', 'Tahoma', sans-serif;
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 30px;
  text-align: justify;
}



/* Skills Section Container */
.skills {
  padding: 20px;
  border-radius: 10px;
  color:#b19cd9;
}


/* Skills Section Title */
.skills p {
  color: pink;
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  color:#b19cd9;
  
}

/* Skills Grid */
.skills .skills-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
  font-size: 1.3em;
 }
 
/* Skill Card */
.skill-card {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  font-size: 1.3em;
  border-radius: 10px;
  background-color: black;
  color: #FF1493; /* Optional: Deep Pink text */
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.5); /* Pink glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


 
.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

.skill-card p {
  color: pink;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.3em
 
 }
 
 
.skill-card ul {
  color: #b0e0e6;
  font-size: 18px;
  list-style-type: square;
  padding-left: 20px;
 }


 
 
 
 
 .experience-card {
  color: #b0e0e6;/* peach to thistle */
  background-color: black;
  font-size: 30px;
  font-style: italic;
  padding: 50px;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.6);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1.5s ease-in-out;
  text-align: left;
}

.project-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 1.2s ease-in-out;
}

.project-card {
  display: flex;
  flex-direction: column;
  background-color: purple;
  padding: 30px;
  max-width: 700px;
  width: 100%;
  color: white;
  transition: all 0.4s ease-in-out;
  position: relative;
  border-radius: 10px;
}

.project-card:hover {
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.7);
  transform: scale(1.02);
}

.project-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.tech-stack {
  font-style: italic;
  color: #ffc0cb;
  margin-bottom: 10px;
}

.project-description {
  font-size: 16px;
}





@keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

  
	  .text-section {
	    flex: 1;
	    padding-right: 20px;
	    font-style: italic;
	  }

      .image-section {
        flex: 0 0 200px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .image-section img {
        width: 100px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 0 10px rgba(255, 182, 193, 0.4);
      }

	  .image-floating{
		padding-left:150px;
	  }
      .project {
        color: pink;
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 10px;
      }

      .project-title {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        margin: 10px 0;
      }

      .tech-stack {
        color: #b0e0e6;
        font-size: 18px;
        margin-bottom: 15px;
      }

      .project-description {
        color: #d3d3d3;
        font-size: 17px;
        line-height: 1.6;
      }
	  
	  html {
	    scroll-behavior: smooth;
	  }

	  #projects:target {
	    animation: highlight 1.5s ease-in-out;
	    border-radius: 20px;
	    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
	  }

	  @keyframes highlight {
	    0% {
	      background-color: #fff0f5; /* Light pink on arrival */
	    }
	    100% {
	      background-color: transparent;
	    }
	  }

  	
  	

      .highlight {
        color: #ff69b4;
        font-weight: bold;
      }

      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
      }

      /* Your Image on Right Bottom */
      .profile-corner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 10;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid pink;
        box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
        overflow: hidden;
      }

      .profile-corner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

.social-icons {
	margin-top: -90px;
 
 }

.social-icons a img {
  
  width: 30px;
  height: 20px;
  margin: 0 10px;
  color: #b0e0e6;
  margin-right:150px;
  transition: transform 0.2s ease, filter 0.3s ease;
  padding-right:20px;
}

.social-icons a img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px #00ffff);
  
}

html {
  scroll-behavior: smooth;
}

.aboutme:target {
  animation: highlight 2s ease-in-out;
  border: 2px solid #ff69b4;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(255, 192, 203, 0.05); /* soft pink glow */
}

/* Add the keyframes for highlight effect */
@keyframes highlight {
  0% {
    box-shadow: 0 0 10px #ff69b4;
    transform: scale(1.02);
  }
  50% {
    box-shadow: 0 0 25px #ff69b4;
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 10px #ff69b4;
    transform: scale(1.02);
  }
}


@keyframes highlight {
  0%   { background-color: rgba(255, 192, 203, 0.4); }
  50%  { background-color: rgba(255, 192, 203, 0.1); }
  100% { background-color: transparent; }
}
.project-container {
  width: 100%;
  padding: 80px;
}

.project-wrapper {
  position:relative;
  margin-right:190px;
  margin-bottom: 70px;
}

/* Project Card Box */
.project-card {
  padding:40px;
  margin: auto;
  width: 100%;
  background-color: #2c2c2c;
  border-radius: 10px;
 
}
.project-title {
  font-size: 30px;
  color: #fff;
  text-align:left;
  margin-bottom: 10px;
  font-weight: 600;
  padding-right:100px;
}

.tech-stack {
  font-size: 20px;
  color: #b0e0e6;
  font-style: italic;
  margin-bottom: 15px;
  text-align:left;
  
}

.project-description {
  font-size: 20px;
  color: #b0e0e6;
  font-style: italic;
  line-height: 2;
  text-align:left;
}

.highlight {
  color: #b0e0e6;
  font-weight: bold;
}

/* Make the section fill the screen and center content */
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* full height */
  background-color:black ;/* optional background */
  padding: 20px;
  box-sizing: border-box;
}

/* Style the container */
.contact-container {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

/* Style the form */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm input,
#contactForm textarea {
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#contactForm button {
  padding: 12px;
  font-size: 1em;
  background-color: #FF1493;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#contactForm button:hover {
  background-color: #e01380;
}

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


html {
  scroll-behavior: smooth;
}

.skills.highlight {
  box-shadow: 0 0 25px 5px rgba(255, 20, 147, 0.6); /* Deep pink glow */
  transition: box-shadow 0.5s ease-in-out;
}



html {
  scroll-behavior: smooth;
}

.highlight {
  box-shadow: 0 0 15px 5px #ff69b4;
  transition: box-shadow 0.5s ease-in-out;
}


/* Highlight animation */
.highlighted {
  animation: pulseGlow 1.5s ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px #ff69b4;
  }
  50% {
    box-shadow: 0 0 50px #ff69b4, 0 0 30px #ff1493;
  }
  100% {
    box-shadow: 0 0 20px #ff69b4;
  }
}


