/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: #007BFF;
}

h1, h2, h3 {
  margin-bottom: 15px;
}

/* Navigation */
nav {
  background: #333;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
}

nav .nav-links {
  list-style: none;
  display: flex;
}

nav .nav-links li {
  margin-left: 20px;
}

nav .nav-links a {
  color: #fff;
  font-weight: bold;
}

/* Hero Section */
#hero {
  background: url('images/yourbackground.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

#hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

#hero p {
  font-size: 24px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  border-radius: 5px;
}

/* About Section */
#about {
  padding: 50px 30px;
  background: #fff;
  text-align: center;
}

.about-img {
  width: 200px;
  border-radius: 50%;
  margin-top: 20px;
}

/* Leadership & Skills Sections */
#leadership, #skills {
  padding: 50px 30px;
  background: #f0f0f0;
  text-align: center;
}

#leadership h2, #skills h2, #contact h2, #about h2 {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

#leadership h2::after, #skills h2::after, #contact h2::after, #about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #000;
  margin: 10px auto 0;
}

.info-block {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.info-block ul {
  list-style: none;
  text-align: left;
  max-width: 600px;
}

.info-block li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Contact Section */
#contact {
  padding: 50px 30px;
  background: #fff;
  text-align: center;
}

.linkedin-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #0077B5; /* LinkedIn blue */
}

.linkedin-link i {
  margin-right: 8px;
  font-size: 22px;
  vertical-align: middle;
}

.linkedin-link:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
  nav .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .info-block {
    flex-direction: column;
    align-items: center;
  }

  #hero h1 {
    font-size: 36px;
  }

  #hero p {
    font-size: 18px;
  }
}
