 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
      transition: background-color 0.5s ease;
    }
    header {
      background-color: #1e3a8a;
      color: white;
      padding: 20px;
      text-align: center;
      animation: fadeIn 2s;
    }
    nav {
      background-color: #1e40af;
      padding: 10px;
      text-align: center;
    }
    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #ffd700;
    }
    section {
      padding: 40px;
      max-width: 900px;
      margin: auto;
      background-color: white;
      margin-top: 20px;
      border-radius: 10px;
      animation: slideUp 1s ease-in-out;
    }
    h2 {
	  background-color: #1e3a8a;
	  text-align: center;
      color: white;
    }
    footer {
      background-color: #1e3a8a;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 20px;
    }
    img.profile {
	  display: block; 
	  margin: 0 auto;
      width: 150px;
      border-radius: 50%;
    }
    .social a {
      margin: 0 10px;
      text-decoration: none;
      color: #1e3a8a;
      font-weight: bold;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .gallery img {
      width: 100%;
      max-width: 200px;
      border-radius: 10px;
      transition: transform 0.3s;
    }
    .gallery img:hover {
      transform: scale(1.07);
    }
	p{
		text-align: justify;
	}
    @media (max-width: 600px) {
      nav a {
        display: block;
        margin: 10px 0;
      }
      .profile {
        width: 100px;
      }
    }
	  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .social-icons a {
    text-decoration: none;
    color: white;
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .social-icons a:hover { transform: scale(1.2); }
  .facebook { background: #3b5998; }
  .twitter { background: #1DA1F2; }
  .instagram { background: #E4405F; }
  .linkedin { background: #0077B5; }
  .youtube { background: #FF0000; }
  .github { background: #333; }
	.email { background: #D44638; }
	
	
/* Back to Top Floating Circular Button */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  background-color: #007BFF; /* Blue */
  color: white;
  border: none;
  outline: none;
  border-radius: 50%; /* Makes it circular */
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
#backToTop:hover {
  background-color: #0056b3;
  transform: scale(1.15) rotate(360deg); /* Spin + zoom */
}