/* Footer Section */
.footer-section {
  background-color: #002c5f; /* Matches primary color scheme */
  color: #ffffff;
  padding: 40px 20px;
  font-size: 1rem;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 calc(33% - 20px); /* Divides into 3 equal columns */
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.5;
  color: #d1d1d1;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
  color: #d1d1d1;
}

.footer-links ul li a {
  text-decoration: none;
  color: #d1d1d1;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #1e90ff; /* Lighter blue for hover effect */
}

.footer-contact ul li strong {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #d1d1d1;
}


.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.portfolio-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 44, 95, 0.8);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.portfolio-overlay p {
  font-size: 1.2rem;
  margin: 1%;
  text-align: center;
}