/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  background: rgba(10, 10, 10, 0.8);
  z-index: 1000;
  backdrop-filter: blur(10px); /* Adds a blur effect to the background */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #00ff88;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #00ff88;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header Styles */
header {
  text-align: center;
  margin-top: 25vh; /* Adjusted for nav bar */
  z-index: 1;
}

h1 {
  font-size: 3rem;
  margin: 10px 0;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideIn 1.5s ease-in-out;
}

/* Rest of the CSS remains the same */
/* More Projects Coming Soon Section */
.more-projects {
  text-align: center;
  margin-top: 50px;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  animation: fadeIn 2s ease-in-out;
}

.more-projects h2 {
  font-size: 2rem;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.more-projects p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Fade-In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Loading Animation */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.loader {
  border: 4px solid #00ff88;
  border-top: 4px solid transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Projects Section */
.projects-section {
  text-align: center;
  padding: 150px 20px 50px; /* Add padding-top to avoid overlap with nav bar */
  margin-top: 0; /* Remove margin-top */
  z-index: 1;
  min-height: 100vh;
}

.projects-section h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.projects-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.project-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.project-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-details {
  padding: 20px;
  text-align: left;
}

.project-details h2 {
  font-size: 1.5rem;
  color: #00ff88;
  margin-bottom: 10px;
}

.project-details p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 15px;
}

.project-link {
  display: inline-block;
  color: #00ff88;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: #00a1ff;
}
/* Project Details Section */
.project-details-section {
  padding: 50px 20px;
  margin-top: 10vh;
  z-index: 1;
}

.project-details-section h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 40px;
}

.project-details-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-details-image img {
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.project-details-text {
  max-width: 600px;
}

.project-details-text h2 {
  font-size: 1.8rem;
  color: #00ff88;
  margin-bottom: 10px;
}

.project-details-text p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-details-text ul {
  list-style: none;
  padding: 0;
}

.project-details-text ul li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 10px;
}

.back-link {
  display: inline-block;
  color: #00ff88;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #00a1ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-details-content {
    flex-direction: column;
    text-align: center;
  }

  .project-details-image img {
    width: 100%;
  }

  .project-details-text {
    max-width: 100%;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .project-cards {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    width: 90%;
  }
}
/* About Section */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  margin-top: 10vh;
  z-index: 1;
}

.about-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 40px;
}

.about-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.about-text {
  max-width: 600px;
}

.about-text h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

  .about-image img {
    width: 200px;
    height: 200px;
  }

  .about-text h1 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}
/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 35px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.9);
    width: 100%;
    text-align: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
  }

  .nav-links.active {
    transform: translateX(0);
  }
}
/* Notes Section */
.notes-section {
  text-align: center;
  padding: 150px 20px 50px; /* Add padding-top to avoid overlap with nav bar */
  margin-top: 0; /* Remove margin-top */
  z-index: 1;
  min-height: 100vh;
}

.notes-section h1 {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.notes-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

.notes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.note-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.note-title {
  color: #00ff88;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.note-title:hover {
  color: #00a1ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .notes-section {
    padding: 150px 10px 50px;
  }

  .note-title {
    font-size: 1.2rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
}
.placeholder-content {
  text-align: center;
  margin-top: 50px;
  color: #ccc;
}
/* Particles.js Container */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  z-index: -1;
}

/* Header Styles */
header {
  text-align: center;
  margin-top: 20vh;
  z-index: 1;
}

.logo {
  font-size: clamp(2rem, 1.5vw + 0.5rem, 2rem);
  font-weight: bold;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px #00ff88, 0 0 10px #00ff88, 0 0 20px #00ff88;
  }
  100% {
    text-shadow: 0 0 10px #00a1ff, 0 0 20px #00a1ff, 0 0 40px #00a1ff;
  }
}

h1 {
  font-size: 3rem;
  margin: 10px 0;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideIn 1.5s ease-in-out;
}

p {
  font-size: 1.5rem;
  color: #ccc;
  animation: slideIn 2s ease-in-out;
}
/* Contact Section */
.contact-section {
  text-align: center;
  margin-top: 20vh;
  padding: 20px;
  z-index: 1;
}

.contact-section h1 {
  font-size: 3rem;
  background: linear-gradient(45deg, #00ff88, #00a1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideIn 1.5s ease-in-out;
}

.contact-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Social Media Cards */
.social-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  width: 150px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-card i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.social-card span {
  font-size: 1rem;
  display: block;
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.social-card:hover i {
  color: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-cards {
    flex-direction: column;
    align-items: center;
  }

  .social-card {
    width: 80%;
    margin-bottom: 20px;
  }
}
/* Social Links */
.social-links {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.social-btn {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  animation: float 3s infinite ease-in-out;
}

.social-btn:hover {
  color: #00ff88;
  transform: translateY(-10px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Typewriter Effect */
#typewriter {
  font-size: 1.5rem;
  color: #ccc;
  overflow: hidden;
  white-space: pre-wrap; /* Allow text to wrap */
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 3.5s steps(40, end);
  max-width: 90%; /* Ensure text doesn't overflow the screen */
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Responsive Font Size */
@media (max-width: 768px) {
  #typewriter {
    font-size: 1.2rem; /* Smaller font size for mobile */
  }
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(10, 10, 10, 0.8);
  z-index: 1000;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 5px;
}

.footer-links a {
  color: #00ff88;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}
<<<<<<< HEAD


=======
>>>>>>> 8d967811b58cf58026784b60aa5bdcd8990f4426
