/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Basic styling for the body */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* Footer styling */
  .footer {
    background-color: rgb(5, 6, 21);
    
    padding: 20px 0;
  }
  
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 200px;
    color: #fff;
    /* margin: 100px; */
  }
  
  .footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-col ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-col p {
    margin-bottom: 20px;
  }
  
  .footer-col form {
    display: flex;
    flex-direction: column;
  }
  
  .footer-col input[type="text"] {
    padding: 10px;
    margin-bottom: 1px;
    border: none;
    border-radius: 5px;
  }
  
  .footer-col button {
    padding: 10px;
    border: none;
    background-color: #555;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .footer-col button:hover {
    background-color: #666;
  }
  
   /* .ontect-us {
    margin: 20px 20px;
  } */
  .icons {
    display: flex;
    gap: 15px;
  }
  
  .icons i {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
  }
  
  .icons i:hover {
    color: #ddd;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
    }
  
    .footer-col {
      margin-bottom: 20px;
    }
  }
  .Copyright {
    padding: 10px 350PX;
    font-size: large;
    text-align: flex-start;
     color: #fff;
  }
  .social-icons {
	margin-top: 20px
}

.social-icons a {
	padding: 0 10px;
	text-decoration: none;
}

.social-icons a:hover,
.social-icons a:active,
.social-icons a:visited {
	color: #fff;
}

.social-icons svg {
	fill: #fff;
	transition: all.2s ease-in-out;
	width: 20px;
}

.social-icons a:hover svg {
	transform: scale(1.1);
}
