
* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  scroll-behavior: smooth;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --accent-pink: #ff4da6;
  --accent-gradient: linear-gradient(135deg, #ff4da6, #ff00ea);
  --dark-bg: rgba(0,0,0,0.8);
}


header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  background-color: var(--dark-bg);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  border: 2px solid var(--accent-pink);
  z-index: 1000;
}

.logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

li a {
  position: relative;
  color: white;
  font-weight: 300;
}

li a::before {
  position: absolute;
  content: '';
  width: 0;
  left: 0;
  height: 5px;
  top: 25px;
  border-radius: 1rem;
  transition: 0.3s ease-in-out;
  background: var(--accent-gradient);
}

li a:hover::before {
  width: 100%;
}


section {
  min-height: 100vh;
  padding: 8rem 12%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  color: var(--accent-pink);
  text-shadow: 1px 1px 3px rgba(255,0,234,0.3);
  margin-bottom: 1rem;
}


.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home .home-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.home img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--accent-pink);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home img:hover {
  transform: rotate(-3deg) scale(1.05);
  box-shadow: 0 0 25px var(--accent-pink);
}


.about {
  background: linear-gradient(to right, #fff, #ffe6f2);
  border-left: 5px solid var(--accent-pink);
  padding: 4rem;
  border-radius: 1rem;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 2rem;
  align-items: start;
}

.about-left, .about-right {
  background: #fff;
  padding: 2rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 15px rgba(255, 77, 166, 0.1);
}

.about h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #333;
  border-bottom: 2px solid var(--accent-pink);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.about h4 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: black;
}

.about ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.about ul li::before {
  content: "✔";
  color: var(--accent-pink);
  position: absolute;
  left: 0;
}



.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project {
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 77, 166, 0.4);
}

.project a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-pink);
  font-weight: 500;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 10px rgba(255,77,166,0.3);
  outline: none;
}

button, .btn {
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover, .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--accent-pink);
}


.resume {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;   
}

.resume .btn {
  align-self: flex-start; 
}

.qr-code {
  margin-top: 1rem; 
  display: flex;
  justify-content: flex-start; 
}


.qr-code img {
  width: 200px;
  height: 200px;
  border: 3px solid var(--accent-pink);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.qr-code img:hover {
  transform: scale(1.1);
}

#scrollTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px var(--accent-pink);
  transition: transform 0.3s ease;
}

#scrollTopBtn:hover {
  transform: scale(1.1);
}

