.elementor-189 .elementor-element.elementor-element-cf8f276{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-189 .elementor-element.elementor-element-18ebd95{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-c4acfda *//* ============================= */
/* GLOBAL QUOTE MODAL / PANEL */
/* ============================= */

.sf-global-quote-overlay,
.sf-global-quote-panel,
.sf-global-quote-panel * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.sf-global-quote-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 58, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99998;
}

.sf-global-quote-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(540px, 100%);
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: -20px 0 50px rgba(11, 47, 115, 0.18);
  transform: translateX(110%);
  transition: transform 0.38s ease, opacity 0.3s ease;
  z-index: 99999;
  overflow-y: auto;
}

.sf-global-quote-inner {
  min-height: 100%;
  padding: 28px 24px 32px;
}

.sf-global-quote-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.sf-global-quote-heading {
  max-width: 370px;
}

.sf-global-quote-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(248, 155, 19, 0.12);
  color: #f89b13;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.sf-global-quote-heading h3 {
  font-size: 34px;
  line-height: 1.15;
  color: #0b2f73;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.8px;
}

.sf-global-quote-heading p {
  font-size: 15px;
  line-height: 1.75;
  color: #617593;
  margin: 0;
}

.sf-global-quote-close {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: none;
  border-radius: 16px;
  background: rgba(11, 47, 115, 0.08);
  color: #0b2f73;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sf-global-quote-close:hover {
  background: #f89b13;
  color: #ffffff;
}

.sf-global-quote-form-wrap {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(11, 47, 115, 0.08);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(11, 47, 115, 0.08);
}

/* Open state */
body.sf-global-quote-open {
  overflow: hidden;
}

body.sf-global-quote-open .sf-global-quote-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.sf-global-quote-open .sf-global-quote-panel {
  transform: translateX(0);
}

/* Forminator styling */
.sf-global-quote-form-wrap .forminator-ui {
  margin: 0 !important;
}

.sf-global-quote-form-wrap .forminator-label {
  font-weight: 600 !important;
  color: #0b2f73 !important;
}

.sf-global-quote-form-wrap .forminator-input,
.sf-global-quote-form-wrap .forminator-textarea,
.sf-global-quote-form-wrap .forminator-select select {
  border-radius: 14px !important;
  border: 1px solid rgba(11, 47, 115, 0.14) !important;
  min-height: 52px !important;
}

.sf-global-quote-form-wrap .forminator-textarea {
  min-height: 140px !important;
}

.sf-global-quote-form-wrap .forminator-button-submit {
  background: linear-gradient(135deg, #ff9800, #ff8a00) !important;
  border: none !important;
  border-radius: 16px !important;
  padding: 14px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 25px rgba(248, 155, 19, 0.24) !important;
}

.sf-global-quote-form-wrap .forminator-button-submit:hover {
  background: linear-gradient(135deg, #f18c00, #e88200) !important;
}

/* Tablet */
@media (max-width: 991px) {
  .sf-global-quote-panel {
    width: min(460px, 100%);
  }

  .sf-global-quote-heading h3 {
    font-size: 28px;
  }
}

/* Mobile: popup modal instead of slide panel */
@media (max-width: 767px) {
  .sf-global-quote-panel {
    top: 50%;
    left: 50%;
    right: auto;
    width: min(92vw, 420px);
    height: auto;
    max-height: 88vh;
    border-radius: 24px;
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    box-shadow: 0 24px 60px rgba(11, 47, 115, 0.22);
  }

  body.sf-global-quote-open .sf-global-quote-panel {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  .sf-global-quote-inner {
    min-height: auto;
    padding: 22px 16px 22px;
  }

  .sf-global-quote-top {
    margin-bottom: 18px;
    align-items: center;
  }

  .sf-global-quote-heading {
    max-width: 100%;
  }

  .sf-global-quote-heading h3 {
    font-size: 24px;
  }

  .sf-global-quote-heading p {
    font-size: 14px;
  }

  .sf-global-quote-close {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    font-size: 26px;
  }

  .sf-global-quote-form-wrap {
    padding: 14px;
    border-radius: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2fe8de8 */.sf-footer,
.sf-footer * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.sf-footer a {
  text-decoration: none;
}

.sf-footer {
  position: relative;
  background: linear-gradient(180deg, #08235a 0%, #0b2f73 55%, #0e367f 100%);
  color: #ffffff;
  overflow: hidden;
}

.sf-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -180px;
  right: -120px;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.sf-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -120px;
  left: -80px;
  background: rgba(248, 155, 19, 0.10);
  pointer-events: none;
}

.sf-footer-top {
  position: relative;
  z-index: 2;
  padding: 90px 0 50px;
}

.sf-footer-container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.sf-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 34px;
}

.sf-footer-brand p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  margin: 18px 0 24px;
}

.sf-footer-logo img {
  max-height: 100px;
  width: auto;
  display: block;
}

.sf-footer-logo img {
  filter: brightness(0) invert(1);
}
.sf-footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sf-footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.sf-footer-socials a:hover {
  background: #f89b13;
  color: #ffffff;
  transform: translateY(-2px);
}

.sf-footer-socials svg {
  width: 20px;
  height: 20px;
  display: block;
}

.sf-footer-col h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
}

.sf-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-footer-col ul li {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.sf-footer-col ul li a {
  color: rgba(255, 255, 255, 0.82);
  transition: all 0.25s ease;
}

.sf-footer-col ul li a:hover {
  color: #f89b13;
}

.sf-footer-contact strong {
  color: #ffffff;
  font-weight: 600;
}

.sf-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}

.sf-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sf-footer-bottom p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.sf-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.sf-footer-bottom-links a {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}

.sf-footer-bottom-links a:hover {
  color: #f89b13;
}

/* Tablet */
@media (max-width: 1100px) {
  .sf-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .sf-footer-top {
    padding: 70px 0 40px;
  }

  .sf-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sf-footer-logo img {
    max-height: 72px;
  }

  .sf-footer-col h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .sf-footer-brand p,
  .sf-footer-col ul li {
    font-size: 14px;
  }

  .sf-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sf-footer-bottom-links {
    gap: 16px;
  }
}/* End custom CSS */