/* Global Footer Styles */
.footer {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #2a2a2a, #444);
  color: #fff;
  padding: 40px 20px;
  gap: 20px;
  width: 100%; /* Ensure the footer spans the full width */
  box-sizing: border-box; /* Include padding in the total width calculation */
  position: relative; /* Allow stacking below content */
  margin-top: auto; /* Push the footer to the bottom */
}

.footer-container {
  width: 25%;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ff6f61; /* Accent color for headings */
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff6f61; /* Accent color on hover */
  text-decoration: underline;
}

.social-media ul {
  display: flex;
  margin-left: 10px; 

  gap: 25px;
}

.social-media ul li {
  list-style: none;
}

.social-media ul li a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-media ul li a:hover {
  color: #ff6f61; /* Accent color for social media icons */
  transform: scale(1.1); /* Slightly enlarges the icons on hover */
}

/* Contact Us Button Style */
.contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ff6f61; /* Accent color */
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-left: auto;  /* Center the button horizontally */
  margin-right: auto;
}

.contact-btn i {
  margin-right: 8px; /* Space between icon and text */
}

.contact-btn:hover {
  background-color: #e04e44; /* Darker shade on hover */
  transform: translateY(-3px); /* Slightly lift the button on hover */
}

.contact-btn:active {
  transform: translateY(0); /* Button returns to normal when clicked */
}

.footer-bottom {
  text-align: center;
  width: 100%;
  padding-top: 1px;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    width: 100%;
  }
}
