footer {
  background-color: #000c67;
  color: #fff;
  padding: 40px 0 20px;
  font-family: 'Roboto', sans-serif;
  text-align: left;
}

footer .container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
}

footer .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .col-md-3 {
  flex: 1;
  margin: 15px;
  min-width: 250px;
}

.foot-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 445px) {
  .foot-logo {
    display: flex;
    justify-content: center;
}
}
.foot-logo img {
  width: auto;
  height: 120px;
  padding-left: 10px;
}

.foot-logo h3 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  padding-top: 20px;
}

footer .foot-desc p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

footer .foot-desc .description {
  font-size: 13px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 5px;
}

footer h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin: 10px 0;
}

footer ul li a {
  color: #bbb;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #fff;
}

footer .social-icons a {
  font-size: 20px;
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #8cff00; 
}

footer hr {
  border: 0;
  border-top: 1px solid #ffffff;
  padding: 4px 0 0;
}

footer .footer-copyright {
  font-size: 14px;
  color: #aaa;
  text-align: center;
}

@media (max-width: 768px) {
  footer .row {
    flex-direction: column;
    align-items: center;
  }
  .foot-logo{
    align-items: center;
    justify-content: center;
  }

  footer .col-md-3 {
    width: 100%;
    text-align: center;
  }

  footer .social-icons {
    text-align: center;
  }
}

@media (max-width: 480px) {
  footer .foot-desc p {
    font-size: 13px;
  }

  footer .foot-desc .description {
    font-size: 12px;
  }

  footer .footer-copyright {
    font-size: 12px;
  }

  footer .social-icons a {
    font-size: 18px;
  }
}
footer .row > .col-md-6 {
  margin-bottom: 30px;
}

footer .col-md-6 h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer .col-md-6 p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

footer .col-md-6 a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .col-md-6 a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.newsletter-form input {
  padding: 10px;
  font-size: 14px;
  width: 70%;
  border: none;
  border-radius: 25px;
  outline: none;
  background-color: #fff;
}

.newsletter-form button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #3f51b5;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #2c387e;
}

footer .social-icons a {
  font-size: 20px;
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #574caf; 
}

@media (max-width: 768px) {
  footer .row {
    flex-direction: column;
    align-items: center;
  }

  footer .col-md-6 {
    width: 100%;
    text-align: center;
  }

  footer .social-icons {
    text-align: center;
  }

  footer .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  footer .newsletter-form input {
    width: 80%;
    margin-bottom: 10px;
  }

  footer .newsletter-form button {
    width: 80%;
  }
}

@media (max-width: 480px) {
  footer .footer-copyright {
    font-size: 12px;
  }

  footer .col-md-6 h3 {
    font-size: 18px;
  }

  footer .col-md-6 p {
    font-size: 12px;
  }

  footer .newsletter-form input {
    font-size: 14px;
  }

  footer .newsletter-form button {
    font-size: 14px;
  }
}
