
:root {
  --primary-color: #8b1613;
  --secondary-color: #0d6efd;
  --dark-color: #212529;
  --light-red-color:#ba2a38;
}
.footer {
  position: relative;
  top: 60px;
  background-color: black;
  color: #fff;
  padding: 2rem 0 1rem 0; /* Further reduced padding */
}

.footer-logo {
  max-width: 130px; /* Further reduced logo size */
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
  animation: pulse 1s infinite;
}

.company-description {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.company-description:hover {
  color: var(--light-red-color);
  transform: translateX(5px);
  cursor: pointer;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8b1613;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.social-icon i {
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon:hover:before {
  transform: translateY(0);
}

.quick-links {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
  display: inline-block;
  font-size: 0.85rem;
}



.quick-links a:hover {
  color: #f0c419;

}
.home-link {
  position: relative;
  text-decoration: none; /* Remove underline from the link */
}

.home-link::after {
  content: '';
  position: absolute;
  bottom: -5px; /* Adjust the distance between the text and the line */
  left: 15px;
  width: 95%;
  height: 1px; /* Line thickness */
  background-color: white; /* White line color */
}



.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 0.5rem;
}

.contact-info li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  padding: 0.3rem;
  border-radius: 8px;
  cursor: pointer;
}

.contact-info li:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
}

.contact-info .icon-container {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 0.8rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.contact-info .icon-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0c419;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.contact-info li:hover .icon-container:before {
  transform: translateY(0);
}

.contact-info .icon-container i {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
}

.contact-info a,
.contact-info span {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.contact-info a:hover,
.contact-info span:hover {
  color:#f0c419;
}

.company-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(139, 22, 19, 0.3);
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(139, 22, 19, 0.5);
}

.map-box {
  background: black;
  border: 2px solid #f0c419;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-top: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
  margin-top: 1rem;
}

.section-title {
  color: #f9fcff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: #f9fcff;
  transition: width 0.3s ease;
}

.section-title:hover:after {
  width: 100%;
}

.section-title-head .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: black;

}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.8rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.copyright:hover {
  border-top-color: #8b1613;
}

@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0;
  }

  .section-title {
    text-align: center;
    margin-top: 1rem;
    display: inline-block;
  }

  .section-title-container {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .company-description {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 0.8rem;
    display: block;
  }

  .quick-links {
    text-align: center;
  }

  /* .contact-info li {
    justify-content: center;
  } */
.footer-logo-design{
  margin-left: 120px;
}

  .contact-info li:hover {
    transform: translateX(0) translateY(-3px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced hover effects */
.contact-info li {
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-info li:hover {
  border-left: 2px solid #f9fcff;
}

.section-title-container {
  margin-bottom: 1rem;
}
