/* ════════════════════════════════════════════
   FOOTER CSS
   (moved out of inc/footer.php inline <style> and css/style.css)
════════════════════════════════════════════ */

/* footer start */
footer {
    background-position: top;
    background: #00599af7;
    background-image: url(../images/banner/footer.png);
    background-size: cover;
    position: relative;
    z-index: 1;
}

footer::after {
  position: absolute;
  content: "";
  /* background: url(../images/service_bg_shapes.png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: .08;
}

.footer_contact {
  position: relative;
  text-align: center;
}

.footer_contact h4 {
  display: inline-block;
  padding-right: 15px;
  color: var(--colorWhite);
  /* background: var(--colorBlack); */
  font-size: 14px;
  line-height: 35px;
  font-weight: 500;
  font-family: var(--paraFont);
  position: relative;
  z-index: 1;
}

.footer_contact::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  position: absolute;
  top: 17px;
  right: 0;
  transform: translateY(-0%);
  -webkit-transform: translateY(-0%);
  -moz-transform: translateY(-0%);
  -ms-transform: translateY(-0%);
  -o-transform: translateY(-0%);

}

.footer_contact p a {
  color: var(--colorWhite);
  font-size: 18px;
  line-height: 36px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--paraFont);
}

.footer_contact.contact_with h4 {
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
}

.footer_contact ol,
.footer_contact ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.footer_contact ol li a,
.footer_contact ul li a {
  color: var(--colorWhite);
  font-size: 16px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_contact ol li a:hover,
.footer_contact ul li a:hover {
  color: var(--colorPrimary);
}

.footer_body {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer_content .footer_logo {
  width: 160px;
  background-color: #fff;
  border-radius: 10px;
}

.footer_content p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  font-family: var(--paraFont);
  line-height: 21px;
}

.footer_content h3 {
  color: var(--colorWhite);
  font-family: var(--headingFont);
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  padding-bottom: 6px;
}

.footer_content ol,
.footer_content ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer_content ol li a,
.footer_content ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
  font-weight: 400;
  font-family: var(--paraFont);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_content ol li a:hover,
.footer_content ul li a:hover {
  color: var(--colorPrimary);
}

.footer_content form button {
  width: inherit;
  color: var(--colorWhite);
  text-align: center;
  font-family: var(--headingFont);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 30px;
  background: var(--colorPrimary);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.footer_content form button:hover {
  background: var(--colorWhite);
  color: var(--colorPrimary);
}

.copy p {
  color: #fff;
  text-align: center;
}

.footer_right_bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

.footer_right_bottom p {
  display: flex;
  gap: 15px;
  align-items: center;
  color: rgba(255, 255, 255, 0.70);
}

.footer_right_bottom p a {
  color: rgba(255, 255, 255, 0.70);
  font-family: var(--paraFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.footer_right_bottom p a:hover {
  color: var(--colorPrimary);
}

.payment {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* footer end */

/* scroll button start */
.scroll_btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: var(--colorWhite);
  right: 100px;
  bottom: 35px;
  font-size: 16px;
  position: fixed;
  cursor: pointer;
  z-index: 999;
  display: none;
  background: var(--colorBlack);
  border-radius: 50%;
  border: 2px solid rgb(255 255 255 / 23%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.scroll_btn:hover {
  background: var(--colorPrimary);
  border-color: var(--colorPrimary);
}

/* scroll button end */

/* footer 2 start */
.home_2 .footer_gallery {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.home_2 .footer_gallery li {
  width: 92px;
  height: 90px;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.home_2 .footer_right_bottom ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: end;
}

.home_2 .footer_right_bottom ul li a {
  color: rgba(255, 255, 255, 0.70);
  text-align: right;
  font-family: var(--paraFont);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.home_2 .footer_right_bottom ul li a:hover {
  color: var(--colorPrimary);
}

.home_2 .footer_body {
  border-top: 0 solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.home_2 footer .container {
  position: relative;
}

.home_2 .row.home_2_subscribe {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  border: 1px solid rgba(255, 56, 56, 0.10);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 40px 60px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
}

.home_2_subscribe .text h3 {
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;
}

.home_2_subscribe .form form {
  position: relative;
}

.home_2_subscribe .form form input {
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--colorWhite);
  padding: 25px 30px;
  border-radius: 70px;
}

.home_2_subscribe .form form button {
  position: absolute;
  top: 10px;
  right: 10px;
}

.footer_content .social_link {
  flex-direction: inherit;
  gap: 10px;
  margin-top: 25px;
}

.footer_content .social_link li a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--colorWhite);
  line-height: 47px;
  text-align: center;
  border-radius: 50%;
}

.footer_content .social_link li a:hover {
  background: var(--colorWhite);
  color: var(--colorPrimary);
}

/* footer 2 end */

/* ===== New Footer Design ===== */
.site-footer {
    position: relative;
    background-color: #06193c;
    padding: 70px 0 40px;
    overflow: hidden;
}

.site-footer-overlay {
    position: absolute;
    inset: 0;
    background-image: url(../images/banner/bg.png);
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 0;
}

.site-footer-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 42, 90, 0.97) 0%, rgba(8, 54, 110, 0.97) 35%, rgba(6, 42, 90, 0.97) 70%, rgba(4, 30, 66, 0.97) 100%);
}

.site-footer>.container {
    position: relative;
    z-index: 1;
}

.site-footer-row2 {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sf-mb {
    margin-bottom: 30px;
}

.sf-logo {
    width: 130px;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
}

.sf-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.sf-social {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-social li a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sf-social li a:hover {
    background: #dcac1c;
    border-color: #dcac1c;
    color: #06193c;
}

.sf-heading {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.sf-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #dcac1c;
}

.sf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-links li {
    margin-bottom: 11px;
}

.sf-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    display: inline-block;
}

.sf-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #dcac1c;
    margin-right: 8px;
}

.sf-links li a:hover {
    color: #dcac1c;
    transform: translateX(4px);
}

.sf-links-inline {
    display: flex;
    flex-wrap: wrap;
    column-gap: 28px;
}

.sf-links-inline li {
    width: auto;
}

.sf-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.sf-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
}

.sf-contact li i {
    color: #dcac1c;
    font-size: 15px;
    margin-top: 3px;
}

.sf-contact li a {
    color: #ffffff;
    text-decoration: none;
}

.sf-contact li a:hover {
    color: #dcac1c;
}

.sf-contact span {
  color: #fff;
}

.sf-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dcac1c;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.sf-directions:hover {
    color: #fff;
}

.sf-bottom {
    background: #051531;
    padding: 22px 0;
    text-align: center;
}

.sf-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.sf-bottom a {
    color: #dcac1c;
    text-decoration: none;
}

.sf-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .sf-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer [class*="col-"] {
        text-align: center;
    }

    .sf-social {
        justify-content: center;
    }

    .sf-links li a:hover {
        transform: translateX(0);
    }

    .sf-contact li {
        justify-content: center;
        text-align: left;
    }
}
