@import url("./color.css");

.main-footer {
  background: radial-gradient(
    circle at top left,
    var(--purple-pink),
    var(--purple-dark)
  );
  color: #fff;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
  margin-top: 30px;
}

.main-footer .footer_logo_section img {
  width: auto;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.branch_heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.branch_address {
  line-height: 1.5;
  font-size: 14px;
  color: #f0eaff;
}

.branches {
  margin-top: 30px;
}

.footer_links_section {
  margin-top: 20px;
  text-align: center;
}

.footer_links .footer_link {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: 0.3s;
}

.footer_links .footer_link:hover {
  text-decoration: underline;
  color: #ffe6f7;
}

.footer_bottom_section {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 25px;
  padding-top: 15px;
  text-align: center;
}

.footer_text {
  color: var(--black-deep);
  font-size: 14px;
}

.main-footer .branches {
  margin-bottom: 10px;
}

.footer_company_info{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


.footer_text span{
    font-weight: 700;
}

.footer_text span a{
    text-decoration: none;
    color: var(--purple-mid);
}

.footer_company_info span{
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .branches .col-md-3 {
    margin-bottom: 20px;
  }

  .footer_links .footer_link {
    display: block;
    margin: 8px 0;
  }

  .main-footer .footer_logo_section img {
    width: 100%;
  }

  .footer_company_info{
    display: flex;
    justify-content: flex-start;
    align-items: start;
}
.footer_links{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    }

    .footer_links .footer_link {
        flex: 0 0 48%;
        box-sizing: border-box;
        text-align: center;
        margin: 4px 0;
    }
}

