
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f4f4f9;
  color: #333;
}

.projects-section {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.project-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  max-width: 800px;
}

.project-card h2 {
  color: #1e90ff;
  margin-bottom: 1rem;
}

.project-card p {
  color: #555;
}

.project-video {
  margin-top: 1rem;
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 8px;
}

.report-section {
  margin-top: 2rem;
  text-align: left;
}

.report-section h3 {
  color: #1e90ff;
  margin-bottom: 0.5rem;
}

.report-section p {
  color: #555;
  margin-bottom: 1rem;
}

.download-button {
  padding: 0.5rem 1rem;
  background-color: #1e90ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
}

.download-button:hover {
  background-color: #1c7ed6;
}

.back-button {
  display: block;
  margin: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #1e90ff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
}

.back-button:hover {
  background-color: #1c7ed6;
}

.footer {
  background-color: #1e90ff;
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
  bottom: 0;
  /* width: 100%; */
  margin-top: 2rem;
}
.project-card {
  position: relative; /* Ensures the back button is positioned relative to the card */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 800px;
}

.back-button {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background-color: #b3e5fc; /* Light blue */
  color: #0277bd; /* Darker blue for contrast */
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: #81d4fa; /* Slightly darker light blue for hover */
  color: #01579b; /* Darker text on hover for better contrast */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.description-section {
margin-top: 2rem;
text-align: left;
background-color: #f9f9ff;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
font-size: 16px;
line-height: 1.8;
color: #333;
}

.description-section h3 {
color: #1e90ff;
margin-bottom: 1rem;
font-size: 24px;
border-bottom: 2px solid #1e90ff;
display: inline-block;
padding-bottom: 0.2rem;
}

.description-section p {
margin-bottom: 1.5rem;
color: #555;
font-family: 'Arial', sans-serif;
}

.ff:first-letter {
font-size: 200%;
font-weight: bold;
color: #1e90ff;
}

