.footer-wrapper::after {
    content: "Mind & Miles";
    position: absolute;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%);
    font-size: clamp(80px, 12vw, 220px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(123, 127, 103, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.footer-social {
	margin-bottom: 0;
}

.copyright-para {
	font-size: 18px;
	color: #54595f;
}

.footer-column-heading {
	position: relative;
}

.footer-column-heading::after {
	content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 4rem;
    height: 2px;
    background: #54595f;
}

/* ======================== ACCESSIBILITY (skip-link + sr-only) BEGIN ============ */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
/* ======================== ACCESSIBILITY END ============ */

.site-header {
  transition: transform 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
/*   background-color: #ffffff; */
  box-shadow: 0 10px 20px #0000000d;
}

.site-header.scrolled > .kt-row-column-wrap {
	padding: 1rem 15px !important;
	transition: padding 0.3s ease-in-out;
}

.footer-wrapper .kt-svg-icon-list .kt-svg-icon-link {
	transition: transform .3s ease-in-out
}

.footer-wrapper .kt-svg-icon-list .kt-svg-icon-link:hover {
	transform: translateX(5px)
}


/* ======================== 404 PAGE EXTRAS BEGIN ============ */
.page-404 .page-404-code {
    font-family: "Inter", sans-serif;
    font-size: clamp(80px, 18vw, 200px);
    font-weight: 700;
    line-height: 1;
    color: var(--orange, #E67817);
    margin-bottom: 16px;
}
/* ======================== 404 PAGE EXTRAS END ============ */


/* ======================== HEADER STYLE BEGIN ============ */

/* ======================== HEADER STYLE END ============ */



/* ======================== FOOTER STYLE BEGIN ============ */

/* ======================== FOOTER STYLE END ============ */




/* ======================== POPUP FORM STYLE BEGIN ============ */
.popup-form {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
}
.popup-form-content {
    margin: auto;
    padding: 20px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: #fff;
}
.close-popup {
    font-weight: bold;
    right: 0px;
    position: absolute;
    top: 0;
    background: #333332;
    padding: 6px 7px 4px 7px;
}
.popup-logo.menu {
    z-index: 99;
}
@media only screen and (max-width: 1024px){
    #tba-modal-popup.popup-form {
        padding-top: 10px;
    }
}

/* ======================== POPUP FORM STYLE END ============ */
/* ======================== MOBILE POPUP STYLE BEGIN ============ */
.overlay-mobile {
    height: 100%;
    width: 0;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #e7f5ff;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 999999;
}
.overlay-mobile .closebtn {
    position: absolute;
    top: 21px;
    right: 18px;
    font-size: 25px;
    background-color: #fa9420;
    color: #fff;
    height: 30px;
    text-align: center;
    width: 30px;
    border-radius: 10px;
    padding-top: 0px;
    z-index: 1000;
}
.overlay-mobile a {
    text-decoration: none;
}
.overlay-content-mobile {
    position: relative;
    top: 0;
    width: 100%;
    text-align: center;
    margin-top: 0px;
}
/* ======================== MOBILE POPUP STYLE END ============ */


/* ======================== FLOATING BTN CSS BEGIN ============ */
.floating-contact-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 170px;
    height: 52px;
    background: #c65d3b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 16px;
	border: 1px solid #cb9a8b;
    text-decoration: none;
    transform: translateX(118px);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.floating-btn:hover {
	color: #fff;
    transform: translateX(0);
}

.btn-text {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.floating-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: #fff;
}
/* ======================== FLOATING BTN CSS END ============ */


/* ======================== Btn_back_to_top  BEGIN ============ */
#btn-back-to-top {
    position: fixed;
    bottom: 5%;
    right: 28px;
    display: none;
    cursor: pointer;
    color: #7b7f67;
    background-color: #3b3b3b;
    width: 50px;
    height: 50px;
    font-size: 25px;
    border-radius: 0;
    z-index: 10000;
    text-align: center;
    border: 1px solid #3b3b3b;
	  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
#btn-back-to-top svg {
  width: 30px;
  height: 100%;
  stroke: #ffffff;
}

#btn-back-to-top:hover svg {
  stroke: #3b3b3b;	
}

/* Hover */
#btn-back-to-top:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

/* Optional Click Feel */
#btn-back-to-top:active {
  transform: translateY(-2px);
}
/* ======================== Btn_back_to_top  END ============ */