footer {
  margin-top: 50px;
}

.footer {
  background: linear-gradient(to right, 
    rgba(42, 177, 173, 1) 49%, 
    rgba(40, 125, 123, 1) 100%, 
    rgba(25, 78, 77, 1) 100%);
  color: #f8f9fa;
  padding: 60px 0 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  display: block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-location {
  margin-bottom: 20px;
}

.footer-location h6 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-location p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-copyright {
  padding: 20px 0;
  color: #ffffff;
  font-size: 13px;
  background: linear-gradient(to right, 
  rgba(42, 177, 173, 1) 49%, 
  rgba(40, 125, 123, 1) 100%, 
  rgba(25, 78, 77, 1) 100%);
}

.footer-copyright p {
  margin: 0;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #4B6386;
  transform: translateY(-3px);
}

.social-media-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; 
  height: 40px; 
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.social-icon img {
  width: 28px; 
  height: 28px; 
  object-fit: contain;
}

.social-icon:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.social-icon.large-icon {
  width: 48px; 
  height: 48px; 
}

.social-icon.large-icon img {
  width: 36px;
  height: 36px;
}


@media (max-width: 991px) {
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-heading {
        margin-top: 20px;
    }

    .footer-desc,
    .footer-links,
    .footer-location,
    .footer-heading,
    .footer-location h6,
    .footer-location p,
    .footer-links li,
    .footer-links li a {
        text-align: center;
    }

    .footer-links {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .footer .row > div[class*="col-"] {
        margin-bottom: 25px;
    }

    .footer .row > div[class*="col-"]:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .footer-copyright {
        text-align: center;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 20px !important;
    }

    .footer-logo img {
        max-width: 150px !important;
        height: auto;
    }
}
