/* ==========================================================================
   Footer Styles
   ========================================================================== */

.footer {
  background-image:url('/images/Glass-Pattern-BG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid #e5e7eb;
  padding: 41px 40px 40px 40px;
  position: relative;
  overflow: visible;
  min-height:500px;
}

.footer-container {
  max-width: 1300px;
  min-height: 250px;
  background-color: #ffffff;
  border-radius: 25px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  top: -40px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid #000000;
}

.footer-title{
    display: flex;
    max-width:1300px;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 120px;
    white-space: nowrap;
    z-index: 1;
}

.first-title{
  font-size: 60px;
  height: 65px;
  font-weight: 600;
  line-height: 65px;
  color:#0500EF;
}

.second-title{
    font-size: 60px;
    height: 65px;
    font-weight: 600;
    line-height: 65px;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
    -webkit-text-fill-color: transparent;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  background-color:  #F4F5FC;
  border-radius: 30px;
  padding:6px 16px;
  margin-top: 10px;
  color:#494d57;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

.footer-link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
  position:relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1438bc;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
   width: 100%;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0;
}

.footer-copyright {
  font-size: 16px;
  color: #212877;;
  font-weight: 600;
}

.footer-privacy-link {
  color: #212877;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-privacy-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}