.custom-footer-layout {
  margin-top: 40px;
}

.custom-footer-main {
  position: relative;
  background: linear-gradient(to bottom, #002244, #0f5cbf);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
  align-items: center;
  display: grid;
  justify-content: center;
}

.custom-footer-content {
  padding: 0 40px;
  max-width: 690px;
  display: grid;
  gap: 30px;
  z-index: 3;
}

.custom-footer-section {
  display: grid;
  row-gap: 30px;
}

.custom-footer-about {
  display: grid;
  row-gap: 15px;
}

.custom-footer-subtitle {
  display: flex;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: normal;
  white-space: nowrap;
  font-size: 17px;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}

.custom-footer-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.custom-footer-socials {
  display: flex;
  justify-content: center;
}

.custom-footer-socials a {
  display: inline-flex;
  padding: 10px;
  margin: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #FFFFFF;
}

.custom-footer-socials img {
  width: 20px;
  height: 20px;
  align-items: center;
}

.custom-footer-group {
  display: grid;
  row-gap: 15px;
}

.custom-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
}

.custom-footer-links a {
  font-size: 15px;
  color: #FFFFFF;
  text-decoration: none;
}

.custom-footer-links a:hover {
  color: #FFFFFF;
}

.custom-footer-links span {
  color: #ccc;
}

.custom-particles-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03), rgba(0,0,50,0.1));
  z-index: 1;
  pointer-events: none;
}

.custom-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.custom-particles span { 
  position: absolute;
  bottom: -20px;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.4),
    0 0 10px rgba(255, 255, 255, 0.2);
  animation: rise 6s linear infinite;
  z-index: 2;
  filter: blur(0.5px);
  mix-blend-mode: screen;
}
@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
    transform: translateY(-150px) scale(0.7);
  }
  100% {
    transform: translateY(-350px) scale(0.4);
    opacity: 0;
  }
}

.custom-footer-bottom {
  background-color: #1e1e1e;
  color: #FFFFFF;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  width: 100%;
}

.custom-footer-bottom a {
  color: #FFFFFF;
}

.custom-footer-bottom a:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .custom-footer-content {
    padding: 0 20px;
  }
}