.footer {
  background: #0b1f3a;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* LOGO */
.logo {
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* SOCIAL */
.socials {
  margin-top: 15px;
}

.socials a {
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  color: #38bdf8;
}

/* SUBSCRIBE */
.subscribe-box {
  display: flex;
  margin-top: 10px;
}

.subscribe-box input {
  padding: 10px;
  border: none;
  outline: none;
  width: 70%;
  border-radius: 6px 0 0 6px;
}

.subscribe-box button {
  width: 30%;
  border: none;
  background: #38bdf8;
  color: #fff;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #94a3b8;
}
.socials {
  margin-top: 15px;
}

.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: #122a4d;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ICON FIX */
.socials a i {
  color: #ffffff;
  line-height: 1;
}

/* HOVER FIX */
.socials a:hover {
  background: #3b82f6;
  color: #ffffff;   /* important */
  transform: translateY(-3px);
}

/* ICON VISIBLE ON HOVER */
.socials a:hover i {
  color: #ffffff;
}

/* DEFAULT (desktop) */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services + Company side by side */
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    grid-column: span 1;
  }
}