.contact-banner .overlay {
  background: rgba(255, 255, 255, 0.6); /* transparent white overlay */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-banner h1 {
  font-size: 90px;
  font-weight: 500;
   color: #274186;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

/* Filter Buttons */
.projects-filters {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  background: #fff;
  border: 1px solid #1a2a6c;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #E6B122;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #1a2a6c;
  color: #fff;
}



/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;

}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}



.gallery-section {
  padding: 50px 20px;
  text-align: center;
}

.gallery-title {
  font-size: 28px;
  font-weight: bold;
  color: #1a3b8d;
  margin-bottom: 20px;
}

.gallery-filters {
  margin-bottom: 30px;
}

.gallery-filters button {
 background: #fff;
  border: 1px solid #1a2a6c;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #E6B122;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
 background: #1a2a6c;
  color: #fff;
}

.gallery-grid {
  column-count: 4;
  column-gap: 15px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    column-count: 3;
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    column-count: 1;
  }
}
