.vc-footer {
  background: linear-gradient(90deg, #0A2D63 0%, #013382 100%);
  color: #fff;
  font-family: "Inter", sans-serif;
  padding-top: 40px;
}

.vc-container {
  width: 90%;
  margin: auto;
  max-width: 1300px;
}

/* Top Stats */
.vc-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.vc-stat h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.vc-stat p {
  font-size: 12px;
  letter-spacing: 1px;
  color: #bcd0f7;
}

.vc-logos img {
  height: 40px;
  margin: 5px 10px;
}

.vc-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0;
}

.vc-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.vc-links ul {
  list-style: none;
  padding: 0;
}

.vc-links li {
  margin: 4px 0;
}

.vc-links a {
  color: #bcd0f7;
  text-decoration: none;
  font-size: 14px;
}

.vc-links a:hover {
  color: #fff;
}

.vc-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  margin-top: 30px;
}

.vc-brands img {
  height: 35px;
  margin: 10px;
}

.vc-social-icons img {
  width: 28px;
  margin: 0 5px;
}

.vc-rating {
  text-align: center;
}

.vc-rating button {
  background: transparent;
  border: 1px solid #ffb700;
  color: #ffb700;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 5px 0;
  cursor: pointer;
}

.vc-dmca img {
  height: 40px;
  margin-top: 10px;
}

.vc-copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding: 20px 0;
  font-size: 13px;
  color: #bcd0f7;
}

.vc-copyright ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.vc-copyright a {
  color: #bcd0f7;
  text-decoration: none;
}

.vc-copyright a:hover {
  color: #fff;
}

hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 20px 0;
}

/* Responsive */
@media(max-width: 900px) {
  .vc-stats, .vc-links, .vc-bottom {
    flex-direction: column;
    text-align: center;
  }
  .vc-links > div {
    margin: 15px 0;
  }
}


.footer-copyright {
  background-color: #00235B; /* darker blue footer strip */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  color: #bcd0f7;
  font-size: 13px;
  font-family: "Inter", sans-serif;
}

.copyright-cont {
  display: flex;
  justify-content: space-between; /* left + right alignment */
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cright {
  color: #bcd0f7;
  text-align: left;
}

.cright strong {
  color: #ffffff;
}

.cright-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.cright-links a {
  color: #bcd0f7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cright-links a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .copyright-cont {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .cright {
    text-align: center;
  }
  .cright-links ul {
    justify-content: center;
  }
}

.solution-center {
  display: flex;
  justify-content: center; /* centers the two divs horizontally */
  gap: 50px; /* optional spacing between the two lists */
  flex-wrap: wrap; /* ensures responsiveness on smaller screens */
}

.solution-center div {
  text-align: center; /* centers the content inside each div */
}

