/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #000;
  padding-top: 70px;
}

/* Fixed Header and Navigation */
.header {
  background-color: #fff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: black;
}

.nav img {
  margin-bottom: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #d4af37;
}

/* Hero Section */
.hero {
  background-color: #444; /* Solid color for simplicity */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.5rem;
}

/* Internship Overview Section */
.internship-overview {
  padding: 40px 20px;
  background-color: #222;
  text-align: center;
}

.internship-overview h2 {
  font-size: 2.5rem;
  color: #d09f70;
  margin-bottom: 20px;
}

.internship-overview p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
}

/* Internship Roles Section */
.internship-roles {
  padding: 20px;
  background-color: #333;
}

.internship-roles h2 {
  font-size: 2.5rem;
  color: #d09f70;
  text-align: center;
  margin-bottom: 20px;
}

.role {
  background-color: #444;
  margin: 15px 0;
  padding: 20px;
  border-radius: 10px;
}

.role h3 {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.role p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #000;
  text-align: center;
  padding: 20px 0;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav img {
    height: 50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2em;
  }
}
