/* RESET */

/* FOOTER MAIN */
.footer {
  background: linear-gradient(to right, #4a001f, #7a0026);
  padding: 50px 20px;
}

/* CONTAINER */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* COLUMNS */
.footer-col {
  flex: 1 1 220px; /* flexible width */
  min-width: 200px;
  margin-bottom: 25px;
}



/* LOGO */

.footer-logo {
    max-width: 90% !important;
    height: auto !important;
    display: block;
    margin: 5px auto;
    box-shadow: 2px 3px 3px white;
}

/* TEXT */
.footer-text {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #e0e0e0; /* better contrast for readability */
}

/* HEADINGS */
.heading {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0 10px 0;
  color: #ddd;
}

/* LIST */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 6px 0;
}

/* LINKS */
.footer-list a {
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  padding: 3px 0;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #fff;
  text-decoration: underline;
}

/* TAG BOX */
.tag-box {
  display: flex;
  flex-direction: column;
}

.tag-box span {
  font-size: 14px;
  color: #ccc;
  margin: 4px 0;
}

/* CONTACT */
.contact p {
  font-size: 14px;
  margin: 8px 0;
  color: #ccc;
}

.contact i {
  margin-right: 8px;
  color: #ff4d4d;
}

/* SOCIAL ICONS */
.social-icons i {
  font-size: 18px;
  margin-right: 10px;
  background: #333;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

/* FACEBOOK GLOW */
.fb-icon {
  background: #1877f2 !important;
  color: #fff !important;
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 10px #1877f2;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #1877f2;
  }
  100% {
    box-shadow: 0 0 20px #1877f2, 0 0 40px #1877f2;
  }
}

/* SOCIAL ICON HOVER */
.social-icons i:hover {
  color: #fff;
  box-shadow: 0 0 10px #aaa;
}

/* BOTTOM SECTION */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

/* BOTTOM LINKS */
.bottom-links {
  margin-bottom: 10px;
}

.bottom-links a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
  font-size: 13px;
  border-right: 1px solid #555;
  padding-right: 10px;
  transition: color 0.3s ease;
}

.bottom-links a:last-child {
  border-right: none;
}

.bottom-links a:hover {
  color: #fff;
}

/* COPYRIGHT */
.copyright {
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE: Mobile Phones */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .social-icons {
    margin-top: 10px;
  }

  .bottom-links a {
    display: block;
    margin: 5px 0;
    border-right: none;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-text, .footer-list a, .tag-box span {
    font-size: 13px;
  }

  .heading {
    font-size: 15px;
  }
}

/* RESPONSIVE: Very small screens */
@media (max-width: 480px) {
  .footer {
    padding: 25px 10px;
  }

  .logo {
    width: 120px;
  }

  .footer-text, .footer-list a, .tag-box span {
    font-size: 12px;
  }

  .heading {
    font-size: 14px;
  }

  .social-icons i {
    padding: 8px;
    font-size: 16px;
    margin-right: 8px;
  }
}