/* Footer Styles */
.footer {
  background-color: #2e3032 !important; /* lighter than #161b1f */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fe5200, #ff8a00);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #fe5200;
}

.footer-link {
  color: #adb5bd !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #fe5200 !important;
  transform: translateX(5px);
}

.hover-orange {
  transition: color 0.3s ease;
}

.hover-orange:hover {
  color: #fe5200 !important;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background-color: #fe5200;
  transform: translateY(-3px);
}

.bg-gray-800 {
  background-color: #2c333a !important;
}

.btn-primary {
  background-color: #fe5200;
  border-color: #fe5200;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #e04800;
  border-color: #e04800;
  transform: translateY(-1px);
}

.badge-link {
  transition: all 0.3s ease;
  opacity: 0.8;
}

.badge-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}



.footer-brand img {
  height: 90px; /* Adjust this value as needed */
  width: auto; /* Maintains aspect ratio */
  transition: all 0.3s ease; /* Smooth hover effect */
}

.footer-brand img:hover {
  transform: scale(1.05); /* Optional: slight zoom on hover */
}

.payment-methods img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-methods img:hover {
  opacity: 1;
}

.app-badge-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}
.appstore-img {
  height: 55px;
  width: auto;
  max-width: 135px; /* Adjust based on your actual images */
}

.playstore-img{
    height: 40px;
  width: auto;
  max-width: 135px; /* Adjust based on your actual images */
}


/* Responsive adjustments */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-info {
    text-align: center;
    justify-content: center;
  }
  
  .app-badges {
    text-align: center;
  }
  
  .app-badges .d-flex {
    justify-content: center;
  }
  
  .footer-link:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .footer-brand img {
    height: 40px; /* Slightly smaller on mobile */
  }
}