@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');


.footer {
  position: relative;
 width: 100%;
  background: #10182F;
  border-radius: 6px;
}
.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 3.5rem;
  padding: 40px;
}
.footer-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #0d1526;
}
.footer-bottom p{
  color: #fff;
  font-size: 14px;
  text-wrap: nowrap;
}
.footer-bottom a{
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover{
  color: #03eb;
}

.text p a{
  text-decoration:none;
  color:#fff;
 
}
.text p a:hover{
  color:#03eb;
}

.footer-row .footer-col h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}
.footer-col .links {
  margin-top: 20px;
}
.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.footer-col .links li a {
  text-decoration: none;
  color: #bfbfbf;
}
.footer-col .links li a:hover {
  color: #e2820b;
}
.footer-col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}
.footer-col form {
  display: flex;
  gap: 5px;
}
.footer-col input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid #7489C6 ;
  caret-color: #fff;
  color: #fff;
  padding-left: 10px;
}
.footer-col input::placeholder {
  color: #ccc;
}
 .footer-col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}
.footer-col form button:hover {
  background: #cecccc;
}
.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}
.footer-col .icons i {
  color: #afb6c7;
}
.footer-col .icons i:hover  {
  color: #fff;
}


.footer-social-links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-social-links a{
  text-decoration: none;
  font-size: 1.5rem;
  margin: auto 0.5rem;
  height: clamp(2rem, 2.5rem, 3rem);
  width: clamp(2rem, 2.5rem, 3rem);
  display: grid;
  place-items: center;
  transition: all 0.3s;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00eaff;
 
}
.footer-social-links a:hover{
  background-color:#026161;
  color: var(--first-color-light) !important;
}
.footer-social-links a i{
  color:#026161;
}

@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }
  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
    justify-content: flex-start ;
  }
  .footer-col form {
    display: block;
  }
  .footer-col form :where(input, button) {
    width: 100%;
  }
  .footer-col form button {
    margin: 10px 0 0 0;
  }

  .footer-col {
    padding: 20px; /* Adjust padding around the footer column */
  }
  
  .footer-col h4 {
    font-size: 18px; /* Size of the headings */
    margin-bottom: 10px; /* Space below the headings */
  }
  
  .footer-contact-info-wrap {
    padding: 10px; /* Padding inside the contact info wrap */
  }
  
  .footer-contact-info-list {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
  }
  
  .footer-contact-info-list li {
    margin-bottom: 15px; /* Space between list items */
  }
  
  .footer-contact-info-list li h4 {
    font-size: 16px; /* Size of sub-headings */
    margin-bottom: 5px; /* Space below sub-headings */
  }
  
  .footer-contact-info-list li p {
    font-size: 14px; /* Size of the paragraph text */
    margin: 0; /* Remove default margins */
  }
  
}