/* General Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
}


/* Header with Gradient */
header {
  background: linear-gradient(135deg, #007acc, #00c6ff);
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

header p {
  font-size: 1.1rem;
  font-weight: 300;
}

/* Main Content */
main {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Section Titles */
section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #00c6ff;
  padding-bottom: 0.3rem;
  color: #007acc;
  font-weight: 600;
}


/* Lists and Paragraphs */
ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
}

/* Contact Section Styling */
.contact ul {
  list-style: none;
  padding-left: 0;
}

.contact li {
  margin-bottom: 0.8rem;
}

.contact a {
  color: #007acc;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, #00c6ff, #007acc);
  color: white;
  font-size: 0.9rem;
  margin-top: 2rem;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
}
.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}