* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #e9ecef;
  color: #333;
}


.hero {
  position: relative;
  background: linear-gradient(135deg, #4a90e2, #50e3c2);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-out;
}

.hero p {
  color: #f0f0f0;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}


a[href^="mailto:"] {
  color: #333; 
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd700;
}

main {
  padding: 40px 20px;
}

.card {
  background: #fff;
  margin: 30px auto;
  padding: 20px 30px;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-out;
}

.card h2 {
  margin-bottom: 15px;
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 5px;
}

.card h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  color: #4a90e2;
}

.card ul {
  margin-left: 20px;
  list-style-type: disc;
  margin-bottom: 15px;
}

.card p {
  margin-bottom: 10px;
}

.about-container {
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  gap: 20px;       
}

.profile-pic {
  width: 200px;      
  border-radius: 50%;
  object-fit: cover; 
}



