/* ==========================================================================
   PATHWISE — MAIN STYLESHEET
   Design system: tokens -> base -> layout -> components -> sections
   ========================================================================== */

/* ------------------------------ 1. TOKENS ------------------------------ */
:root {
    /* Color palette — matched to the Study Abroad Advisory logo (gold + dark brown) */
    --color-primary: #ef9a11;
    --color-primary-dark: #c97d0a;
    --color-primary-light: #fdf1dd;
    --color-secondary: #c2760d;
    --color-accent: #2f1514;
    --color-success: #22c55e;
    --color-dark: #2f1514;
    --color-dark-soft: #45231f;
    --color-light: #fbf7f2;
    --color-white: #ffffff;
    --color-border: #ede0cf;
    --color-text: #4a3c34;
    --color-text-muted: #8a7a6e;

    --gradient-brand: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        #f5b942 100%
    );
    --gradient-warm: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        #5a2e28 100%
    );

    /* Typography */
    --font-display: "Poppins", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Spacing rhythm */
    --section-pad-y: 7rem;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    /* Shadows */
    --shadow-soft: 0 10px 30px -12px rgba(17, 24, 39, 0.12);
    --shadow-mid: 0 20px 45px -15px rgba(17, 24, 39, 0.18);
    --shadow-strong: 0 30px 60px -20px rgba(239, 154, 17, 0.28);

    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------ 2. BASE ------------------------------ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    color: #092c3f;
    margin-top: 0px;
    font-style: normal;
    font-weight: 500;
    text-transform: normal;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: 4px;
}

.section-pad {
    padding: var(--section-pad-y) 0;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-brand);
    z-index: 2000;
    transition: width 0.1s linear;
}

/* ------------------------------ 3. TYPOGRAPHY HELPERS ------------------------------ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}

.section-head {
    max-width: 680px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-head .eyebrow-center {
    display: inline-flex;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.faq-section .section-subtitle a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ------------------------------ 4. BUTTONS ------------------------------ */
.btn {
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.35s var(--ease-premium);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-lg {
    padding: 0.95rem 2.1rem;
    font-size: 1rem;
}

.btn-primary-brand {
    background: var(--gradient-brand);
    color: var(--color-white);
    box-shadow: var(--shadow-strong);
}
.btn-primary-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px -15px rgba(239, 154, 17, 0.4);
    color: var(--color-white);
}

.btn-outline-brand {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-dark);
}
.btn-outline-brand:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-ghost-brand {
    background: transparent;
    color: var(--color-dark);
    border-color: transparent;
}
.btn-ghost-brand i {
    font-size: 1.3rem;
    color: var(--color-primary);
}
.btn-ghost-brand:hover {
    color: var(--color-primary);
}

.btn-cta-white {
    background: var(--color-white);
    color: var(--color-primary);
}
.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px -15px rgba(0, 0, 0, 0.35);
    color: var(--color-primary-dark);
}

.wp-contact-btn {
    color: #fff;
    background-color: #25d366;
}

/* Ripple effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    transform: scale(0);
    animation: ripple-anim 0.6s var(--ease-premium);
    pointer-events: none;
}
@keyframes ripple-anim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ------------------------------ 5. HEADER ------------------------------ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: all 0.4s var(--ease-premium);
}

.site-header.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px -10px rgba(17, 24, 39, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    height: 46px;
    width: auto;
    display: block;
    transition: height 0.35s var(--ease-premium);
}
.site-header.scrolled .brand-logo {
    height: 38px;
}

.brand-logo-mobile {
    height: 40px;
}

/* Light chip behind the logo in the dark footer so its dark wordmark stays legible */
/* .footer-brand-logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
}
.footer-brand-logo-chip .brand-logo {
  height: 40px;
} */

/* .main-nav {
  gap: 0.3rem;
}

.main-nav .nav-link {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--color-text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  position: relative;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.header-actions {
  gap: 0.75rem;
  align-items: center;
}

.navbar-toggler {
  border: none;
  background: var(--color-primary-light);
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.mobile-offcanvas {
  width: 300px;
}
.mobile-offcanvas .nav-link {
  font-size: 1.05rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark);
}
.offcanvas-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
} */
.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    margin: 0 auto;
}

/* line 623, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_common.scss */
.preloader .preloader-circle {
    width: 125px;
    height: 125px;
    position: relative;
    border-style: solid;
    border-width: 1px;
    border-top-color: #f2a434;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #fff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

/* line 645, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_common.scss */
.preloader .preloader-circle2 {
    border-top-color: #0078ff;
}

/* line 648, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_common.scss */
.preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

/* line 666, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_common.scss */
.preloader .preloader-img img {
    max-width: 100px;
}

/* line 669, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_common.scss */
.preloader .pere-text strong {
    font-weight: 800;
    color: #dca73a;
    text-transform: uppercase;
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* line 19, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area {
        box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* line 19, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area {
        box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    }
}

@media (max-width: 575px) {
    /* line 19, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area {
        box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    }
}

/* line 36, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-left ul li {
    color: #fff;
    display: inline-block;
    margin-right: 30px;
    font-size: 12px;
    font-weight: 100;
    font-family: "poppins", sans-serif;
    text-transform: uppercase;
}

/* line 44, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-left ul li:last-child {
    margin-right: 0px;
}

/* line 47, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-left ul li i {
    margin-right: 8px;
    color: #e94d65;
}

/* line 56, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-right .header-social li {
    display: inline-block;
}

/* line 58, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-right .header-social li a {
    color: #fff;
    font-size: 16px;
    padding-left: 10px;
}

/* line 62, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-right .header-social li a:hover {
    color: #14435c;
}

/* line 163, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-right .header-social a i {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}

/* line 172, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-right .header-social a:hover i {
    color: #ff2143;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.logo img {
    height: 130px;
    max-width: none;
}

/* Sticky*/
/* line 461, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_common.scss */
.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    z-index: 9999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    background: #fff;
}

/* Sticky end */

/* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-sticky.sticky-bar {
    background: #fff;
}

/* line 195, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-sticky.sticky-bar .main-menu nav > ul > li > a {
    padding: 8px 20px !important;
}

/* line 73, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header {
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area .header-sticky.sticky-bar {
        padding: 15px 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area .header-sticky.sticky-bar {
        padding: 15px 0px;
    }
}

@media (max-width: 575px) {
    /* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area .header-sticky.sticky-bar {
        padding: 15px 0px;
    }
}

/* line 218, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu {
    position: absolute;
    right: 0px;
    width: 100%;
    z-index: 99;
}

/* line 223, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu .slicknav_menu {
    background: transparent;
    margin-top: 0px !important;
}

/* line 226, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu .slicknav_menu .slicknav_btn {
    top: 40px;
}

/* line 229, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu .slicknav_menu .slicknav_btn .slicknav_icon-bar {
    background-color: #14435c !important;
}

/* line 233, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu .slicknav_menu .slicknav_nav {
    margin-top: 35px !important;
}

/* line 236, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu .slicknav_menu .slicknav_nav a:hover {
    background: transparent;
    color: #14435c;
}

/* line 240, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu .slicknav_menu .slicknav_nav a {
    font-size: 15px;
    padding: 7px 10px;
}

/* line 245, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.mobile_menu .slicknav_menu .slicknav_nav .slicknav_item a {
    padding: 0 !important;
}

/* line 85, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul li a {
    color: #0d2d3e;
    font-weight: 400;
    padding: 8px 19px;
    display: block;
    font-family: "poppins";
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-transform: capitalize;
}

/* line 81, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* line 99, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul li:hover > a {
    color: #14435c;
}

/* line 104, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul li:last-child a {
    padding-right: 0;
}

/* line 109, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul ul.submenu {
    position: absolute;
    width: 170px;
    background: #0d2d3e;
    left: 0;
    top: 90%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    padding: 17px 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

/* line 121, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul ul.submenu > li {
    margin-left: 7px;
    display: block;
}

/* line 124, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul ul.submenu > li > a {
    padding: 6px 10px !important;
    font-size: 15px;
    color: #fdfdfd;
}

/* line 128, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header .main-menu ul ul.submenu > li > a:hover {
    background: none;
    padding-left: 13px !important;
}

/* line 143, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.main-header ul > li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

/* line 149, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-transparent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
}

/* line 163, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-right .header-social a i {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}

/* line 172, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-top .header-info-right .header-social a:hover i {
    color: #ff2143;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

/* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-sticky.sticky-bar {
    background: #fff;
}

/* line 195, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
.header-area .header-sticky.sticky-bar .main-menu nav > ul > li > a {
    padding: 8px 20px !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area .header-sticky.sticky-bar {
        padding: 15px 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area .header-sticky.sticky-bar {
        padding: 15px 0px;
    }
}

@media (max-width: 575px) {
    /* line 190, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_headerMenu.scss */
    .header-area .header-sticky.sticky-bar {
        padding: 15px 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    /* Keep the desktop header feeling intact on smaller laptop/tablet widths. */
    .header-area .header-top .header-info-left ul li {
        margin-right: 18px;
        font-size: 11px;
    }

    .header-area .header-top .header-info-right .header-social li a {
        padding-left: 18px;
    }

    .header-area .header-bottom .logo img {
        max-width: 165px;
        height: auto;
    }

    .main-header .main-menu ul {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .main-header .main-menu ul li a {
        padding: 8px 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .main-header .main-menu ul li:last-child a {
        padding-right: 0;
    }

    .main-header .main-menu ul li:last-child button {
        padding: 8px 14px !important;
        font-size: 13px;
        line-height: 1;
    }

    .main-header .main-menu ul li:last-child button span {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    .main-header .main-menu ul li:last-child button img {
        height: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Keep the header aligned cleanly when the desktop nav still has room. */
    .header-area .header-top .header-info-left ul li {
        margin-right: 16px;
    }

    .header-area .header-bottom .logo img {
        max-width: 155px;
        height: auto;
    }

    .main-header .main-menu ul {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .main-header .main-menu ul li a {
        padding: 8px 10px;
        font-size: 13px;
        white-space: nowrap;
    }

    .main-header .main-menu ul li:last-child button {
        padding: 7px 12px !important;
        font-size: 12px;
        line-height: 1;
    }

    .main-header .main-menu ul li:last-child button img {
        height: 15px;
    }
}

@media (max-width: 991px) {
    .mobile-header {
        position: relative;
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .mobile-header .logo {
        max-width: 150px;
        padding-right: 58px;
    }

    .mobile-header .logo img {
        height: 110px !important;
    }

    .mobile_menu {
        display: contents;
    }

    .mobile_menu .slicknav_menu {
        background: transparent;
        margin-top: 0;
        padding: 0;
    }

    .mobile_menu .slicknav_btn {
        position: absolute;
        top: 16px;
        right: 18px;
        float: none;
        margin: 0;
        z-index: 2;
    }

    .mobile_menu .slicknav_menu .slicknav_nav {
        clear: both;
        margin-top: 18px !important;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }

    .mobile_menu .slicknav_menu .slicknav_nav a {
        color: #0d2d3e;
        font-weight: 500;
        padding: 11px 6px;
        margin: 0;
    }

    .mobile_menu .slicknav_menu .slicknav_nav a:hover {
        background: #fdf1dd;
        color: #14435c;
    }

    .mobile_menu .slicknav_menu .slicknav_nav .slicknav_row {
        margin: 0;
    }

    .mobile_menu .slicknav_menu .slicknav_nav .slicknav_item a {
        padding: 0 !important;
    }

    .mobile_menu .slicknav_menu .slicknav_nav li:last-child {
        padding-top: 8px;
        text-align: center;
    }

    .mobile_menu .slicknav_menu .slicknav_nav li:last-child a {
        display: flex;
        justify-content: start;
        /* padding: 0; */
    }

    .mobile_menu .slicknav_menu .slicknav_nav li:last-child button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
    }
}

/* custom footer css */
.career-btn .neon-pulse {
    background: #f19b20;
    border: 4px solid #f3cc94;
    box-shadow: 4px 14px 34px #f19b207d;
    overflow: visible;
    padding: 4px 10px;
    font-weight: 300;
    border-radius: 5px;
    transition: 1500ms all ease;
}
.career-btn .neon-pulse:hover {
    overflow: hidden;
    transition: 1500ms all ease;
}
/*.career-btn .neon-pulse::before,*/
.career-btn .neon-pulse::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid #f19b20;
    border-radius: inherit;
    animation: pulseOut 2s ease-out infinite;
    opacity: 0;
}
.career-btn .neon-pulse::after {
    animation-delay: 1s;
}
@keyframes pulseOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* .footer-area div, .footer-area h2, .footer-area h4, .footer-area h6 {
    color: #e9e9e9;
} */

.img-banner-text {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    position: absolute;
    padding-block: 1rem;
    justify-content: end;
    flex-direction: column;
    background-image: linear-gradient(45deg, rgb(0 0 0 / 50%), transparent);
}

@media (max-width: 991px) {
    .img-banner-text {
        color: #363636;
        position: static;
        padding-top: 52px;
        background-image: none;
    }

    .img-banner-text h2 {
        text-align: center;
    }

    .img-banner-text .w-75 {
        width: 100% !important;
    }
}

/* ------------------------------ 6. HERO ------------------------------ */
.hero {
    position: relative;
    padding: 9.5rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfbfe 0%, var(--color-white) 100%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            to right,
            rgba(239, 154, 17, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(239, 154, 17, 0.04) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse at 30% 20%, black 30%, transparent 75%);
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.hero-blob-a {
    width: 480px;
    height: 480px;
    background: radial-gradient(
        circle,
        rgba(239, 154, 17, 0.35),
        transparent 70%
    );
    top: -140px;
    right: -120px;
    animation: float-blob 12s ease-in-out infinite;
}
.hero-blob-b {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(90, 46, 40, 0.3), transparent 70%);
    bottom: -160px;
    left: -100px;
    animation: float-blob 15s ease-in-out infinite reverse;
}
@keyframes float-blob {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -25px) scale(1.08);
    }
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.3rem, 4.4vw, 3.6rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
}
.typed-wrap {
    color: var(--color-primary);
}
.typed-wrap #typedHero {
    border-right: 3px solid var(--color-primary);
    padding-right: 4px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 2.2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.stars {
    color: var(--color-primary);
    font-size: 0.95rem;
    letter-spacing: 2px;
}
.rating-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.hero-trust-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hero-visual {
    position: relative;
    z-index: 2;
}
.hero-mockup {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}
.mockup-frame {
    position: relative;
}
.mockup-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-mid);
    border: 6px solid var(--color-white);
    animation: float-mockup 6s ease-in-out infinite;
}
@keyframes float-mockup {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-match {
    top: -8%;
    left: -14%;
    flex-direction: row;
}
.match-ring {
    position: relative;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
}
.match-ring svg {
    transform: rotate(-90deg);
}
.ring-track {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 6;
}
.ring-fill {
    fill: none;
    stroke: url(#none);
    stroke: var(--color-primary);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 213.6;
    stroke-dashoffset: 213.6;
    transition: stroke-dashoffset 1.4s var(--ease-premium);
}
.match-value {
    position: absolute;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
}
.match-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-dark);
    margin: 0;
}
.match-sub {
    font-size: 0.75rem;
    color: var(--color-success);
    margin: 0;
}

.card-salary {
    bottom: 14%;
    right: -16%;
    animation-delay: 0.4s;
}
.card-salary i {
    font-size: 1.4rem;
    color: var(--color-secondary);
}
.fc-title {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin: 0;
}
.fc-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.card-notice {
    bottom: -6%;
    left: 6%;
    font-size: 0.82rem;
    animation-delay: 0.7s;
}
.card-notice i {
    color: var(--color-success);
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-pill);
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-indicator span {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-pill);
    animation: scroll-dot 1.6s ease infinite;
}
@keyframes scroll-dot {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(14px);
    }
}

/* ------------------------------ 7. TRUSTED COMPANIES ------------------------------ */
.trusted-section {
    padding: 3rem 0 3.5rem;
    background: var(--color-light);
}
.trusted-label {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}
.logo-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: marquee 26s linear infinite;
}
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}
.logo-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    filter: grayscale(1);
    opacity: 0.65;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.logo-item i {
    font-size: 1.3rem;
}
.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--color-primary);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ------------------------------ 8. FEATURES ------------------------------ */
.features-section {
    background: var(--color-white);
}

.feature-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.9rem;
    height: 100%;
    transition: all 0.4s var(--ease-premium);
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-brand);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-mid);
    border-color: transparent;
}
.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1.3rem;
    transition: transform 0.4s var(--ease-premium);
}
.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.05);
}

.feature-card-a .feature-icon {
    background: var(--gradient-brand);
}
.feature-card-b .feature-icon {
    background: linear-gradient(135deg, #c2760d, #8a4b1d);
}
.feature-card-c .feature-icon {
    background: linear-gradient(135deg, #45231f, #6b3a2e);
}
.feature-card-d .feature-icon {
    background: linear-gradient(135deg, #ef9a11, #c2410c);
}
.feature-card-e .feature-icon {
    background: linear-gradient(135deg, #a67c1e, #ef9a11);
}
.feature-card-f .feature-icon {
    background: linear-gradient(135deg, #8a4b1d, #2f1514);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}
.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ------------------------------ 9. STATISTICS ------------------------------ */
.stats-section {
    background: var(--color-dark);
    padding: 4.5rem 0;
    position: relative;
}
.stat-card {
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, #f5c56b, #ef9a11);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.35rem;
}
.stat-label {
    color: #c9b4a3;
    font-size: 0.95rem;
}

/* ------------------------------ 10. HOW IT WORKS ------------------------------ */
.how-section {
    background: var(--color-light);
}

.process-track {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.process-step {
    flex: 1;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.4s var(--ease-premium),
        box-shadow 0.4s ease;
    position: relative;
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-mid);
}

.process-icon {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--color-white);
    display: grid;
    place-items: center;
    font-size: 1.7rem;
}
.process-num {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--color-primary-light);
}
.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.process-step p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.process-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    margin-top: 75px;
    background: repeating-linear-gradient(
        to right,
        var(--color-primary) 0 6px,
        transparent 6px 12px
    );
    opacity: 0.5;
}

/* ------------------------------ 11. PRODUCT SHOWCASE ------------------------------ */
.showcase-section {
    background: var(--color-white);
}
.showcase-block {
    padding: 3rem 0;
}
.showcase-block:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.showcase-media {
    position: relative;
}
.showcase-blob {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(
        circle,
        rgba(239, 154, 17, 0.18),
        transparent 70%
    );
    border-radius: 50%;
    top: -40px;
    left: -60px;
    z-index: 0;
    filter: blur(20px);
}
.showcase-blob-alt {
    background: radial-gradient(
        circle,
        rgba(90, 46, 40, 0.18),
        transparent 70%
    );
    right: -60px;
    left: auto;
}

.showcase-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-mid);
    transition: transform 0.5s var(--ease-premium);
}
.showcase-media:hover .showcase-image {
    transform: scale(1.02);
}

.showcase-title {
    font-size: 1.7rem;
    margin: 0.3rem 0 1rem;
}
.showcase-text {
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
}
.showcase-list {
    margin-bottom: 1.6rem;
}
.showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.96rem;
}
.showcase-list i {
    color: var(--color-success);
    margin-top: 0.2rem;
}

/* ------------------------------ 12. WHY CHOOSE US ------------------------------ */
.why-section {
    background: var(--color-light);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.7rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-premium);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-mid);
    background: rgba(255, 255, 255, 0.95);
}
.why-card-tall {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--gradient-brand);
    color: var(--color-white);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    transition: transform 0.4s ease;
}
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(6deg);
}
.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.why-card p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

/* ------------------------------ 15. FAQ ------------------------------ */
.faq-section {
    background: var(--color-white);
}
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
}
.faq-accordion .accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--color-dark);
    background: transparent;
    padding: 1.4rem 0;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--color-primary);
}
.faq-accordion .accordion-button::after {
    filter: none;
    transition: transform 0.35s var(--ease-premium);
}
.faq-accordion .accordion-body {
    padding: 0 0 1.5rem;
    color: var(--color-text-muted);
}

/* ------------------------------ 16. CTA ------------------------------ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: var(--gradient-brand);
    padding: 5.5rem 0;
}
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.cta-blob-a {
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.25);
    top: -140px;
    left: -80px;
}
.cta-blob-b {
    width: 320px;
    height: 320px;
    background: rgba(245, 158, 11, 0.35);
    bottom: -140px;
    right: -60px;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}
.cta-inner h2 {
    color: var(--color-white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.cta-inner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ------------------------------ 17. CONTACT ------------------------------ */
.contact-section {
    background: var(--color-light);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}
.contact-info-item i {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}
.ci-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}
.ci-value {
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.contact-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}
.contact-social a:hover {
    background: var(--gradient-brand);
    color: var(--color-white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
}
.contact-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}
.optional-tag {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.8rem;
}
.contact-form .form-control {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-border);
    padding: 0.7rem 1rem;
    font-size: 0.94rem;
}
.contact-form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-light);
}

.form-success {
    display: none;
    align-items: flex-start;
    gap: 0.9rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    margin-top: 1.2rem;
}
.form-success.is-visible {
    display: flex;
}
.form-success i {
    color: var(--color-success);
    font-size: 1.6rem;
}
.fs-title {
    font-weight: 700;
    margin: 0;
    color: var(--color-dark);
}
.fs-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ------------------------------ 18. FOOTER ------------------------------ */
/* .site-footer {
  background: var(--color-dark);
  color: #c9b4a3;
  padding-top: 4.5rem;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  margin: 1rem 0 1.2rem;
  font-size: 0.9rem;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--gradient-brand);
  color: var(--color-white);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul a {
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-col ul a:hover {
  color: var(--color-secondary);
}

.footer-newsletter h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.footer-newsletter p {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
}
.newsletter-form input::placeholder {
  color: #8a7568;
}
.newsletter-form button {
  background: var(--gradient-brand);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  width: 44px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  font-size: 0.85rem;
} */

/* line 1, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area {
    background: #f2f5ff;
}

/* line 3, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top {
    border-bottom: 1px solid #d8d8d8;
}

/* line 6, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-logo {
    margin-bottom: 30px;
}

/* line 10, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-pera .info1 {
    line-height: 1.8;
    margin-bottom: 35px;
    color: #bdbdbd;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    /* line 10, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
    .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
        padding-right: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* line 10, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
    .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
        padding-right: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* line 10, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
    .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
        padding-right: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* line 10, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
    .footer-area .footer-top .single-footer-caption .footer-pera .info1 {
        padding-right: 0px;
    }
}

/* line 29, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-number h4 {
    color: #ff0000;
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
}

/* line 34, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-number h4 span {
    color: #fff;
}

/* line 38, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-number p {
    color: #bdbdbd;
}

/* line 43, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-tittle h4 {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin-bottom: 38px;
    font-weight: 500;
    text-transform: uppercase;
}

/* line 52, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-tittle ul li {
    color: #bdbdbd;
    margin-bottom: 15px;
    text-transform: capitalize;
}

/* line 56, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a {
    color: #bdbdbd;
    font-weight: 300;
}

/* line 59, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-tittle ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* line 67, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-form {
    margin-bottom: 30px;
}

/* line 69, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-form form {
    position: relative;
}

/* line 71, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-form form input {
    width: 100%;
    height: 43px;
    padding: 10px 20px;
    border: 0;
    background: #101720;
    color: #fff;
}

/* line 78, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area
    .footer-top
    .single-footer-caption
    .footer-form
    form
    input::placeholder {
    color: #9fa6bd;
    font-weight: 300;
    font-size: 14px;
}

/* line 85, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area
    .footer-top
    .single-footer-caption
    .footer-form
    form
    .form-icon
    button {
    position: absolute;
    top: 0px;
    right: 0;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 14px 22px;
    background: #0a0f17;
    line-height: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

/* line 102, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .info.error {
    color: #ff0000;
}

/* line 105, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-cap {
    margin-bottom: 30px;
}

/* line 107, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-cap span {
    color: #14435c;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
    display: block;
}

/* line 114, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-top .single-footer-caption .footer-cap p {
    color: #bdbdbd;
    font-size: 16px;
}

/* line 122, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-bottom {
    padding-bottom: 20px;
    padding-top: 20px;
}

/* line 127, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-bottom .footer-copy-right p {
    color: #525252;
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 12px;
}

/* line 133, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-bottom .footer-copy-right p i {
    color: #f1b158;
}

/* line 136, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-bottom .footer-copy-right p a {
    color: #f1b158;
}

/* line 150, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-social span {
    color: #fff;
    position: relative;
    margin-right: 57px;
}

/* line 155, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-social span::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 2px;
    background: #3b3647;
    top: 50%;
    transform: translateY(-50%);
    right: -56px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* line 149, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
    .footer-area .footer-social {
        float: left;
        padding-top: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    /* line 149, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
    .footer-area .footer-social {
        float: left;
        padding-top: 10px;
    }
}

@media (max-width: 575px) {
    /* line 149, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
    .footer-area .footer-social {
        float: left;
        padding-top: 10px;
    }
}

/* line 179, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-social a {
    color: #bdbdbd;
    font-size: 14px;
    text-align: center;
    margin-left: 16px;
}

/* line 184, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-social a:first-child {
    margin-left: 0px;
}

/* line 187, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_footer.scss */
.footer-area .footer-social a:hover {
    color: #fff;
}

.img-banner-text {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    position: absolute;
    padding-block: 1rem;
    justify-content: end;
    flex-direction: column;
    background-image: linear-gradient(45deg, rgb(0 0 0 / 50%), transparent);
}

@media (max-width: 991px) {
    .img-banner-text {
        color: #363636;
        position: static;
        padding-top: 52px;
        background-image: none;
    }

    .img-banner-text h2 {
        text-align: center;
    }

    .img-banner-text .w-75 {
        width: 100% !important;
    }
}

.ff-poppins {
    font-family: "poppins", sans-serif;
}

.p-26 {
    padding: 26px;
}

.branch-name {
    margin: 0;
    color: #363636;
    font-weight: 700;
    font-family: "poppins", sans-serif;
}

.sm-font {
    line-height: 160%;
    color: #777;
    font-size: 14px;
    max-width: 385px;
}

.sm-font h6 {
    color: #777;
    font-size: 14px;
}

.footer-area hr {
    border-color: #fff;
}

.footer-shape {
    position: absolute;
}

.footer-shape.shape-2 {
    top: 0;
    right: 0;
    width: 36rem;
}
.footer-shape.shape-1 {
    left: 0%;
    bottom: 0%;
}

.footer-top h2 {
    text-transform: uppercase;
    color: #090909;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.rich-small {
    line-height: 160%;
    color: #777;
    display: block;
    font-size: 16px;
    max-width: 575px;
    font-family: "Open Sans", sans-serif;
}

.main-branch {
    width: 50%;
    min-width: 300px;
}

.main-branch a {
    color: #777;
}

.branch-flag {
    border-radius: 4px;
    width: 49px;
    aspect-ratio: 3/2;
}

/*.all-branches {*/
/*    padding: 0px 26px;*/
/*}*/

/*.all-branches:first-child {*/
/*    padding-inline-start: 0px;*/
/*}*/

.btm-border::after {
    left: 0;
    top: 100%;
    content: "";
    height: 4px;
    width: 64px;
    position: absolute;
    border-radius: 50px;
    background-color: #f19b20;
}

.footer-area .form-data {
    z-index: 2;
    padding: 16px;
    position: relative;
    border-radius: 12px;
    background-color: rgb(195 228 235 / 93%);
}

.footer-area .form-data .input-group-text {
    max-width: 56px;
    padding-inline: 4px;
}
.footer-area .form-data .form-control {
    padding: 15px 10px;
}

.form-data .no-select {
    font-size: 15px;
    user-select: none;
}

#quick-message {
    background: #14435c;
    height: 50px;
    width: 50px;
    right: 45px;
    bottom: 45px;
    position: fixed;
    z-index: 10;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    border: 2px solid transparent;
    box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2);
}

@media (max-width: 575px) {
    /* line 431, C:/Users/HP/Desktop/264.Business_HTML/HTML/assets/scss/_common.scss */
    #quick-message {
        right: 16px;
    }
}

#quick-message {
    box-shadow: none;
    background-color: transparent;
}

#quick-message img {
    width: 100%;
    filter: drop-shadow(4px 4px 10px #1c294d80);
}

@media (max-width: 638px) {
    .footer-shape.shape-2 {
        display: none;
    }

    .footer-shape.shape-1 {
        display: none;
    }
}
@media (max-width: 1160px) {
    .footer-shape.shape-2 {
        display: none;
    }

    .footer-shape.shape-1 {
        display: none;
    }
}
.iasBadge {
    height: auto;
    width: 88px;
    right: 32px;
    bottom: 103px;
    position: fixed;
    z-index: 10;
    text-align: center;
}

.iasBadge #iasBadge a img {
    width: 100% !important;
}

@media (max-width: 585px) {
    .iasBadge {
        position: fixed;
        right: 7px !important;
    }
}

.footer-area .form-data .footer-field {
    margin-bottom: 12px;
}

.footer-area .form-data .form-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.footer-area .form-data .form-control,
.footer-area .form-data .select2-container--default .select2-selection--single {
    min-height: 54px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    background-color: #fff;
    box-shadow: none;
}

.footer-area .form-data .form-control:focus,
.footer-area
    .form-data
    .select2-container--default
    .select2-selection--single:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 0.18rem rgba(245, 158, 11, 0.15);
}

.footer-area .form-data .footer-phone-group {
    display: flex;
    align-items: stretch;
}

.footer-area .form-data .footer-country-code {
    flex: 0 0 42%;
    max-width: 42%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-area .form-data .footer-phone-input {
    flex: 1 1 auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    min-width: 0;
}

.footer-area .form-data .footer-phone-group .form-control {
    margin: 0;
}

.footer-area .form-data .select2-container {
    width: 100% !important;
}

.footer-area .form-data .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.footer-area
    .form-data
    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #0f172a;
    line-height: 52px;
    padding-left: 0;
    padding-right: 20px;
}

.footer-area
    .form-data
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 52px;
    right: 8px;
}

.footer-area .form-data .btn-enquire {
    min-width: 210px;
    min-height: 54px;
    border-radius: 0;
    letter-spacing: 0.08em;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #ff7a18 0%, #ff3d54 100%);
    border: 0;
    padding: 27px 44px;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    display: inline-block;
    font-size: 14px;
    -moz-user-select: none;
    line-height: 0;
    margin-bottom: 0;
    margin: 10px;
    cursor: pointer;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-enquire::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 101%;
    height: 101%;
    background: #fff;
    color: #000 !important;
    z-index: 1;
    transition: transform 0.5s;
    transition-timing-function: ease;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleX(0);
    border-radius: 0;
}

.btn-enquire:hover::before {
    transform: scaleX(1);
    color: #000000 !important;
    z-index: -1;
}

.footer-area .form-data .btn-enquire:hover {
    opacity: 0.95;
    color: #000;
}

@media (max-width: 767px) {
    .footer-area .form-data .footer-country-code {
        flex-basis: 46%;
        max-width: 46%;
    }

    .footer-area .form-data .btn-enquire {
        width: 100%;
    }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--color-white);
    border: none;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s var(--ease-premium);
    z-index: 900;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
}
