/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('background.jpg'); /* Add your fiber optic image here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white; /* Change text color to white for better contrast */
}

header {
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for better readability */
  color: white;
  padding: 1rem;
  text-align: center;
}

header .logo h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
}

.hero h2 {
  margin-bottom: 1rem;
}

.hero button {
  padding: 0.5rem 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

.values {
  padding: 2rem;
  text-align: center;
}

.value-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  padding: 1rem;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 30%;
}

.body {
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  padding: 1rem;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 90%;
}

.bodys {
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  padding: 1rem;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 40%;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay */
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
}
