footer {
  background-color: #1c2835;
  color: #ffffff;
  padding: 40px 20px 10px 20px;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-section {
  grid-column: span;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-logo-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #dddddd;
}

.footer-products h4,
.footer-markets h4,
.footer-contact h4{
  text-decoration: underline;
}

.footer-products h4,
.footer-product-category h5,
.footer-markets h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  font-size: 16px;
}

.footer-product-category ul,
.footer-markets ul,
.footer-contact address {
  list-style: none;
  padding: 0;
  font-size: 14px;
}


.footer-product-category ul li,
.footer-markets ul li,
.footer-contact-para{
  font-size: 14px;
  color: #dddddd;
  margin-bottom: 5px;
}

.footer-product-category ul li a,
.footer-markets ul li a,
.footer-contact a {
  color: #dddddd;
  text-decoration: none;
}

.footer-product-category ul li a:hover,
.footer-markets ul li a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
  margin-bottom: 20px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;

}

.footer-social .social-icons a {
  font-size: 20px;
  color: #dddddd;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: white;
}

.blog-link-connect{
   position: relative;
   /*top:10px;*/
   color: white;
}

.footer-bottom {
  margin-top: 30px;
  margin-left: 40px;
  font-size: 14px;
  border-top: 1px solid white;
  padding-top: 15px;
}

.footer-bottom a.privacy-policy {
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

.footer-bottom p{
  margin-top: 5px;
  font-size: 14px;
}

.see-more-item {
  margin-top: 5px;
  position: relative;
  right: 20px;
}

.see-more-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.see-more-link i {
  margin-right: 8px;
  font-size: 0.8em;
  animation: arrow-move 0.5s infinite alternate;
}

/* Keyframes for arrow movement */
@keyframes arrow-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(5px); /* Moves arrow slightly to the right */
  }
}

/* Stop the animation on hover */
.see-more-link:hover i {
  animation-play-state: paused;
}

.see-more-link:hover {
  color: #f1c40f; /* Optional hover color */
}

/* Animation */
.marquee-w {
  border: 1px solid #d50100;
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  margin-top: 40px;
}

.marquee {
  position: absolute;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  min-width: 100%;
  height: 100%;
  text-align: center;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  font-family: "poppinsbold";
  text-align: center;
  white-space: nowrap;
  min-width: 100%;
  height: 100%;
  line-height: 50px;
  font-size: 20px;
  animation: marquee 20s linear infinite;
}

.marquee2 span {
  animation-delay: 10s;
}

@keyframes marquee {
  0% {
      transform: translate(0, 0);
  }
  100% {
      transform: translate(-100%, 0);
  }
}

.icon {
  text-align: center;
  margin-top: 16px;
  margin-right: 5px;
}

.devices {
  display: flex;
  text-align: center;
}

.devices-gap {
  width: 30px;
}



/*resposnvie*/


/* Responsive for max-width 720px */
@media (max-width: 720px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px;
    padding: 20px;
  }

  .footer-logo {
    max-width: 120px;
  }

  .footer-logo-section p,
  .footer-contact address h3 {
    font-size: 13px;
  }

  .footer-product-category ul li,
  .footer-markets ul li,
  .footer-contact-para {
    font-size: 13px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
    padding-top: 20px;
  }

  .see-more-link {
    font-size: 13px;
  }
}

/* Responsive for max-width 480px */
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr; /* Single column */
    gap: 15px;
  }

  .footer-logo {
    max-width: 100px;
    margin-bottom: 15px;
  }

  .footer-logo-section p {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-products h4,
  .footer-markets h4,
  .footer-contact h4 {
    font-size: 15px;
  }

  .footer-product-category ul li,
  .footer-markets ul li,
  .footer-contact address h3 {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 20px;
  }

  .see-more-link {
    font-size: 12px;
  }
}

