/* ===== Reset & Base Styles ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

/* ===== Navigation Bar ===== */
nav {
  background-color: #1e1e2f;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4caf50;
}

/* ===== Header Section ===== */
header {
  background: linear-gradient(to right, #2196f3, #0d47a1);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  margin: 0.3rem 0;
}
.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin: 1rem auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: block;
}


/* ===== Section Styling ===== */
section {
  background: white;
  padding: 2.5rem;
  margin: 2rem auto;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

section h2 {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-bottom: 1rem;
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #4caf50;
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* ===== Lists ===== */
ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

li {
  margin-bottom: 0.8rem;
}

/* ===== Links (e.g. Download CV) ===== */
a {
  color: #1e88e5;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}
#achievements ul {
  list-style-type: "⭐ ";
  padding-left: 1.5rem;
}

#achievements li {
  margin-bottom: 1rem;
}


/* ===== Contact Form ===== */
.contact-list {
  list-style: none;
  padding: 1rem 0;
  font-size: 1.1rem;
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-list a {
  color: #1e88e5;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}
.badge {
  font-size: 1.1rem;
  margin-left: 0.3rem;
}



/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  header h1 {
    font-size: 2.2rem;
  }

  section {
    margin: 1rem;
    padding: 2rem 1rem;
  }
}
/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  background: #1e1e2f;
  color: #fff;
  border-top: 2px solid #4caf50;
  margin-top: 2rem;
}

/* ===== Link Hover Styling ===== */
a:hover {
  text-decoration: none;
  color: #4caf50;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}

