
:root {
  --bs-blue: #0d6efd;
  --bs-primary: #00204a;
  --bs-secondary: #005555;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-white: #fff;
  --bs-gray-900: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Work Sans", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) { :root { scroll-behavior: smooth; } }

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
}

hr { margin: 1rem 0; color: inherit; background-color: currentColor; border: 0; opacity: 0.25; height: 1px; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h1, .h1 { font-size: calc(1.375rem + 1.5vw); }
@media (min-width: 1200px) { h1, .h1 { font-size: 2.5rem; } }
h2, .h2 { font-size: calc(1.325rem + 0.9vw); }
@media (min-width: 1200px) { h2, .h2 { font-size: 2rem; } }
h3, .h3 { font-size: calc(1.3rem + 0.6vw); }
@media (min-width: 1200px) { h3, .h3 { font-size: 1.75rem; } }
h4, .h4 { font-size: calc(1.275rem + 0.3vw); }
@media (min-width: 1200px) { h4, .h4 { font-size: 1.5rem; } }
h5, .h5 { font-size: 1.25rem; }

p { margin-top: 0; margin-bottom: 1rem; }
blockquote { margin: 0 0 1rem; }
b, strong { font-weight: bolder; }
small, .small { font-size: 0.875em; }

a { color: #00204a; text-decoration: underline; }
a:hover { color: #001a3b; }
a:not([href]):not([class]), a:not([href]):not([class]):hover { color: inherit; text-decoration: none; }

img, svg { vertical-align: middle; }

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before { content: "\2014\00A0"; }

.img-fluid { max-width: 100%; height: auto; }
.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) { .container, .container-sm { max-width: 540px; } }
@media (min-width: 768px) { .container, .container-sm, .container-md { max-width: 720px; } }
@media (min-width: 992px) { .container, .container-sm, .container-md, .container-lg { max-width: 960px; } }
@media (min-width: 1200px) { .container, .container-sm, .container-md, .container-lg, .container-xl { max-width: 1140px; } }
@media (min-width: 1400px) { .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { max-width: 1320px; } }

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.col-12 { flex: 0 0 auto; width: 100%; }
@media (min-width: 768px) {
  .col-md-5 { flex: 0 0 auto; width: 41.66667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.33333%; }
}
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

.form-label { margin-bottom: 0.5rem; }
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #8090a5;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 32, 74, 0.25);
}
.form-control::-webkit-input-placeholder { color: #6c757d; opacity: 1; }
.form-control::placeholder { color: #6c757d; opacity: 1; }

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:hover { color: #212529; }
.btn:focus { outline: 0; box-shadow: 0 0 0 0.25rem rgba(0, 32, 74, 0.25); }
.btn:disabled, .btn.disabled { pointer-events: none; opacity: 0.65; }

.btn-primary { color: #fff; background-color: #00204a; border-color: #00204a; }
.btn-primary:hover { color: #fff; background-color: #001b3f; border-color: #001a3b; }

.btn-success { color: #fff; background-color: #198754; border-color: #198754; }
.btn-success:hover { color: #fff; background-color: #157347; border-color: #146c43; }

.btn-light { color: #000; background-color: #f8f9fa; border-color: #f8f9fa; }
.btn-light:hover { color: #000; background-color: #f9fafb; border-color: #f9fafb; }

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover { color: #000; text-decoration: none; opacity: 0.75; }
.btn-close:focus { outline: 0; box-shadow: 0 0 0 0.25rem rgba(0, 32, 74, 0.25); opacity: 1; }
.btn-close-white { filter: invert(1) grayscale(100%) brightness(200%); }

.fade { transition: opacity 0.15s linear; }
.fade:not(.show) { opacity: 0; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog { position: relative; width: auto; margin: 0.5rem; pointer-events: none; }
.modal.fade .modal-dialog { transition: transform 0.3s ease-out; transform: translate(0, -50px); }
.modal.show .modal-dialog { transform: none; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade { opacity: 0; }
.modal-backdrop.show { opacity: 0.5; }
.modal-body { position: relative; flex: 1 1 auto; padding: 1rem; }

@media (min-width: 576px) {
  .modal-dialog { max-width: 500px; margin: 1.75rem auto; }
}
@media (min-width: 768px) {
  .modal-md { max-width: 500px; }
}

/* --- Bootstrap Utilities (Used Classes Only) --- */
.z-2 { z-index: 22; }
.align-middle { vertical-align: middle !important; }
.float-start { float: left !important; }
.float-end { float: right !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-none { display: none !important; }
@media (min-width: 768px) {
  .d-md-block { display: block !important; }
  .d-md-none { display: none !important; }
}
@media (min-width: 992px) {
  .d-lg-inline-block { display: inline-block !important; }
  .d-lg-none { display: none !important; }
}
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgb(116 35 66 / 25%) !important; }
.shadow-none { box-shadow: none !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.bottom-0 { bottom: 0 !important; }
.start-50 { left: 50% !important; }
.translate-middle { transform: translate(-50%, -50%) !important; }
.border { border: 1px solid #61042952 !important; }
.border-0 { border: 0 !important; }
.border-1 { border-width: 1px !important; }
.border-5 { border-width: 5px !important; }
.border-top { border-top: 1px solid #dee2e6 !important; }
.border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.border-start { border-left: 4px solid #dee2e6 !important; }
.border-primary { border-color: #00204a !important; }
.border-secondary { border-color: #005555 !important; }
.border-black { border-color: #212529 !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.flex-fill { flex: 1 1 auto !important; }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
@media (min-width: 992px) {
  .order-lg-2 { order: 2 !important; }
}
.m-0 { margin: 0 !important; }
.m-auto { margin: auto !important; }
.mx-2 { margin-right: 0.5rem !important; margin-left: 0.5rem !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-auto { margin-right: auto !important; }
@media (min-width: 992px) {
  .mb-lg-0 { margin-bottom: 0 !important; }
}
.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.px-2 { padding-right: 0.5rem !important; padding-left: 0.5rem !important; }
.px-3 { padding-right: 1rem !important; padding-left: 1rem !important; }
.px-4 { padding-right: 1.5rem !important; padding-left: 1.5rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.fs-2 { font-size: calc(1.325rem + 0.9vw) !important; }
.fs-5 { font-size: 1.25rem !important; }
@media (min-width: 1200px) {
  .fs-2 { font-size: 2rem !important; }
  .fs-5 { font-size: 1.25rem !important; }
}
.fst-normal { font-style: normal !important; }
.fw-normal { font-weight: 400 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-bolder { font-weight: bolder !important; }
.lh-sm { line-height: 1.25 !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-center { text-align: center !important; }
.text-primary { color: #610429 !important; }
.text-secondary { color: #005555 !important; }
.text-success { color: #198754 !important; }
.text-dark { color: #212529 !important; }
.text-white { color: #fff !important; }
.text-muted { color: #6c757d !important; }
.text-black-50 { color: rgba(0, 0, 0, 0.8) !important; }
.text-reset { color: inherit !important; }
.bg-primary { background-color: #610429 !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-white { background-color: #fff !important; }
.bg-gradient { background-image: var(--bs-gradient) !important; }
.rounded { border-radius: 0.25rem !important; }
.rounded-3 { border-radius: 1rem !important; }
.rounded-pill { border-radius: 50rem !important; border: 1px solid #000; }
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* --- Custom Project Styles --- */
.logo { font-size: 24px; color: rgba(255, 255, 255, 0.8) !important; font-weight: 500; }
.logo:hover { color: #fff !important; }

.site-nav { padding-top: 20px; padding-bottom: 20px; position: fixed; top: 0; z-index: 99; width: 100%; }
.site-nav h1, .site-nav .h1 { margin: 0; padding: 0; font-size: 24px; }
.site-nav .site-navigation .site-menu { margin-bottom: 0; }
.site-nav .site-navigation .site-menu > li { display: inline-block; }
.site-nav .site-navigation .site-menu > li > a { font-size: 14px; padding: 10px 15px; display: inline-block; text-decoration: none !important; color: #000}
.site-nav .site-navigation .site-menu > li > a:hover { color: #610429; }
.site-nav .site-navigation .site-menu > li.active > a { color: #610429; font-weight: 600; }

.site-mobile-menu-close {
  display: block;
  position: relative;
  height: 30px;
  width: 30px;
  z-index: 99;
  cursor: pointer;
  top: -18px;    right: -18px;
}
.site-mobile-menu-close > span { cursor: pointer; display: block; position: absolute; height: 30px; width: 30px; }
.site-mobile-menu-close > span:before, .site-mobile-menu-close > span:after { position: absolute; content: ""; width: 2px; height: 30px; background: #000; }
.site-mobile-menu-close > span:before { transform: rotate(45deg); }
.site-mobile-menu-close > span:after { transform: rotate(-45deg); }

.site-mobile-menu {
  width: 220px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  transform: translateX(100%);
  transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
}
.offcanvas-menu .site-mobile-menu {
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header { width: 100%; float: left; padding-left: 20px; padding-right: 20px; }
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close { float: right; margin-top: 8px; }
.sticky-wrapper { position: absolute; z-index: 100; width: 100%; }
.sticky-wrapper .site-navbar { transition: .3s all ease; }
.sticky-wrapper .site-navbar .site-menu-toggle { color: #000; }

/* Burger */
.burger { width: 28px; height: 32px; cursor: pointer; position: relative; }
.burger.light:before, .burger.light span, .burger.light:after { background: #610429; }
.burger:before, .burger span, .burger:after {
  width: 100%;
  height: 2px;
  display: block;
  background: #610429;
  border-radius: 2px;
  position: absolute;
  opacity: 1;
}
.burger:before, .burger:after {
  transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
  content: "";
}
.burger:before { top: 4px; }
.burger span { top: 15px; }
.burger:after { top: 26px; }

/* Hover */
.burger:hover:before { top: 7px; }
.burger:hover:after { top: 23px; }

/* Click */
.burger.active span { opacity: 0; }
.burger.active:before, .burger.active:after { top: 40%; }
.burger.active:before { transform: rotate(45deg); }
.burger.active:after { transform: rotate(-45deg); }
.burger:focus { outline: none; }

html { overflow-x: hidden; }
body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  overflow-x: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, .logo { font-family: "Work Sans", sans-serif; color: #00204a; }
a { transition: .3s all ease; text-decoration: none; }

.menu-bg-wrap {
  background-color: #fff;
  padding: 20px 30px;
  position: relative;
  float: left;
  width: 100%;
  border-radius: 7px;
  box-shadow: 0 15px 30px -15px rgb(97 4 41);
}

.hero { position: relative; background-size: cover; background-position: cnter center; background-repeat: no-repeat; background-color: #00204a; }
.hero > .container { position: relative; z-index: 2; }
.hero .heading { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2.5rem); margin-bottom: 30px; font-weight: 600; }

.section { padding-top: 2rem; padding-bottom: 2rem; }
.section .heading { font-weight: 500; }
@media (max-width: 767.98px) { .section .heading { font-size: 36px; }.menu-bg-wrap{padding: 16px 30px;} }

.btn { text-decoration: none !important; border-radius: 30px; padding-top: 15px; padding-bottom: 15px; padding-left: 30px; padding-right: 30px; border-color: transparent; border: none !important; top: 0; position: relative; transition: .3s all ease; }
.btn.btn-primary { background: #610429; color: #fff; }
.btn:hover { top: -2px; box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1); }

.property-slider-wrap { position: relative; }
.property-slider-wrap .tns-outer .tns-inner { padding-bottom: 100px !important; }
.property-slider-wrap .tns-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  z-index: 2;
}
.property-slider-wrap .tns-nav button { background: none; border: none; display: inline-block; margin: 2px; position: relative; }
.property-slider-wrap .tns-nav button.tns-nav-active:before { background-color: #00204a; }

.section-4 { background-color: #fff; }
.section-4 .img-about img { object-fit: cover; }

.feature-h { margin-bottom: 30px; }
.feature-h .wrap-icon {
  flex: 0 0 80px;
  height: 80px;
  background: #efefef;
  color: #000;
  position: relative;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: .3s all ease;
  transform: scale(1);
}
.feature-h .wrap-icon [class^="icon-"] {
  position: absolute;
  left: 50%;
  font-size: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.feature-h .feature-text { margin-top: 15px; }
.feature-h .feature-text .heading { font-size: 18px; }
.feature-h:hover .wrap-icon, .feature-h:focus .wrap-icon {
  border: 2px solid #00204a;
  background-color: transparent;
  transform: scale(1.07);
}
.feature-h:hover [class^="icon-"], .feature-h:focus [class^="icon-"] { color: #00204a; }

.img-about.dots { position: relative; }

#property-nav { position: absolute; width: 100%; bottom: 46px; }
.site-nav-wrap{list-style: none;padding: 0;}
.site-nav-wrap li{margin: 6px; border-bottom: 1px solid #0000001a; padding-left: 7px;}
#property-nav span {
  display: inline-block;
  cursor: pointer;
  padding: 7px 20px;
  border-radius: 30px;
  background: rgba(0, 32, 74, 0.1);
  color: #00204a;
  text-align: center;
  transition: .3s all ease;
}
#property-nav span:hover, #property-nav span.active { background: #00204a; color: #fff !important; }

.box-feature { background: #fff; border-radius: 4px; padding: 30px; margin-bottom: 30px; }
.box-feature h3, .box-feature .h3 { font-size: 16px; margin: 0; padding: 0; }
.box-feature [class^="flaticon-"], .box-feature [class^="icon-"] {
  color: #610429;
  font-size: 60px;
  margin: 0 0 10px 0;
  display: block;
  padding: 0;
  line-height: 0;
}

.site-footer { background: #efefef; font-size: 14px; color: #888; padding: 70px 0; }
.site-footer a { color: #777; position: relative; display: inline-block; text-decoration: underline; }
.site-footer a:hover { color: #000; text-decoration: none; }

/* Custom Hover Effects (Kept) */
.position-relative { position: relative; overflow: hidden; }
.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
}
.position-relative:hover .overlay-content { opacity: 1; visibility: visible; }
.object-fit-cover { object-fit: cover; }
.position-relative img { transition: transform 0.3s ease; }
.position-relative:hover img { transform: scale(1.05); }
.blur { filter: blur(2px); } 
.box-feature span{margin: 30px 0 !important;}
.box-feature p{margin:  0 !important;}
.btn-group{position: fixed;z-index: 99;width: 100%;text-align: center;background: #610429;}
.btn-group .btn{border-radius: 0;padding: 8px;}
.btn-group .btn:nth-child(2){border-left:1px solid #fff !important;border-right:1px solid #fff !important}