/* Reset and layout */
html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.section,
#contact {
  flex: 1;
}

/* Footer styling */
.footer {
  background-color: #222;
  color: white;
  padding: 20px;
}

.footer .container {
  text-align: center;
}

.footer .row {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.col-footer {
  text-align: center;
  margin-bottom: 20px;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer .contact-us-details,
.footer ul {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  max-width: 250px;
}

.footer ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

.footer ul li {
  margin-bottom: 5px;
}



.footer a {
  color: #99cc33;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer a.concept-link {
  color: orange;
  text-decoration: none;
}

.footer a.concept-link:hover {
  color: #ffffff;
  text-decoration: underline;
}



/* Optional: Responsive tweaks */
@media (max-width: 768px) {
  .footer .contact-us-details,
  .footer ul {
    text-align: center;
  }
}

/* ================== Footer Heading Styles ================== */
.col-footer h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-weight: bold;
  border-bottom: 2px solid #aaa;
}

/* Optional: Footer copyright underline */
.footer-copyright {
  border-top: 1px solid #aaa;
  padding-top: 12px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}



/* ========== Social Media Icon Styles ========== */

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.social-icons .icon {
  width: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icons .facebook:hover {
  content: url("img/icons/facebook-hov.png");
}

.social-icons .instagram:hover {
  content: url("img/icons/instagram-hov.png");
}

.social-icons .linkedin:hover {
  content: url("img/icons/linkedin-hov.png");
}

.social-icons .twitter:hover {
  content: url("img/icons/twitter-hov.png");
}

.social-icons .youtube:hover {
  content: url("img/icons/youtube-hov.png");
}

.social-icons .whatsapp:hover {
  content: url("img/icons/whatsapp-hov.png");
}

/* ===== Footer Heading Scroll Animation ===== */

@keyframes fadeInUnderline {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-heading {
  animation: fadeInUnderline 0.6s ease-out forwards;
}

-------------------------------

.col-footer h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-weight: bold;
  border-bottom: 2px solid #aaa;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Soft glow when hovered */
.col-footer h3:hover {
  border-bottom-color: #3399cc;
  box-shadow: 0 4px 6px -4px #3399cc;
}

