

/* ===== FOOTER ===== */
.lab-footer {
  background: #08233c;
  color: #d6e2f0;
  font-family: 'Segoe UI', sans-serif;
  padding: 50px 60px 20px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

/* COLUMN */
.footer-col {
  position: relative;
}

/* VERTICAL LINE */
.footer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* LOGO */
/* LOGO */
/* LOGO FIX */
.lab-footer .upcr-logo {
  display: flex;
  gap: 10px;
}

.lab-footer .upcr-logo span {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #4fc3e6; /* blue */

  color: #0a1f33; /* dark text */
  font-weight: 700;
  font-size: 26px;
}

.logo-col h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-top: 15px;
}

.logo-col p {
  font-size: 14px;
  color: #9fb3c8;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 15px;
  margin-bottom: 15px;
}

/* LINKS */
.footer-col a {
  display: block;
  color: #9fb3c8;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #00c6d7;
}

/* CONTACT */
.footer-col p {
  font-size: 14px;
  margin: 8px 0;
  color: #9fb3c8;
}

.footer-col i {
  margin-right: 8px;
  color: #00c6d7;
}

/* SOCIAL ICONS */
.social {
  margin-top: 10px;
}

.social a {
  margin-right: 12px;
  font-size: 16px;
  color: #00c6d7;
  transition: 0.3s;
}

.social a:hover {
  color: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #8fa6bc;
}

.footer-bottom a {
  color: #8fa6bc;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #00c6d7;
}



@media(max-width:768px){

}


@media (max-width: 600px) {

 .lab-footer {
    padding: 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 25px;
  }
  
  
  .lab-footer .upcr-logo {
    justify-content: center;   /* center horizontally */
    width: 100%;
  }

  .lab-footer .logo-col {
    text-align: center;        /* optional, keeps column centered */
  } 
  

  .logo-col h3 {
    font-size: 15px;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 13px;
  }

  .social {
    text-align: center;
  }

  /* BOTTOM STACK */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

 }
