#footer {
    background: linear-gradient(135deg, #001f3f 0%, #003c7a 100%);
    color: #e6ecf3;
    font-size: 0.95rem;
  }

  #footer h5 {
    color: #ffffff;
  }

  #footer a {
    color: #d0e4ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #footer a:hover {
    color: #00c6ff;
  }

  .footer-info img {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  }

  .footer-links ul li,
  .footer-products ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li i,
  .footer-products ul li i {
    color: #00c6ff;
    margin-right: 8px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.4s ease;
  }

  .social-icon:hover {
    background: #00c6ff;
    transform: rotate(360deg);
  }

  .ticker-wrap {
     background-color: #02245B;
     overflow-x: hidden;
     position: relative;
     height: 2rem;
     color: #ecf0f1;
     font-size: 1rem;
     line-height: 2rem;
 }

 body{
    overflow-x: hidden;
 }

 .ticker {
     position: relative;
     animation: mymove 30s infinite;
 }

 @keyframes mymove {
     0% {
         transform: translateX(100%);
     }

     100% {
         transform: translateX(-100%);
     }
 }
  @media (max-width: 768px) {
    #footer {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }

