body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #333;
  color: #fff;
  padding: 10px 0;
}

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

header h1.logo {
  margin: 0;
}
/* ...existing code... */
/* ...existing code... */

#home {
  background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
  border-radius: 12px;
  margin: 40px auto;
  padding: 60px 30px 40px 30px;
  max-width: 900px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  opacity: 0;
  transform: translateY(-40px);
  animation: homeFadeIn 1.2s 0.1s ease-out forwards;
  position: relative;
  overflow: hidden;
}

@keyframes homeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
}

.home-content .text {
  flex: 1;
  text-align: left;
  animation: textSlideIn 1.2s 0.3s cubic-bezier(.77,0,.18,1) forwards;
  opacity: 0;
  transform: translateX(-40px);
}

@keyframes textSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-content .text h2 {
  font-size: 2.7rem;
  color: #007bff;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: color 0.4s;
}

.home-content .text p {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  transition: color 0.4s;
}

.home-content .profile {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: profilePopIn 1.2s 0.7s cubic-bezier(.77,0,.18,1) forwards;
  opacity: 0;
  transform: scale(0.7) rotate(-8deg);
}

@keyframes profilePopIn {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

#profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 6px 32px rgba(0,123,255,0.13);
  object-fit: cover;
  transition: transform 0.4s, box-shadow 0.4s;
  background: #fff;
}

.home-content .profile:hover #profile-image {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 12px 48px rgba(0,123,255,0.22);
}

/* Responsive for mobile */
@media (max-width: 700px) {
  #home {
    flex-direction: column;
    padding: 40px 10px 30px 10px;
  }
  .home-content {
    flex-direction: column;
    gap: 24px;
  }
  .home-content .text {
    text-align: center;
  }
}

/* ...existing code... */

#about {
  background: #f9f9f9;
  border-radius: 10px;
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 800px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: center;
}

#about h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

#about p {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
}
/* ...existing code... */

#about {
  background: #f9f9f9;
  border-radius: 10px;
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 800px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease-out forwards;
  transition: box-shadow 0.3s;
}

#about:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.2rem;
  letter-spacing: 1px;
  transition: color 0.4s;
}

#about:hover h2 {
  color: #007bff;
}

#about p {
  color: #555;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
  transition: color 0.4s;
}

#about:hover p {
  color: #222;
}

/* ...existing code... */

/* ...existing code... */
/* ...existing code... */

#home {
  background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
  border-radius: 12px;
  margin: 40px auto;
  padding: 60px 30px 40px 30px;
  max-width: 900px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  opacity: 0;
  transform: translateY(-40px);
  animation: homeFadeIn 1.2s 0.1s ease-out forwards;
  position: relative;
  overflow: hidden;
}

@keyframes homeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
}

.home-content .text {
  flex: 1;
  text-align: left;
  animation: textSlideIn 1.2s 0.3s cubic-bezier(.77,0,.18,1) forwards;
  opacity: 0;
  transform: translateX(-40px);
}

@keyframes textSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-content .text h2 {
  font-size: 2.7rem;
  color: #007bff;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: color 0.4s;
}

.home-content .text p {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  transition: color 0.4s;
}

.home-content .profile {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: profilePopIn 1.2s 0.7s cubic-bezier(.77,0,.18,1) forwards;
  opacity: 0;
  transform: scale(0.7) rotate(-8deg);
}

@keyframes profilePopIn {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

#profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 6px 32px rgba(0,123,255,0.13);
  object-fit: cover;
  transition: transform 0.4s, box-shadow 0.4s;
  background: #fff;
}

.home-content .profile:hover #profile-image {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 12px 48px rgba(0,123,255,0.22);
}

/* Responsive for mobile */
@media (max-width: 700px) {
  #home {
    flex-direction: column;
    padding: 40px 10px 30px 10px;
  }
  .home-content {
    flex-direction: column;
    gap: 24px;
  }
  .home-content .text {
    text-align: center;
  }
}
/* Add to your style.css for a navigation bar styled like the About section */
.styled-nav {
  background: #f9f9f9;
  border-radius: 10px;
  margin: 40px auto 0 auto;
  padding: 18px 30px;
  max-width: 800px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpNav 1.2s ease-out forwards;
  transition: box-shadow 0.3s;
}

.styled-nav:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@keyframes fadeInUpNav {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.styled-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.styled-nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 22px;
  transition: background 0.3s, color 0.3s;
}

.styled-nav ul li a:hover,
.styled-nav ul li a:focus {
  background: #007bff;
  color: #fff;
}

/* ...existing code... */

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

/* ...existing code... */

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover,
nav ul li a:focus {
  background: #fff;
  color: #333;
  outline: none;
}
/* ...existing code... */

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  align-items: center;
  animation: navFadeIn 1.2s 0.2s ease-out both;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav ul li {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  animation: navItemPop 0.7s forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.4s; }
nav ul li:nth-child(2) { animation-delay: 0.6s; }
nav ul li:nth-child(3) { animation-delay: 0.8s; }
nav ul li:nth-child(4) { animation-delay: 1s; }
nav ul li:nth-child(5) { animation-delay: 1.2s; }

@keyframes navItemPop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 22px;
  transition: 
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s,
    transform 0.2s;
  position: relative;
  z-index: 1;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
  transition: width 0.3s, left 0.3s;
  z-index: -1;
}

nav ul li a:hover,
nav ul li a:focus {
  background: #fff;
  color: #007bff;
  box-shadow: 0 4px 18px rgba(0,123,255,0.10);
  transform: translateY(-3px) scale(1.07);
  outline: none;
}

nav ul li a:hover::after,
nav ul li a:focus::after {
  width: 80%;
  left: 10%;
}

/* ...existing code... */

/* ...existing code... */

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

#home {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#home .home-content {
  flex: 1;
}

#home .profile {
  flex: 1;
  text-align: center;
}

#home img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.skills-list {
  list-style: none;
  padding: 0;
}

.skills-list li {
  background: #f4f4f4;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
}
/* ...existing code... */

#skills {
  background: #f4f8fb;
  border-radius: 10px;
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 800px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpSkills 1.2s 0.5s ease-out forwards;
  transition: box-shadow 0.3s;
}

#skills:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@keyframes fadeInUpSkills {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#skills h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.2rem;
  letter-spacing: 1px;
  transition: color 0.4s;
}

#skills:hover h2 {
  color: #007bff;
}

.skills-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.skills-list li {
  background: #fff;
  margin: 5px 0;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  animation: skillPop 0.5s forwards;
}

.skills-list li:nth-child(1) { animation-delay: 0.2s; }
.skills-list li:nth-child(2) { animation-delay: 0.4s; }
.skills-list li:nth-child(3) { animation-delay: 0.6s; }
.skills-list li:nth-child(4) { animation-delay: 0.8s; }
.skills-list li:nth-child(5) { animation-delay: 1s; }

@keyframes skillPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.skills-list li:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,123,255,0.15);
}
/* ...existing code... */

#projects {
  background: #f4f8fb;
  border-radius: 10px;
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 800px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpProjects 1.2s 0.7s ease-out forwards;
  transition: box-shadow 0.3s;
}

#projects:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@keyframes fadeInUpProjects {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#projects h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.2rem;
  letter-spacing: 1px;
  transition: color 0.4s;
}

#projects:hover h2 {
  color: #007bff;
}

.projects-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.projects-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 18px 28px;
  font-size: 1.08rem;
  color: #333;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.9);
  transition: 
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  animation: projectPop 0.6s forwards;
}

.projects-list li:nth-child(1) { animation-delay: 0.9s; }
.projects-list li:nth-child(2) { animation-delay: 1.1s; }
.projects-list li:nth-child(3) { animation-delay: 1.3s; }

@keyframes projectPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.projects-list li:hover {
  background: #007bff;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,123,255,0.15);
  transform: scale(1.04) translateY(-3px);
}

.projects-list li a {
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s;
}

.projects-list li:hover a {
  color: #fff;
  text-decoration: underline;
}

/* ...existing code... */
/* ...existing code... */

#contact {
  background: #f9f9f9;
  border-radius: 10px;
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 800px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUpContact 1.2s 1s ease-out forwards;
  transition: box-shadow 0.3s;
}

#contact:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

@keyframes fadeInUpContact {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contact h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.2rem;
  letter-spacing: 1px;
  transition: color 0.4s;
}

#contact:hover h2 {
  color: #007bff;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.form-group {
  width: 100%;
  max-width: 400px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInForm 0.7s forwards;
}

.form-group:nth-child(1) { animation-delay: 1.2s; }
.form-group:nth-child(2) { animation-delay: 1.4s; }
.form-group:nth-child(3) { animation-delay: 1.6s; }
.form-group:nth-child(4) { animation-delay: 1.8s; }

@keyframes fadeInForm {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #555;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
  resize: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.08);
  outline: none;
}

#contact-form button[type="submit"] {
  margin-top: 10px;
  padding: 12px 32px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}

#contact-form button[type="submit"]:hover {
  background: #0056b3;
  transform: scale(1.05);
}

#form-status {
  margin-top: 18px;
  font-size: 1.05rem;
  color: #007bff;
  min-height: 24px;
  transition: color 0.3s;
}

/* ...existing code... */

/* ...existing code... */

footer {
  text-align: center;
  padding: 20px 0;
  background: #333;
  color: #fff;
}

@media (max-width: 768px) {
  #home {
    flex-direction: column;
    text-align: center;
  }

  #home .profile {
    margin-top: 20px;
  }
}
/* ...existing code... */

.footer {
  background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
  color: #fff;
  padding: 28px 0 16px 0;
  text-align: center;
  margin-top: 50px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 24px rgba(0,123,255,0.10);
  animation: footerFadeIn 1.2s 1.2s both;
  position: relative;
  overflow: hidden;
}

@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-content p {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 1px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,123,255,0.10);
  animation: fadeInFooterText 1.2s 1.4s both;
}

@keyframes fadeInFooterText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 22px;
  justify-content: center;
  animation: fadeInFooterIcons 1.2s 1.6s both;
}

@keyframes fadeInFooterIcons {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-social a img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,123,255,0.18));
  opacity: 0.85;
  transition: transform 0.3s, opacity 0.3s, filter 0.3s;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  padding: 4px;
}

.footer-social a:hover img,
.footer-social a:focus img {
  transform: scale(1.18) rotate(-8deg);
  opacity: 1;
  filter: brightness(1.2) drop-shadow(0 4px 16px rgba(0,123,255,0.22));
  background: #fff;
}

/* ...existing code... */
/* ...existing code... */
.project-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  width: calc(50% - 20px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
/* ...existing code... */
/* ...existing code... */
.skill-tags span {
  background-color: gold;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  color: #333;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.skill-tags span:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 6px 18px rgba(255, 193, 7, 0.18);}