
    .footer {
  background: #f5f5f5;
  color: #333;
  font-family: 'Poppins', sans-serif;
  padding: 60px 0 10px;
}

.footer .container {
  width: 1240px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.social-icons a:hover {
  background: #e63946;
  color: #fff;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #e63946;
  display: inline-block;
  padding-bottom: 6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e63946;
}

.footer-col ul li i {
  margin-right: 8px;
  color: #e63946;
}

.subscribe-box {
  display: flex;
  margin: 15px 0;
}

.subscribe-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.subscribe-box button {
  background: #e63946;
  border: none;
  color: white;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.subscribe-btn {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.subscribe-btn:hover {
  background: #c92a35;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-bottom .highlight {
  color: #e63946;
  font-weight: 600;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.footer-bottom ul li a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
}

.footer-bottom ul li a:hover {
  color: #e63946;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
.footer-bottom {
  border-top: 1px solid #ddd;
  background: #fafbfd;
  padding: 15px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom .container {
  width: 90%;
  margin: 0 auto;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.footer-bottom .highlight {
  color: #e63946;
  font-weight: 600;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-bottom ul li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom ul li a:hover {
  color: #e63946;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}
