.home-footer {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
}

.home-footer .container {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 0; /* bottom space removed */
  max-width: 1400px;
  margin: 0px auto;
}

.home-footer .company-info,
.home-footer .menu,
.home-footer .products,
.home-footer .extra-products {
  flex: 1;
  padding: 15px;
}

.home-footer .company-info h1 {
  color: #1e90ff;
  margin: 0 0 10px;
  font-size: 24px;
}

.home-footer .company-info p {
  margin: 5px 0;
  font-size: 14px;
}

.home-footer .menu h2,
.home-footer .products h2,
.home-footer .extra-products h2 {
  color: #1e90ff;
  border-bottom: 1px solid #1e90ff;
  padding-bottom: 5px;
  font-size: 18px;
}

.home-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer ul li {
  padding: 5px 0;
  border-bottom: 1px dashed #aaa;
  font-size: 14px;
}
.home-footer ul li a {
  padding: 5px 0;
  color: white;

  font-size: 16px;
  text-decoration: none;
}
.home-footer ul li a:hover {
  color: #0c8cd5;
}

.home-footer .copyright {
  text-align: center;
  padding: 10px 0;
  background-color: #000;
  color: #fff;
  border-top: 1px solid #fff;
  width: 100%;
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 768px) {
  .home-footer .container {
    flex-direction: column;
    padding: 10px;
    align-items: center;
    text-align: center;
  }

  .home-footer .company-info,
  .home-footer .menu,
  .home-footer .products {
    margin-bottom: 20px;
    padding: 5px;
  }

  .home-footer .extra-products {
    margin-bottom: 0;
    padding: 0 5px;
  }

  .home-footer .menu h2,
  .home-footer .products h2 {
    border-bottom: 1px solid #1e90ff;
    padding-bottom: 4px;
    font-size: 16px;
  }

  .home-footer .extra-products h2 {
    display: none;
  }

  .home-footer ul li {
    border-bottom: 1px dashed #888;
    font-size: 13px;
  }

  .home-footer .copyright {
    position: relative;
    margin-top: 20px;
  }
}

/* arrow */

.scroll-top {
  z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  /* background: #e10d25;
  color: white; */
  /* border: none;
  border-radius: 50%; */
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
/* 
.scroll-top:hover {
  background: #0056b3;
} */

.scroll-top.show {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* phone icons */
.phone-icon,
.whatsapp-icon {
  position: fixed;

  transform: translateY(-50%);
  font-size: 24px;
  padding: 15px;
  transition: transform 0.3s ease-in-out;
  animation: 1.5s infinite bounce;
}

.phone-icon,
.whatsapp-icon {
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.phone-icon {
  right: 20px;
  background-color: #0c8cd5;
  top: 75%;
}
.phone-icon:hover,
.whatsapp-icon:hover {
  transform: translateY(-50%) scale(1.2);
}
.whatsapp-icon {
  right: 20px;
  background-color: #25d366;
  top: 85%;
}

/* e-catelouge */
.catalogue-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.catalogue-container {
  max-width: 600px;
  margin: 0 auto;
}

.catalogue-heading {
  font-size: 32px;
  font-weight: bold;
  color: #003b7a;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.catalogue-border {
  height: 4px;
  width: 80px;
  margin: 0 auto 30px auto;
  background: linear-gradient(to right, #003b7a, #d61f26);
  border-radius: 10px;
}

.catalogue-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.catalogue-link:hover {
  transform: scale(1.05);
}

.catalogue-image {
  width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .catalogue-heading {
    font-size: 24px;
  }

  .catalogue-image {
    width: 200px;
  }
}
