
footer {
  background-color: #032b4d;
  color: white;
  padding: 50px 80px 20px;
  font-family: Arial, sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-left img {
  max-width: 110px;
}

.footer-left h4 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  margin: 15px 0;
  max-width: 350px;
}

.subscribe-box input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.subscribe-box button {
  background: #f7a600;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #e69500;
}

.footer-left small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #ccc;
}

/* Right Section */
.footer-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  text-align: center;
  border-top: 1px solid #123a5a;
  padding: 15px 0;
  margin-top: 20px;
  color: #ccc;
  font-size: 13px;
  align-items: center;
  justify-content: space-between;
}

.footer-social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #123a5a;   /* Dark blue circle */
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #f7a600;   /* Orange hover */
  color: black;
  transform: scale(1.1); /* little zoom on hover */
}
/* Responsive */
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 20px;
  }

  .subscribe-box {
    margin: 0 auto 15px;
  }

  .footer-right {
    justify-items: center;
  }
}
