/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Header Styling */
header {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  padding: 60px 20px 40px;
  text-align: center;
}

.header-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.header-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

/* Profile Picture (optional) */
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 10px;
  object-fit: cover;
}

/* Navigation Bar */
nav {
  position: sticky;
  top: 0;
  background: #333;
  padding: 10px 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  transition: 0.3s;
}

nav ul li a:hover {
  background: #007bff;
  border-radius: 5px;
}

/* Section Styling */
.section {
  padding: 60px 20px;
  margin: 20px auto;
  background: white;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

/* Experience Cards */
.experience-card {
  background: #f8f9fa;
  padding: 15px;
  margin: 10px 0;
  border-left: 4px solid #007bff;
  text-align: left;
}

/* Skills Section */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.skill {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.skill i {
  font-size: 18px;
}

.skill:hover {
  background: #0056b3;
  transform: scale(1.1);
}

/* Headings for Skill Categories */
h3 {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #007bff;
  margin-top: 20px;
  font-weight: bold;
}

/* Leadership & Associations Section */
.leadership-list, .associations-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.leadership-list li, .associations-list li {
  background: #f8f9fa;
  padding: 10px;
  margin: 5px 0;
  border-left: 4px solid #007bff;
  text-align: left;
  font-size: 16px;
}

/* Projects Section */
.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
  border-left: 4px solid #007bff;
}

.project-card h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #555;
}

/* Button Styling (General + Contact + Project Links) */
.btn {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 10px 15px;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: #0056b3;
}

/* Social Links */
.social-links a {
  font-size: 24px;
  margin: 10px;
  color: #007bff;
  transition: 0.3s;
}

.social-links a:hover {
  color: #0056b3;
}
