/* footer start  */

  
.footer {
    background-color: var(--tp-theme-1);
    color: white;
    padding: 40px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo img {
    width: 150px;
    height: auto;
  }
  
  .footer-description {
    margin: 10px 0;
    font-size: 1rem;
  }
  
  .footer-social-icons {
    margin-top: 10px;
  }
  
  .social-icon {
    margin-right: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  .footer-social-icons {
    display: flex; /* Align icons in a row */
    gap: 10px; /* Space between icons */
  }
  
  .social-icon {
    padding: 6px 6px 6px 6px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
  }
  
  .social-icon i {
    color: #07627F; /* Icon color */
    font-size: 20px;
    transition: color 0.3s ease; /* Smooth transition for icon color */
    
  }
  
  .social-icon:hover {
    background-color: var(--tp-theme-1); /* Background color change on hover */
    /* transform: scale(1.1); Slightly enlarge the icon on hover */
    border: 2px solid var(--tp-theme-2);
  }
  
  .social-icon:hover i {
    color: white; /* Change icon color on hover */
  }
  
  
  .footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #f4f4f4;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin: 10px 0;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
  }
  
  .footer-column ul li a .icon {
    margin-left: 10px;
  }
  
  .footer-column ul li a:hover {
    color: var(--tp-theme-2);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-column {
      width: 100%;
      text-align: left;
      margin-bottom: 20px;
    }
  
    .footer-logo img {
      max-width: 150px;
      height:auto;
    }
  }
  

  /* footer end  */