/* =====================
   Common Footer Styles
   ===================== */

.site-footer {
  background-color: #001933;
  color: #d9e6f2;
  padding: 40px 10px 20px; /* reduced left-right padding */
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1280px; /* you can increase this if needed */
  margin: 0 auto;
  padding: 0 10px; /* decreased horizontal space */
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  color: #00aaff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #d9e6f2;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #00aaff;
  text-decoration: underline;
}

.footer-section i {
  margin-right: 8px;
}

/* Social Media Icons */
.social-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: #00aaff;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #a3b8cc;
}

.footer-bottom hr {
  border: 0;
  border-top: 1px solid #334d66;
  margin: 30px 0 15px;
}

.footer-bottom a {
  color: #00aaff;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .footer-section ul li {
    margin-bottom: 8px;
  }
}
