/* ===============================
   FOOTER - CLEAN / RESPONSIVE UI
================================= */

*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

ul{
  list-style:none;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* ===============================
   FOOTER WRAPPER
================================= */
.footer{
  position:relative;
  overflow:hidden;
  background:#0b0d22;
}

/* ===============================
   TOP AREA
================================= */
.footer .footer-top{
  position:relative;
  padding:100px 0;
  z-index:1;
}

.footer .footer-top::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.12);
  z-index:-1;
}

/* ===============================
   ROW / GRID
================================= */
.footer-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
}

/* ===============================
   COLUMN
================================= */
.footer .single-footer{
  position:relative;
}

.footer .single-footer h2{
  position:relative;
  color:#ffffff;
  font-size:22px;
  font-weight:700;
  margin-bottom:28px;
  padding-bottom:16px;
  letter-spacing:0.3px;
}

.footer .single-footer h2::before{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:55px;
  height:3px;
  background:#1a76d1;
  border-radius:50px;
}

.footer .single-footer p{
  color:rgba(255,255,255,0.78);
  line-height:1.8;
  font-size:15px;
}

/* ===============================
   SOCIAL ICONS
================================= */
.footer .single-footer .social{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.footer .single-footer .social li{
  margin:0;
}

.footer .single-footer .social li a{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  font-size:16px;
  transition:all 0.35s ease;
}

.footer .single-footer .social li a:hover{
  background:#ffffff;
  color:#1a76d1;
  border-color:#ffffff;
  transform:translateY(-4px);
}

/* ===============================
   FOOTER LINKS
================================= */
.footer .single-footer.f-link li{
  margin-bottom:14px;
}

.footer .single-footer.f-link li:last-child{
  margin-bottom:0;
}

.footer .single-footer.f-link li a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,0.82);
  font-size:15px;
  font-weight:400;
  transition:all 0.35s ease;
}

.footer .single-footer.f-link li a i{
  color:#1a76d1;
  font-size:13px;
  transition:all 0.35s ease;
}

.footer .single-footer.f-link li a:hover{
  color:#ffffff;
  transform:translateX(10px);
}

.footer .single-footer.f-link li a:hover i{
  color:#ffffff;
}

/* ===============================
   TIME LIST
================================= */
.footer .single-footer .time-sidual{
  margin-top:16px;
}

.footer .single-footer .time-sidual li{
  display:flex;
  justify-content:space-between;
  gap:15px;
  color:#ffffff;
  font-size:15px;
  margin-bottom:8px;
}

.footer .single-footer .time-sidual li:last-child{
  margin-bottom:0;
}

/* ===============================
   NEWSLETTER
================================= */
.footer .single-footer .newsletter-inner{
  position:relative;
  margin-top:22px;
}

.footer .single-footer .newsletter-inner input{
  width:100%;
  height:52px;
  padding:0 65px 0 18px;
  border:1px solid rgba(255,255,255,0.35);
  border-radius:6px;
  background:transparent;
  color:#ffffff;
  font-size:15px;
  outline:none;
  transition:all 0.35s ease;
}

.footer .single-footer .newsletter-inner input:focus{
  border-color:#1a76d1;
  padding-left:22px;
}

.footer .single-footer .newsletter-inner input::placeholder{
  color:rgba(255,255,255,0.72);
}

.footer .single-footer .newsletter-inner .button{
  position:absolute;
  top:0;
  right:0;
  width:52px;
  height:52px;
  border:none;
  border-radius:0 6px 6px 0;
  background:#ffffff;
  color:#1a76d1;
  font-size:20px;
  cursor:pointer;
  transition:all 0.35s ease;
}

.footer .single-footer .newsletter-inner .button:hover{
  background:#1a76d1;
  color:#ffffff;
}

/* ===============================
   COPYRIGHT
================================= */
.footer .copyright{
  background:#13152b;
  padding:28px 0;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.05);
}

.footer .copyright .copyright-content p{
  color:rgba(255,255,255,0.75);
  font-size:14px;
  line-height:1.6;
}

.footer .copyright .copyright-content p a{
  color:#ffffff;
  text-decoration:underline;
  transition:0.3s ease;
}

.footer .copyright .copyright-content p a:hover{
  color:#1a76d1;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 991px){
  .footer-row{
    grid-template-columns:repeat(2, 1fr);
    gap:35px;
  }

  .footer .footer-top{
    padding:80px 0;
  }
}

@media (max-width: 767px){
  .footer-row{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer .footer-top{
    padding:60px 0;
  }

  .footer .single-footer h2{
    font-size:20px;
  }

  .footer .single-footer{
    margin-bottom:0;
  }
}

@media (max-width: 480px){
  .footer .single-footer h2{
    font-size:18px;
  }

  .footer .single-footer p,
  .footer .single-footer.f-link li a,
  .footer .copyright .copyright-content p{
    font-size:14px;
  }
}