/* Footer Container */
.infotech-net-bd-footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 200px;  /* Left and Right padding set to 200px */
  justify-content: space-between;
  background-color: #3ff;
}

/* Footer Columns */
.infotech-net-bd-footer-column {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  margin: 20px 10px;
  text-align: left;
}

/* Footer Column Headings */
.infotech-net-bd-footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #00f;
  padding-bottom: 10px;
  color: #00f;
}

/* Footer Links */
.infotech-net-bd-footer-column ul {
  list-style: none;
  padding: 0;
}

.infotech-net-bd-footer-column ul li {
  margin-bottom: 10px;
}

.infotech-net-bd-footer-column ul li a {
  color: #f00;
  text-decoration: none;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.infotech-net-bd-footer-column ul li a:hover {
  color: #00f;
  font-weight: bold;
}

/* Contact Information Styling */
.infotech-net-bd-footer-column ul li a[href^="tel:"] {
  font-weight: bold;
  color: #f00;
}

.infotech-net-bd-footer-column ul li a[href^="mailto:"] {
  font-weight: bold;
  color: #f00;
}

/* Medium Screen Adjustments (Tablets) */
@media (max-width: 1024px) {
  .infotech-net-bd-footer-container {
    padding: 30px 100px;  /* Reduced padding on medium screens */
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .infotech-net-bd-footer-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;  /* Small padding for mobile devices */
  }

  .infotech-net-bd-footer-column {
    width: 100%;
    text-align: left;
  }

  .infotech-net-bd-footer-column h3 {
    text-align: center;
    font-size: 16px;
  }

  .infotech-net-bd-footer-column ul li {
    margin-bottom: 8px;
  }

  .infotech-net-bd-footer-column ul li a {
    font-size: 14px;
  }
}