/* ===== Global Footer Wrapper ===== */
.global-footer {
  background: #ddd;
  color: #1A3454;
  font-family: 'Poppins', Arial, sans-serif;
  padding-top: 40px;
}

/* Top + Bottom Lines Text */
.footer-top p,
.footer-bottom p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* Card Layout Section */
.footer-middle {
  display: grid;
  gap: 24px;
  max-width: 1250px;
  margin: 30px auto;
  padding: 0 20px;
  box-sizing: border-box;

  /* Desktop: 4 Columns */
  grid-template-columns: repeat(4, 1fr);
}

/* Large Tablets / Small Desktops */
@media (max-width: 1100px) {
  .footer-middle {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 820px) {
  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .footer-middle {
    grid-template-columns: 1fr;
  }
}

/* Individual Card Style */
.footer-col {
  background: #ffffff;
  border-radius: 0;
  padding: 25px;
  text-align: left;
  box-shadow: 0 3px 9px rgba(0,0,0,0.08);
  transition: transform .25s, box-shadow .25s;
}

.footer-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Card Headings */
.footer-col h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1A3454;
}

/* Lists */
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li a {
  display: block;
  padding: 8px 0 8px 10px;
  font-size: 14px;
  text-decoration: none;
  color: #1A3454;
  border-bottom: 1px solid #d4e0ea;
  transition: 0.25s;
}

.footer-col ul li a:hover {
  background: #1A3454;
  color: #fff;
}

/* Address + Contact Block */
.address-block p {
  font-size: 14px;
  line-height: 1.1;
  margin: 4px 0;
}

.address-block a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

.address-block a:hover {
  text-decoration: underline;
}

/* Links Row Under Cards */
.footer-links {
  border-top: 1px solid #b3c2d1;
  padding: 18px 0;
  text-align: center;
  background: #1A3454;
}

.footer-links a {
  margin: 0 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Copyright Row */
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  background: #1A3454;
  color: #fff;
}