/* .footer {
  background: var(--bg);
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

.footer-banner {
  background: var(--proven-bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.footer-banner h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

.footer-links-wrapper {
  background: var(--proven-bg);
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-grid h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-grid ul {
  padding-left: 20px;
}

.footer-grid li {
  margin-bottom: 8px;
  color: var(--para);
}

.footer-grid a {
  text-decoration: none;
  color: var(--para);
}

.footer-info {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-col {
  background: var(--proven-bg);
  padding: 30px;
  border-radius: 10px;
  flex: 1;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 160px;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  text-decoration: none;
  color: var(--para);
}

.contact-item img {
  width: 20px;
}

.social-box {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.social-box img {
  width: 28px;
  cursor: pointer;
}

.copyright {
  background: var(--proven-bg);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright a {
  color: #D34E07;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
    gap: 10px;
  }
} */
 .footer {
  background: var(--bg);
  padding: 40px 0 0 0;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

/* Banner */
.footer-banner {
  background: var(--proven-bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.footer-banner h2 {
  font-size: 31px;
  font-weight: 700;
  line-height: 1.4;
}

/* Links Section */
.footer-links-wrapper {
  background: var(--proven-bg);
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-grid h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-grid ul {
  padding-left: 20px;
}

.footer-grid li {
  margin-bottom: 8px;
  color: var(--para);
}

.footer-grid a {
  text-decoration: none;
  color: var(--para);
}

/* Bottom Section */
.footer-info {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-col {
  background: var(--proven-bg);
  padding: 30px;
  border-radius: 10px;
  flex: 1;
}
.footer-col ul {
    list-style: disc;
    padding: 0;
    margin: 0;
    margin-left: 20px;
    color: #606060;
    font-size: 18px;
}
.footer-col h3 {
    font-size: 21px;
    color: #000000;
    font-weight: 700;
}
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  /* max-width: 160px; */
  width: 75%;
}

/* Contact */
.contact-item {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  text-decoration: none;
  color:#606060;
  font-size: 18px;
}

.contact-item img {
  width: 20px;
}

/* Social */
.social-box {
  margin-top: 20%;
  display: flex;
  /* justify-content: space-between; */
  gap: 25px;
}

.social-box img {
  width: 28px;
  cursor: pointer;
}

/* Copyright */
.copyright {
  background: var(--proven-bg);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p {
    font-size: 19px;
    color: #606060;
}
.copyright a {
  color: #D34E07;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    flex-direction: row;
  }

  .footer-banner h2 {
    font-size: 22px;
  }

  .footer-col h3 {
    font-size: 18px;
  }
  .copyright {
    flex-direction: column;
  }
    .footer-col {
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-banner h2 {
    font-size: 18px;
    line-height: 1.5;
  }

  .footer-banner {
    padding: 16px;
  }

  .footer-col {
    padding: 20px;
  }

  .footer-info {
    flex-direction: column;
    gap: 12px;
  }

  .social-box {
    margin-top: 16px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .copyright p {
    font-size: 14px !important;
  }

  .contact-item {
    font-size: 14px;
  }

  .logo-box img {
    width: 25%;
  }
  .logo-box {
    justify-content: flex-start;
  }
}

@media (max-width: 400px) {
  .footer-banner h2 {
    font-size: 15px;
  }

  .social-box img {
    width: 22px;
  }
}
.social-box a img {
  transition: transform 0.3s ease;
}

.social-box a:hover img {
  transform: scale(1.1);
}