
  :root{
    --footer-bg:#0d1f36;
    --footer-bg-2:#102846;
    --footer-bg-3:#113562;
    --footer-text:#d7deea;
    --footer-muted:#aeb8c8;
    --footer-white:#ffffff;
    --footer-accent:#1B9CEB;
    --footer-border:rgba(255,255,255,0.08);
    --footer-hover:#1B9CEB;
  }

  .site-footer{
    background: var(--footer-bg-3);
    color: var(--footer-text);
    margin-top: 0px;
  }

  .footer-top{
    padding: 70px 0 40px;
    border-bottom: 1px solid var(--footer-border);
  }

  .footer-brand-box{
    padding-right: 20px;
  }

  .footer-logo{
    margin-bottom: 18px;
  }

  .footer-logo img{
    max-height: 64px;
    width: auto;
  }

  .footer-about{
    color: var(--footer-white);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .footer-badge-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    color: var(--footer-white);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
  }

  .footer-widget{
    margin-bottom: 30px;
  }

  .fw-title{
    color: var(--footer-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .fw-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:42px;
    height:3px;
    border-radius:999px;
    background: var(--footer-accent);
  }

  .footer-contact ul,
  .footer-link ul,
  .footer-bottom-links ul,
  .footer-social ul{
    list-style:none;
    padding:0;
    margin:0;
  }

  .footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color: var(--footer-muted);
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 15px;
  }

  .footer-contact li i{
    color: var(--footer-accent);
    margin-top: 4px;
    min-width: 16px;
  }

  .footer-link li{
    margin-bottom: 12px;
  }

  .footer-link a,
  .footer-contact a,
  .footer-bottom-links a{
    color: var(--footer-white) !important;
    text-decoration:none;
    transition: all .3s ease;
  }

  .footer-link a:hover,
  .footer-contact a:hover,
  .footer-bottom-links a:hover{
    color: var(--footer-hover) !important;
    padding-left: 4px;
  }

  .footer-cta-box{
    margin-top: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
  }

  .footer-cta-box h5{
    color: var(--footer-white);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .footer-cta-box p{
    color: var(--footer-white);
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background: var(--footer-accent);
    color: #fff;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    border-radius:999px;
    padding:11px 18px;
    transition:.3s ease;
  }

  .footer-cta-btn:hover{
    background:white;
    color: var(--footer-accent);
    transform: translateY(-1px);
  }

  .footer-bottom{
    padding: 22px 0;
    margin-inline: 158px;
  }

  .copyright-text p{
    margin:0;
    color: var(--footer-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  .copyright-text a{
    color: var(--footer-white);
    text-decoration:none;
  }

  .footer-social{
    display:flex;
    justify-content:flex-end;
  }

  .footer-social .list-wrap{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .footer-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background: #fff;
    
    border:1px solid rgba(255, 255, 255, 0.948);
    transition:.3s ease;
  }

  .footer-social a:hover{
    background: var(--footer-hover);
    border-color: var(--footer-hover);
    color:#000000;
    transform: translateY(-2px);
  }

.fab{
 color: var(--footer-hover) !important;
}

.footer-social a:hover .fab {
    color: #fff !important;
      
}

  .footer-bottom-links{
    margin-top: 10px;
  }

  .footer-bottom-links .list-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
  }

  .footer-contact .list-wrap li {
    color:var(--footer-white) !important ;
  }


.row align-items-center gy-3{
    margin-inline: 158px;
}


/* Media Query */

  @media (max-width: 991.98px){
    .footer-top{
      padding: 55px 0 20px;
    }

    .footer-brand-box{
      padding-right: 0;
      margin-bottom: 10px;
    }

    .footer-social{
      justify-content:center;
      margin-top:16px;
    }
  }

  @media (max-width: 767.98px){
    .fw-title{
      font-size:17px;
    }

    .footer-about,
    .footer-contact li,
    .footer-link a,
    .copyright-text p{
      font-size:14px;
    }

    .footer-bottom{
      padding: 18px 0 24px;
      margin-inline: 30px;
    }
  }
