@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@font-face {
  font-display: swap;
  font-family: 'Gopher Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/GopherDisplay-Regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Gopher Display';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/GopherDisplay-Medium.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Gopher Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/GopherDisplay-Bold.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Gopher Display';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/GopherDisplay-Black.woff2') format('woff2');
}

:root {
  --color-primary: #9b2c2c;
  --color-primary-dark: #681c1c;
  --color-text: #171717;
  --color-muted: #6f6f6f;
  --color-border: #e5e5e5;
  --color-surface: #f7f7f7;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--color-white);
  color: var(--color-text);
 font-family: "Outfit", sans-serif;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
p{
     font-family: "Outfit", sans-serif!important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

button,
input {
  font: inherit;
}

button:focus,
input:focus,
.btn:focus {
  box-shadow: none;
  outline: none;
}

.header-main {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
}

.header-main.scroll {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  position: fixed;
}

.header-top {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 88px;
}

.header-main .navbar-brand,
.menu-offcanvas .offcanvas-brand {
  color: var(--color-primary);
  display: block;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.header-main nav {
  padding: 14px 0;
}

.header-main .custom-nav-link {
  border-radius: 6px;
  color: var(--color-text);
  display: block;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin: 0 4px;
  padding: 8px 14px;
  text-transform: capitalize;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-main .custom-nav-link.active,
.header-main .custom-nav-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.nav-toggler {
  align-items: center;
  border: 0;
  box-shadow: none;
  display: flex;
  gap: 10px;
  position: absolute;
  right: 16px;
  top: 30px;
}

.toggler-txt {
  color: var(--color-text);
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-icon span {
  background: var(--color-text);
  border-radius: 20px;
  display: block;
  height: 3px;
  width: 34px;
}

.menu-offcanvas .offcanvas-body {
  padding: 42px 0 20px;
}

.menu-offcanvas .offcanvas-brand {
  margin: 0 auto 28px;
}

.menu-offcanvas .btn-close {
  position: absolute;
  right: 14px;
  top: 14px;
}

.menu-offcanvas .sidebar-nav .custom-nav-link {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  display: block;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 16px;
  padding: 12px 28px;
}

.theme-h1,
.theme-h2,
.theme-h3,
.theme-h4,
.theme-h5,
.theme-h6 {
  color: var(--color-text);
  font-family: 'Gopher Display', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.theme-h1 {
  text-transform: uppercase;
}

.theme-h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.theme-h3 {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
}

.theme-h5 {
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.theme-h6 {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.theme-p {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.8;
}

.discover-ignite,
.events-sec,
.instagram-sec {
  padding: clamp(48px, 8vw, 90px) 0;
}

.format-placeholder {
  border-radius: 8px;
}

.format-card {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.format-card:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.newsletter-content {
  text-align: center;
}

.newsletter-sec .theme-h2 {
  color: var(--color-text);
}

.newsletter-field {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  margin: 28px auto 0;
  max-width: 760px;
  padding: 10px;
}

.newsletter-field input {
  border: 0;
  color: var(--color-text);
  flex: 1;
  min-height: 54px;
  min-width: 0;
  padding: 0 16px;
}

.newsletter-field button {
  background: var(--color-primary);
  border: 0;
  border-radius: 6px;
  color: var(--color-white);
  cursor: pointer;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-weight: 600;
  min-height: 54px;
  padding: 0 24px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.newsletter-field button:hover {
  background: var(--color-primary-dark);
}

.instagram-sec .theme-h3 {
  margin-bottom: 24px;
  text-align: center;
}

.events-listing {
  height: 100%;
}

.events-listing .theme-h2 {
  margin-bottom: 24px;
}

.events-listing li + li {
  margin-top: 14px;
}

.event-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: block;
  padding: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.event-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.event-det {
  align-items: center;
  display: flex;
  gap: 16px;
}

.event-det .date {
  align-items: center;
  background: var(--color-primary);
  border-radius: 8px;
  color: var(--color-white);
  display: flex;
  flex: 0 0 64px;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
}

.event-det .date span {
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.event-det .date small {
  font-size: 12px;
  text-transform: uppercase;
}

.event-det .event-dec {
  flex: 1;
  min-width: 0;
}

.event-det .icon span {
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-primary);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.footer-main {
  background: var(--color-text);
  color: var(--color-white);
}

.footer-top {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(18px, 6vw, 80px);
}

.footer-top p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  width: 40px;
}

.social-links a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
  text-align: center;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.top-header {
  border-bottom: 1px solid #d7e2dc;
  font-size: 13px;
  color: #666;
  background: #fff;
}

.top-bar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.top-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-icon {
  color: #1c6b4b;
  display: inline-block;
  flex: 0 0 15px;
  height: 15px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  fill: none;
  width: 15px;
}

.top-right {
  display: flex;
  gap: 18px;
}

.top-right a {
  color: #666;
  text-decoration: none;
}

.main-header {
  background: #fff;
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}

.header-row {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.logo,
.drawer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #071a2c;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 20px;
}

.logo {
  flex: 0 0 180px;
  max-width: 180px;
}

.drawer-logo {
  max-width: 170px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #176542;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: clamp(12px, 1.7vw, 29px);
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.desktop-nav a {
  color: #555;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  pointer-events: auto;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
  z-index: 4;
}

.desktop-nav a.active {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.header-btn,
.drawer-btn {
  background: linear-gradient(90deg, #06412f, #3c9672);
  color: #fff;
  pointer-events: auto;
  position: relative;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  z-index: 4;
}

.header-btn:hover,
.drawer-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  flex: 0 0 44px;
  height: 44px;
  padding: 6px;
  width: 44px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: #176542;
  margin: 7px 0;
}

.mobile-drawer {
  background: #fff;
  width: min(320px, 88vw);
}

.mobile-drawer .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.mobile-drawer .offcanvas-body {
  padding: 28px 24px;
}

.drawer-logo {
  margin-bottom: 35px;
}

.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.drawer-menu li {
  border-bottom: 1px solid #eee;
}

.drawer-menu a {
  display: block;
  padding: 14px 0;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.drawer-menu a:hover {
  color: #176542;
  padding-left: 6px;
}
.main-header .logo img{
  width: 100%;
  height: auto;
}

.mobile-drawer .drawer-logo img {
  width: 100%;
  height: auto;
}

.fa-arrow-right {
  display: inline-block;
  height: 10px;
  /* margin-left: 8px; */
  position: relative;
  vertical-align: middle;
  width: 17px;
}

.fa-arrow-right::before,
.fa-arrow-right::after {
  background: currentColor;
  content: '';
  display: block;
  position: absolute;
}

.fa-arrow-right::before {
  height: 2px;
  left: 0;
  top: 4px;
  width: 17px;
}

.fa-arrow-right::after {
  height: 8px;
  right: 0;
  top: 1px;
  transform: rotate(45deg);
  width: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  background: transparent;
}

.fa-chevron-left,
.fa-chevron-right {
  display: inline-block;
  height: 12px;
  position: relative;
  vertical-align: middle;
  width: 12px;
}

.fa-chevron-left::before,
.fa-chevron-right::before {
  border-color: currentColor;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: '';
  display: block;
  height: 10px;
  left: 1px;
  position: absolute;
  top: 1px;
  width: 10px;
}

.fa-chevron-left::before {
  transform: rotate(-135deg);
}

.fa-chevron-right::before {
  transform: rotate(45deg);
}

.fa-triangle {
  display: inline-block;
  height: 0;
  line-height: 0;
  width: 0;
}

.fa-triangle::before {
  border-bottom: 7px solid currentColor;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: '';
  display: block;
}

@media (max-width: 1199px) {
  .header-row {
    min-height: 92px;
  }

  .logo {
    flex-basis: 150px;
    max-width: 150px;
  }

  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-btn {
    padding: 13px 18px;
  }
}

@media (max-width: 991px) {
  .top-header {
    display: none;
  }

  .header-row {
    min-height: 78px;
  }

  .desktop-nav,
  .header-btn {
    display: none;
  }

  .mobile-toggle {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .header-row {
    min-height: 70px;
  }

  .logo {
    flex-basis: 130px;
    max-width: 130px;
  }

  .mobile-drawer .offcanvas-body {
    padding: 26px 20px;
  }
}
.format-hero .banner-first-p{
  color: #000;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.banner-p{
  text-align: center;
  font-size: 18px;
  width: 70% ;
  margin: 0 auto ;
}

.banner-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
}

.banner-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 54px;
  min-width: 160px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-2px);
}

.banner-btn-primary {
  background: linear-gradient(90deg, #06412f, #3c9672);
  color: #fff;
}

.banner-btn-primary:hover {
  background: linear-gradient(90deg, #3c9672, #06412f);
  color: #fff;
}

.banner-btn-secondary {
  background: transparent;
  border-color: #1D6746;
  color: #1D6746;
}

.banner-btn-secondary:hover {
  background: #1D6746;
  color: #fff;
}
.main-oper img {
  width: 100%;
  margin-top: 50px;
}
.mortgage-solutions-sec {
  padding: 90px 0;
  background: #fff;
}

.small-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.small-title span {
  width: 18px;
  height: 18px;
  background: #1d6746;
  color: #fff;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.mortgage-title {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #123524 0%, #1D6746 50%, #49A078 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.know-more {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.mortgage-img img {
  width: 100%;
  border-radius: 24px;
  height: 370px;
  object-fit: cover;
}

.mortgage-content {
  padding-left: 35px;
}

.mortgage-content > p {
  color: #222;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.solution-line {
  width: 100%;
  height: 1px;
  background: #a8c8b8;
  margin: 34px 0 28px;
}

.solution-card {
  margin-bottom: 42px;
}

.solution-icon {
  width: 75px;
  height: 76px;
  border: 1px solid #9cc5b2;
  border-radius: 50%;
  color: #1d6746;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  margin-bottom: 14px;
}

.solution-card h4 {
  color: #1d6746;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.solution-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.solution-card a {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.small-title img {
  width: 100%;
  height: auto;
}
.loan-types-sec{
  padding:100px 0;
}
.loan-marquee-sec {
    background: linear-gradient(90deg, #123524, #1D6746, #49A078);
    overflow: hidden;
    padding: 28px 0;
}

.loan-marquee {
    width: 100%;
    overflow: hidden;
}

.loan-marquee-track {
    display: flex;
    align-items: center;
    gap: 38px;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
}

.loan-marquee-track span,
.loan-marquee-track b {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.loan-marquee-track b {
    font-size: 26px;
}
.about-sec {
    padding: 110px 0;
    overflow: hidden;
    background: #fff;
}

.about-images-main {
    position: relative;
    min-height: 620px;
}

.about-img {
    overflow: hidden;
    border-radius: 24px;
    position: absolute;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-one {
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
}

.about-img-two {
    width: 420px;
    height: 370px;
    bottom: 0;
    right: 20px;
}

.about-content {
    padding-left: 40px;
}

.about-mini-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-mini-title span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #1D6746;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.about-title {
    font-size: clamp(36px, 4vw, 29px);
    line-height: 1.08;
    margin-bottom: 24px;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #123524 0%,
        #1D6746 50%,
        #49A078 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.about-counter-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 38px;
}

.about-counter-box h3 {
    font-size: 56px;
    font-weight: 700;
    color: #1D6746;
    margin-bottom: 8px;
}

.about-counter-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    gap: 16px;
}
.approach-sec {
    padding: 90px 0;
    background: linear-gradient(90deg, #123524 0%, #1D6746 55%, #49A078 100%);
    color: #fff;
    overflow: hidden;
}

.approach-content {
    padding-right: 45px;
}

.approach-mini-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
}

.approach-mini-title span {
    width: 21px;
    height: 21px;
    border-radius: 4px;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.approach-content h2 {
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 26px;
    color: #fff;
}

.approach-content p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255,255,255,0.9);
    margin-bottom: 22px;
}

.approach-btn {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.approach-btn:hover {
    color: #fff;
    gap: 18px;
}

.approach-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
}
.areas-sec {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
    border-bottom: 2px solid #1D6746;
}

.areas-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 42px;
}

.areas-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.areas-mini-title span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #1D6746;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.areas-head h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #123524 0%, #1D6746 50%, #49A078 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.areas-head > p:last-child {
    color: #444;
    font-size: 14px;
    line-height: 1.8;
}

.area-card {
    position: relative;
    height: 238px;
    border-radius: 16px;
    overflow: hidden;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.75));
}

.area-card h3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    text-align: center;
    color: #fff;
    z-index: 2;
    font-size: 22px;
    font-weight: 700;
}

.areas-slider .owl-nav {
    margin: 0;
}

.areas-slider .owl-nav.disabled {
    display: block !important;
}

.areas-slider .owl-nav button.owl-prev,
.areas-slider .owl-nav button.owl-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid #d8e5de !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    color: #1D6746 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0 !important;
    line-height: 1 !important;
    z-index: 5;
}

.areas-slider .owl-nav button.owl-prev {
    left: -30px;
}

.areas-slider .owl-nav button.owl-next {
    right: -30px;
}

.slider-chevron {
    display: block;
    height: 12px;
    position: relative;
    width: 12px;
}

.slider-chevron::before {
    border-color: currentColor;
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: "";
    display: block;
    height: 10px;
    left: 1px;
    position: absolute;
    top: 1px;
    width: 10px;
}

.slider-chevron-left::before {
    transform: rotate(-135deg);
}

.slider-chevron-right::before {
    transform: rotate(45deg);
}

.areas-slider .owl-dots {
    display: none;
}

.all-states-text {
    margin-top: 44px;
    text-align: center;
    color: #1D6746;
    font-size: 14px;
    font-weight: 700;
}
.how-works-sec {
    padding: 85px 0;
    background: linear-gradient(90deg, #123524 0%, #1D6746 55%, #49A078 100%);
    color: #fff;
    overflow: hidden;
}

.how-works-head {
    text-align: center;
    margin-bottom: 36px;
}

.how-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.how-mini-title span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.how-works-head h2 {
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.1;
}

.how-works-row {
    row-gap: 24px;
}

.how-card {
    height: 100%;
    min-height: 165px;
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
}

.how-card h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}

.how-card h3::after {
    content: "";
    width: 46px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    display: block;
    margin-top: 8px;
}

.how-card h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.how-card p {
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    line-height: 1.8;
}
.team-sec {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.team-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}

.team-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.team-mini-title span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #1D6746;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.team-head h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #123524 0%, #1D6746 50%, #49A078 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-head > p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.team-card {
    text-align: center;
    width: 100%;
    margin: 0;
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.team-slider .owl-item {
    padding-top: 36px;
}

.team-slider .owl-item:not(.center) .team-card {
    opacity: 0.82;
}

.team-slider .owl-item.center .team-card {
    opacity: 1;
    transform: translateY(-31px);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 20px;
}

.team-card-center img {
    height: 318px;
}

.team-card h5 {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-card h3 {
    color: #1D6746;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
}

.team-card p {
    color: #333;
    font-size: 13px;
    line-height: 1.8;
}

.team-quote {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #bdd6c9;
    font-size: 13px;
    color: #333;
    line-height: 1.7;
}

.team-slider .owl-stage {
    display: flex;
    align-items: center;
}

.team-slider .owl-stage-outer {
    position: relative;
    z-index: 1;
}

.team-slider {
    position: relative;
}

.team-slider .owl-nav {
    display: block !important;
    margin: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 10;
}

.team-slider .owl-nav.disabled {
    display: block !important;
}

.team-slider .owl-nav button.owl-prev,
.team-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #1D6746 !important;
    border: 2px solid #fff !important;
    outline: 1px solid #1D6746 !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    line-height: 1 !important;
    pointer-events: auto;
    z-index: 11;
}

.team-slider .owl-nav button.owl-prev::before,
.team-slider .owl-nav button.owl-next::before {
    border-color: currentColor;
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: "";
    display: block;
    height: 12px;
    width: 12px;
}

.team-slider .owl-nav button.owl-prev::before {
    transform: rotate(-135deg);
}

.team-slider .owl-nav button.owl-next::before {
    transform: rotate(45deg);
}

.team-slider .owl-nav button.owl-prev span,
.team-slider .owl-nav button.owl-next span {
    display: none;
}

.team-slider .owl-nav button.owl-prev {
    left: -90px;
}

.team-slider .owl-nav button.owl-next {
    right: -90px;
}

.team-slider .owl-dots {
    display: none;
}


.success-sec h2,
.success-card h3,
.success-card h5,
.success-card-bottom span {
    font-family: 'Gopher Display', Arial, sans-serif;
}

.success-sec p,
.success-mini-title,
.success-card p {
    font-family: 'Outfit', Arial, sans-serif;
}

.success-sec {
    padding: 90px 0;
    background: #f7fbf8;
    overflow: hidden;
}

.success-head {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.success-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: #1D6746;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.success-mini-title span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #1D6746;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    font-size: 8px;
}

.success-head h2 {
    margin: 0;
    color: #111;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
}

.success-row {
    row-gap: 24px;
}

.success-card {
    height: 100%;
    min-height: 270px;
    padding: 30px 26px;
    border: 1px solid #dbe8e1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfa 100%);
    box-shadow: 0 18px 42px rgba(15, 52, 36, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.success-card h3,
.success-card h5,
.success-card p,
.success-card-bottom {
    position: relative;
    z-index: 1;
}

.success-card h3 {
    margin: 0 0 10px;
    color: #1D6746;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    line-height: 1;
}

.success-card h5 {
    margin: 0 0 14px;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.success-card p {
    margin: 0 0 26px;
    color: #4b4b4b;
    font-size: 14px;
    line-height: 1.75;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(29, 103, 70, 0.28);
}

.success-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -45px;
    top: -45px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.success-card:hover::before {
    transform: scale(1.8);
}

.success-card-bottom {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #dbe8e1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.success-card-bottom span {
    color: #1D6746;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.success-card-bottom a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1D6746;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    transition: all 0.3s ease;
}

.success-card:hover .success-card-bottom a {
    transform: translateX(6px);
    background: #111;
}
.testimonial-sec {
    position: relative;
    padding-bottom: 70px;
    background: #fff;
    overflow: hidden;
}

.testimonial-bg {
    height: 430px;
    overflow: hidden;
}

.testimonial-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-slider {
    margin-top: -155px;
    position: relative;
    z-index: 2;
    perspective: 1100px;
}

.testimonial-card {
    max-width: 610px;
    min-height: 305px;
    margin: 0 auto;
    padding: 34px 48px 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #123524 0%, #1D6746 50%, #49A078 100%);
    color: #fff;
    text-align: center;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #fff;
    font-size: 13px;
    margin: 0 2px;
}

.testimonial-card h3 {
    font-family: 'Gopher Display', Arial, sans-serif;
    color: #fff;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 26px;
}

.testimonial-user img {
    width: 44px !important;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
}

.testimonial-user h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.testimonial-user p {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
}

.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #1D6746 !important;
    border: 2px solid #fff !important;
    outline: 1px solid #1D6746 !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    line-height: 1 !important;
}

.testimonial-slider .owl-nav {
    display: block !important;
}

.testimonial-slider .owl-nav.disabled {
    display: block !important;
}

.testimonial-slider .owl-nav button.owl-prev::before,
.testimonial-slider .owl-nav button.owl-next::before {
    border-color: currentColor;
    border-style: solid;
    border-width: 2px 2px 0 0;
    content: "";
    display: block;
    height: 12px;
    width: 12px;
}

.testimonial-slider .owl-nav button.owl-prev::before {
    transform: translateX(2px) rotate(-135deg);
}

.testimonial-slider .owl-nav button.owl-next::before {
    transform: translateX(-2px) rotate(45deg);
}

.testimonial-slider .owl-nav button.owl-prev i,
.testimonial-slider .owl-nav button.owl-next i {
    display: none;
}

.testimonial-slider .owl-nav button.owl-prev {
    left: 70px;
}

.testimonial-slider .owl-nav button.owl-next {
    right: 70px;
}

.testimonial-slider .owl-dots {
    display: none;
}
.contact-sec {
    padding: 95px 0;
    background: #fff;
    overflow: hidden;
}

.contact-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.contact-mini-title span {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #1D6746;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.contact-info h2 {
    font-family: 'Gopher Display', Arial, sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #123524, #1D6746, #49A078);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-text {
    font-family: 'Outfit', Arial, sans-serif;
    color: #222;
    font-size: 15px;
    line-height: 1.8;
    max-width: 430px;
    margin-bottom: 28px;
}

.contact-list {
    max-width: 430px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid #b8d2c5;
}

.contact-item i {
    width: 34px;
    height: 34px;
    background: #1D6746;
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    flex: 0 0 34px;
}

.contact-item i::before {
    color: currentColor;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
}

.contact-item .fa-building::before {
    content: "â–¦";
}

.contact-item .fa-phone::before {
    content: "â˜Ž";
}

.contact-item .fa-envelope::before {
    content: "âœ‰";
}

.contact-item .fa-clock::before {
    content: "â—·";
}

.contact-item .fa-globe::before {
    content: "â—Ž";
}

.contact-item i::before {
    font-size: 11px;
    font-weight: 800;
}

.contact-item .fa-building::before {
    content: "OF";
}

.contact-item .fa-phone::before {
    content: "PH";
}

.contact-item .fa-envelope::before {
    content: "EM";
}

.contact-item .fa-clock::before {
    content: "HR";
}

.contact-item .fa-globe::before {
    content: "GL";
}

.contact-item h5 {
    font-family: 'Gopher Display', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.contact-item p {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
}

.contact-form-wrap {
    padding: 38px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(18, 53, 36, 0.12);
    border: 1px solid rgba(29, 103, 70, 0.18);
}

.contact-form-wrap h3 {
    font-family: 'Gopher Display', Arial, sans-serif;
    color: #1D6746;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #b8d2c5;
    margin-bottom: 22px;
}

.contact-form label {
    font-family: 'Gopher Display', Arial, sans-serif;
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 9px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Outfit', Arial, sans-serif;
    width: 100%;
    border: 1px solid #a9a9a9;
    border-radius: 9px;
    height: 52px;
    padding: 0 18px;
    font-size: 13px;
    color: #111;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.contact-form textarea {
    height: 135px;
    padding-top: 15px;
    resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1D6746;
    box-shadow: 0 0 0 4px rgba(29, 103, 70, 0.12);
    outline: none;
}

.contact-form button {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(90deg, #123524, #1D6746, #49A078);
    color: #fff;
    font-family: 'Gopher Display', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(29, 103, 70, 0.28);
}
.loan-cta-sec {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.loan-cta-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 42px 38px;
    border-radius: 12px;
    background: linear-gradient(90deg, #123524 0%, #1D6746 50%, #49A078 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.loan-cta-content h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 18px;
}

.loan-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
}

.loan-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.loan-cta-btn {
    min-width: 145px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.loan-cta-btn:hover {
    background: #fff;
    color: #1D6746;
    transform: translateY(-3px);
}
.site-footer {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-top: 45px;
}

.footer-main-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.9fr 0.85fr 1fr 0.9fr 0.9fr 1.35fr;
    gap: 28px;
    padding-bottom: 24px;
}

.footer-about,
.footer-col {
    border-right: 1px solid #b8c8c0;
    padding-right: 24px;
}

.footer-contact {
    border-right: 0;
}

.footer-logo img {
    max-width: 210px;
    margin-bottom: 24px;
}

.footer-about p,
.footer-col li,
.footer-col a {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #1c1c1c;
}

.footer-col h4 {
    font-family: 'Gopher Display', Arial, sans-serif;
    color: #1D6746;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 7px;
}

.footer-col a {
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #1D6746;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #1D6746;
    margin-top: 4px;
}

.footer-bg-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 1;
    font-family: 'Gopher Display', Arial, sans-serif;
    font-size: clamp(80px, 13vw, 210px);
    font-weight: 800;
    line-height: 0.7;
    color: rgba(29, 103, 70, 0.12);
    pointer-events: none;
    white-space: nowrap;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid #d7e2dc;
    padding: 15px 0;
    background: #fff;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-row p {
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 13px;
    color: #333;
}

.footer-bottom-row a {
    color: #1D6746;
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social a {
    color: #1D6746;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
}

@media (max-width: 1199px) {
    .footer-main-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about,
    .footer-col {
        border-right: 0;
    }
}

@media (max-width: 767px) {
    .footer-main-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-bg-text {
        display: none;
    }
}

@media (max-width: 991px) {
    .loan-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .loan-cta-box {
        padding: 32px 22px;
    }

    .loan-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .loan-cta-btn {
        width: 100%;
    }
}
@media (max-width: 991px) {
    .contact-sec {
        padding: 65px 0;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .contact-form-wrap {
        padding: 28px 22px;
    }
}

@media (max-width: 991px) {
    .testimonial-bg {
        height: 360px;
    }

    .testimonial-slider .owl-nav button.owl-prev {
        left: 0;
    }

    .testimonial-slider .owl-nav button.owl-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial-slider .owl-nav {
        display: block !important;
    }
}
@media (max-width: 1199px) {
    .team-slider .owl-nav button.owl-prev {
        left: 0;
    }

    .team-slider .owl-nav button.owl-next {
        right: 0;
    }
}

@media (max-width: 991px) {
    .team-sec {
        padding: 65px 0;
    }

    .success-sec {
        padding: 65px 0;
    }

    .success-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .team-card-center img,
    .team-card img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .team-head h2 br {
        display: none;
    }

    .team-card img {
        height: 340px;
    }

    .team-slider .owl-nav button.owl-prev,
    .team-slider .owl-nav button.owl-next {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 991px) {
    .how-works-sec {
        padding: 65px 0;
    }
}

@media (max-width: 1199px) {
    .areas-slider .owl-nav button.owl-prev {
        left: 10px;
    }

    .areas-slider .owl-nav button.owl-next {
        right: 10px;
    }
}

@media (max-width: 991px) {
    .areas-sec {
        padding: 65px 0;
    }
}

@media (max-width: 575px) {
    .area-card {
        height: 260px;
    }

    .areas-head h2 br {
        display: none;
    }
}
@media (max-width: 991px) {
    .approach-sec {
        padding: 65px 0;
    }

    .approach-content {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .approach-img img {
        height: auto;
    }
}

@media (max-width: 991px) {

    .about-sec {
        padding: 70px 0;
    }

    .about-images-main {
        min-height: 500px;
        margin-bottom: 50px;
    }

    .about-content {
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .about-images-main {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-img {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .about-counter-wrap {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about-counter-box {
        width: calc(50% - 12px);
    }

    .about-counter-box h3 {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .loan-marquee-sec {
        padding: 20px 0;
    }

    .loan-marquee-track {
        gap: 24px;
    }

    .loan-marquee-track span {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
  .mortgage-solutions-sec {
    padding: 60px 0;
  }

  .mortgage-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .mortgage-img img {
    height: auto;
  }
}

@media (max-width: 575px) {
  .mortgage-title br {
    display: none;
  }

  .solution-card {
    margin-bottom: 32px;
  }
}

.inner-hero {
  padding: 165px 0 90px;
  background: linear-gradient(135deg, #f5faf7 0%, #ffffff 48%, #e8f5ee 100%);
  overflow: hidden;
}

.inner-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.inner-kicker {
  align-items: center;
  color: #1D6746;
  display: inline-flex;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  margin-bottom: 16px;
}

.inner-kicker img {
  height: 22px;
  width: 22px;
}

.inner-hero h1 {
  color: #111;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 22px;
}

.inner-hero p {
  color: #333;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  max-width: 650px;
}

.inner-hero-img {
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(18, 53, 36, 0.14);
  height: 430px;
  object-fit: cover;
  width: 100%;
}

.inner-section {
  padding: 90px 0;
  overflow: hidden;
}

.inner-section.soft {
  background: #f7fbf8;
}

.inner-head {
  margin: 0 auto 40px;
  max-width: 780px;
  text-align: center;
}

.inner-head h2 {
  color: #111;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
}

.inner-head p,
.inner-card p,
.inner-list li,
.policy-content p {
  color: #333;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.inner-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inner-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inner-card {
  background: #fff;
  border: 1px solid rgba(29, 103, 70, 0.16);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(18, 53, 36, 0.08);
  height: 100%;
  padding: 28px;
}

.inner-card img {
  border-radius: 12px;
  height: 210px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
}

.inner-card h3 {
  color: #1D6746;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.inner-card h4 {
  color: #111;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.inner-list {
  display: grid;
  gap: 14px;
}

.inner-list li {
  background: #fff;
  border-left: 4px solid #1D6746;
  box-shadow: 0 14px 34px rgba(18, 53, 36, 0.07);
  padding: 18px 20px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(29, 103, 70, 0.16);
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 24px;
}

.faq-item h3 {
  color: #111;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.policy-content {
  background: #fff;
  border: 1px solid rgba(29, 103, 70, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(18, 53, 36, 0.08);
  padding: 34px;
}

.policy-content h2 {
  color: #1D6746;
  font-family: 'Gopher Display', Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 28px 0 10px;
}

@media (max-width: 991px) {
  .inner-hero {
    padding: 135px 0 65px;
  }

  .inner-hero-grid,
  .inner-card-grid,
  .inner-card-grid.two {
    grid-template-columns: 1fr;
  }

  .inner-hero-img {
    height: 340px;
  }

  .inner-section {
    padding: 65px 0;
  }
}
