/* ==================== */
/* FOOTER BASE STYLING  */
/* ==================== */
.footer {
  --footer-bg: #0a0a0a;
  --footer-text: #e0e0e0;
  --footer-accent: #ff4c4c;
  --footer-border: rgba(255, 255, 255, 0.08);
  --footer-link-hover: #ffffff;
  --footer-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 0 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay for modern look */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff4c4c 0%, #6e45e2 100%);
}

/* Container for centered content with max-width */
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==================== */
/* FOOTER SECTIONS      */
/* ==================== */
.footer__section {
  margin-bottom: 3rem;
  position: relative;
}

.footer__section::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--footer-border) !important;
}

/* Section headings */
.footer__heading {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: white !important;
  position: relative;
  display: inline-block;
}

.footer__heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--footer-accent);
}

/* Grid layout for services and industries */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* ==================== */
/* FOOTER LINKS         */
/* ==================== */
.footer__link {
  display: inline-block;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.3rem 0;
  transition: var(--footer-transition);
  position: relative;
}

/* Link hover animation */
.footer__link:hover {
  color: var(--footer-link-hover);
  transform: translateX(5px);
}

.footer__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--footer-accent);
  transition: var(--footer-transition);
}

.footer__link:hover::before {
  width: 20px;
}

/* Highlighted link (e.g., On-Demand App Development) */
.footer__link--highlight {
  color: var(--footer-accent);
  font-weight: 500;
}

/* ==================== */
/* INFO SECTION         */
/* ==================== */
.footer__info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem 0 3rem;
}

.footer__info-column {
  display: flex;
  flex-direction: column;
}

/* Navigation in info columns */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Contact information styling */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--footer-text) !important;
  text-decoration: none;
  transition: var(--footer-transition) !important;
}

.footer__contact-link:hover {
  color: var(--footer-link-hover);
}

.footer__contact-link i {
  font-size: 1.1rem;
  color: var(--footer-accent);
}

.footer__badge {
  margin-top: 1rem;
}

/* ==================== */
/* BOTTOM SECTION       */
/* ==================== */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--footer-border);
}

.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal-links {
  display: flex;
  gap: 1rem;
}

/* Social media links */
.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--footer-text);
  font-size: 1.2rem;
  transition: var(--footer-transition);
}

.footer__social-link:hover {
  background: var(--footer-accent);
  color: white;
  transform: translateY(-3px);
}

/* ==================== */
/* RESPONSIVE DESIGN    */
/* ==================== */
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }

  .footer__copyright {
    margin-bottom: 0;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer__grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .footer__info-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__legal-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

/* Animation for subtle floating effect */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Apply animation to social icons */
.footer__social-link {
  animation: float 4s ease-in-out infinite;
}

/* Delay each icon's animation */
.footer__social-link:nth-child(1) {
  animation-delay: 0s;
}
.footer__social-link:nth-child(2) {
  animation-delay: 0.5s;
}
.footer__social-link:nth-child(3) {
  animation-delay: 1s;
}
.footer__social-link:nth-child(4) {
  animation-delay: 1.5s;
}

/* 23 - 07 - 25 ; 23:16:05 */

/* footer {
  padding: 30px 50px !important; 
  border-radius: 20px !important; 
  background-color: #111 !important; 
  color: #fff !important; 
  margin: 20px !important; 
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3) !important; 
}


@media screen and (max-width: 768px) {
  footer {
    padding: 25px 40px !important;
    border-radius: 15px !important;
  }
}


@media screen and (max-width: 480px) {
  footer {
    padding: 20px 30px !important;
    border-radius: 10px !important;
  }
} */
