/* 
footer{
    
    top: 80%;
    border-radius: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.548);
}

footer h5{
    font-weight: 600;
    letter-spacing: 2px;
}
.footer-col4-p{
    line-height: 1.7;
    font-size: 20px;
    letter-spacing: 2px;
    justify-content: flex-start;
}
.footer-icon{
font-size: 25px;
}
.footer-main-link a{
        justify-content: flex-start !important;

    color: rgba(0, 0, 0, 0.712);
    font-weight:450;
    text-decoration: none;
    margin-top: 10px;
}



.footer-main-link a:hover{
    color: blue;
}

.footer-hr{
    color: rgba(0, 0, 0, 0.712);
    font-weight:450;
    text-decoration: none;
    margin-top: 10px;
}
 */




 footer {
  top: 80%;
  border-radius: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.548);
}

footer h5 {
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-col4-p {
  line-height: 1.7;
  font-size: 20px;
  letter-spacing: 2px;
  justify-content: flex-start;
}


.footer-icon-link {
  color: rgba(0, 0, 0, 0.712);
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-icon-link:hover {
  color: rgb(0, 42, 53);
  transform: translateY(-2px);
}

.footer-icon {
  font-size: 25px;
}

.footer-main-link a {
  justify-content: flex-start !important;
  color: rgba(0, 0, 0, 0.712);
  font-weight: 450;
  text-decoration: none;
  margin-top: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}


.footer-main-link a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(0, 42, 53);
  transition: width 0.3s ease;
}

.footer-main-link a:hover {
  color: rgb(0, 42, 53);
}

.footer-main-link a:hover::after {
  width: 100%;
}

.footer-hr {
  color: rgba(0, 0, 0, 0.712);
  font-weight: 450;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.footer-hr::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(0, 42, 53);
  transition: width 0.3s ease;
}

.footer-hr:hover {
  color: rgb(0, 42, 53);
}

.footer-hr:hover::after {
  width: 100%;
}


.footer-map-container {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #f8fafc;
}

.footer-map-container iframe {
  display: block;
}