/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1e3c72, #2a5298, #6dd5ed, #2193b0);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    overflow-x: hidden;
  }
  
  /* Navbar */
  header {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #6dd5ed;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 90vh;
    padding: 2rem;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.45);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  }
  
  .profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #6dd5ed;
    object-fit: cover;
    margin-bottom: 1rem;
    animation: pulse 4s infinite ease-in-out;
  }
  
  .hero h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .hero span {
    color: #6dd5ed;
  }
  
  .hero p {
    font-size: 1.1rem;
    color: #e6f7ff;
  }
  
  /* About Section */
  .about,
  .projects,
  .contact {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    margin: 2rem auto;
    border-radius: 12px;
    max-width: 900px;
  }
  
  .about h2,
  .projects h2,
  .contact h2 {
    margin-bottom: 1rem;
    color: #6dd5ed;
  }
  
  .about p,
  .project-card p,
  .contact p {
    color: #e6f7ff;
  }
  
  /* Projects */
  .project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .project-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
    color: #e6f7ff;
  }
  
  /* Animations */
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 15px rgba(109, 213, 237, 0.4);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 35px rgba(109, 213, 237, 0.7);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 15px rgba(109, 213, 237, 0.4);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hero h2 {
      font-size: 1.6rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  }
  