@import url("../vendor/bootstrap.min.css");

:root {
  --navy: #0b1f3a;
  --navy-2: #102b4f;
  --blue: #1f5eff;
  --gold: #d8aa52;
  --cream: #f6f2e9;
  --ink: #17243a;
  --muted: #657187;
  --line: #dde3ec;
  --white: #fff;
  --shadow: 0 18px 48px rgba(11, 31, 58, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.12;
}
a {
  text-decoration: none;
}
.text-muted {
  color: var(--muted) !important;
}
.section-pad {
  padding: 96px 0;
}
.section-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #9b6e1c;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
}
.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 670px;
}
.topbar {
  background: var(--navy);
  color: #d9e3f0;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar a {
  color: #fff;
}
.site-nav {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
  padding: 14px 0;
}
.navbar-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  position: relative;
  display: inline-block;
}
.brand-mark:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  height: 13px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: skewY(-35deg);
}
.brand-name {
  font-size: 1.02rem;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.54rem;
  color: #8b6b2d;
  margin-top: 4px;
}
.nav-link {
  font-size: 0.91rem;
  font-weight: 650;
  color: #334158 !important;
  padding: 0.55rem 0.78rem !important;
}
.nav-link.active,
.nav-link:hover {
  color: var(--blue) !important;
}
.btn {
  border-radius: 3px;
  font-weight: 750;
  font-size: 0.9rem;
  padding: 0.78rem 1.2rem;
}
.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #1449cc;
  border-color: #1449cc;
}
.btn-outline-light:hover {
  color: var(--navy);
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #e7bb67;
  border-color: #e7bb67;
}
.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(6, 22, 44, 0.97) 0%,
      rgba(7, 29, 54, 0.91) 44%,
      rgba(7, 28, 52, 0.3) 72%,
      rgba(7, 28, 52, 0.2)
    ),
    url("../images/banner.jpg") center/cover
      no-repeat;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.12));
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.73rem;
  font-weight: 800;
  color: #efd28f;
  margin-bottom: 22px;
}
.hero-eyebrow:before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.45rem);
  max-width: 820px;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.hero p {
  font-size: 1.14rem;
  max-width: 620px;
  color: #dce7f3;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -58px;
}
.trust-panel {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow);
  padding: 26px 30px;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3ff;
  color: var(--blue);
  font-weight: 900;
}
.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.91rem;
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--muted);
}
.service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}
.service-card-body {
  padding: 27px;
}
.service-number {
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  color: #9b6e1c;
  font-weight: 800;
}
.service-card h3 {
  font-size: 1.45rem;
  margin: 10px 0 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  min-height: 75px;
}
.text-link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 850;
  color: var(--blue);
}
.text-link:after {
  content: "  →";
}
.bg-soft {
  background: #f5f7fb;
}
.bg-cream {
  background: var(--cream);
}
.feature-image {
  height: 540px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.experience-badge {
  position: absolute;
  right: -22px;
  bottom: 36px;
  width: 160px;
  background: var(--gold);
  padding: 24px;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.experience-badge strong {
  font-family: Georgia, serif;
  font-size: 2.25rem;
  display: block;
}
.check-list {
  padding: 0;
  list-style: none;
  margin: 26px 0;
}
.check-list li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.stat-band {
  background: var(--navy);
  color: #fff;
  padding: 44px 0;
}
.stat strong {
  font-family: Georgia, serif;
  font-size: 2.6rem;
  color: #fff;
  display: block;
}
.stat span {
  font-size: 0.78rem;
  color: #aebdd0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.process-card {
  position: relative;
  padding: 30px;
  border-left: 1px solid var(--line);
}
.process-step {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: #e1e7f0;
  line-height: 1;
}
.process-card h3 {
  font-size: 1.25rem;
  margin: 12px 0;
}
.process-card p {
  font-size: 0.9rem;
  color: var(--muted);
}
.quote-section {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.96), rgba(11, 31, 58, 0.78)),
    url("../images/financial-advisor-couple-meeting-modern--2.jpg") center/cover;
  color: #fff;
}
.quote-section h2 {
  color: #fff;
}
.testimonial {
  background: #fff;
  color: var(--ink);
  padding: 34px;
  border-radius: 4px;
}
.testimonial p {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
}
.stars {
  letter-spacing: 0.18em;
  color: var(--gold);
}
.blog-card {
  height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-body {
  padding: 25px;
}
.blog-card h3 {
  font-size: 1.35rem;
}
.blog-meta {
  font-size: 0.74rem;
  color: #8b6b2d;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 750;
}
.cta {
  background: var(--blue);
  padding: 52px 0;
  color: #fff;
}
.cta h2 {
  color: #fff;
  margin: 0;
}
.page-hero {
  padding: 102px 0 82px;
  background: linear-gradient(110deg, #081c36, #16375f);
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  color: #fff;
  margin-bottom: 18px;
}
.page-hero p {
  color: #c9d6e6;
  max-width: 650px;
  font-size: 1.05rem;
}
.breadcrumb {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumb a {
  color: #efd28f;
}
.breadcrumb-item.active {
  color: #c9d6e6;
}
.breadcrumb-item + .breadcrumb-item:before {
  color: #8fa0b6;
}
.content-card {
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 5px;
  background: #fff;
}
.form-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #4b5870;
}
.form-control,
.form-select {
  border-radius: 3px;
  border: 1px solid #ccd5e1;
  padding: 0.8rem 0.9rem;
  background: #fff;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.2rem rgba(31, 94, 255, 0.1);
}
textarea.form-control {
  min-height: 120px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}
.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail small {
  display: block;
  color: #9b6e1c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.contact-detail a,
.contact-detail span {
  color: var(--navy);
  font-weight: 650;
}
.policy h2 {
  margin-top: 38px;
  font-size: 1.6rem;
}
.policy h3 {
  margin-top: 26px;
  font-size: 1.2rem;
}
.policy p,
.policy li {
  color: #536078;
}
.post-section {
  scroll-margin-top: 120px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.post-section h2 {
  font-size: 2rem;
}
.subscribe-box {
  max-width: 620px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 48px;
  box-shadow: var(--shadow);
  border-radius: 5px;
}
.site-footer {
  background: #07172c;
  color: #a9b7c8;
  padding-top: 74px;
}
.site-footer h5 {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.footer-brand .brand-mark {
  background: #fff;
}
.footer-brand .brand-name {
  color: #fff;
}
.site-footer p,
.site-footer a {
  font-size: 0.86rem;
  color: #9fadc0;
}
.site-footer a:hover {
  color: #fff;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  margin-top: 52px;
  font-size: 0.77rem;
}
.alert-success {
  display: none;
  border-radius: 3px;
}
.alert-success.show {
  display: block;
}
.navbar-toggler {
  border: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.custom-toggler {
  width: 24px;
  height: 16px;
  display: block;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  position: relative;
}
.custom-toggler:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-top: 2px solid var(--navy);
}
@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }
  .site-nav {
    padding: 10px 0;
  }
  .navbar-collapse {
    padding: 16px 0;
  }
  .hero {
    min-height: 610px;
    background-position: 62% center;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .trust-strip {
    margin-top: 0;
  }
  .trust-panel {
    border-radius: 0;
  }
  .section-pad {
    padding: 72px 0;
  }
  .experience-badge {
    right: 10px;
  }
  .feature-image {
    height: 440px;
  }
  .page-hero {
    padding: 75px 0 60px;
  }
}
@media (max-width: 575.98px) {
  .hero {
    min-height: 590px;
    background-position: 68% center;
  }
  .hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 19, 38, 0.26);
  }
  .hero h1 {
    font-size: 2.85rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section-pad {
    padding: 58px 0;
  }
  .trust-item {
    margin: 12px 0;
  }
  .trust-panel {
    padding: 18px 22px;
  }
  .feature-image {
    height: 360px;
  }
  .experience-badge {
    width: 135px;
    padding: 16px;
  }
  .content-card,
  .subscribe-box {
    padding: 27px;
  }
  .stat {
    margin: 14px 0;
  }
  .cta {
    text-align: center;
  }
  .cta .text-end {
    text-align: center !important;
    margin-top: 20px;
  }
  .footer-bottom {
    text-align: center;
  }
}

.blog-content img{
  width: 100%;
}

.blog-content{
  box-shadow: 2px 5px 10px 3px #07172c;
  padding: 10px;
}