.elementor-635 .elementor-element.elementor-element-bfbfdbe{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* ===== FCIP Hero Cover ===== */
.fcip-hero-cover {
  position: relative;
  overflow: hidden;
}

.fcip-hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 42, 67, 0.18) 0%,
    rgba(16, 42, 67, 0.24) 50%,
    rgba(16, 42, 67, 0.28) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Title box */
.fcip-hero-titlebox {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 34px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.08) 100%
  );
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 18px 36px rgba(16, 42, 67, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

/* Optional subtle outline glow */
.fcip-hero-titlebox::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.42) 0%,
    rgba(214,69,93,0.22) 50%,
    rgba(63,111,217,0.18) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Main title */
.fcip-hero-title {
  position: relative;
  z-index: 3;
  margin: 0 !important;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff !important;
  text-align: center;
  text-shadow:
    0 2px 8px rgba(16, 42, 67, 0.35),
    0 8px 28px rgba(16, 42, 67, 0.24);
}

/* Tablet */
@media (max-width: 1024px) {
  .fcip-hero-titlebox {
    max-width: 900px;
    padding: 22px 26px;
    border-radius: 20px;
  }

  .fcip-hero-titlebox::before {
    border-radius: 20px;
  }

  .fcip-hero-title {
    font-size: 50px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .fcip-hero-titlebox {
    max-width: calc(100% - 24px);
    padding: 16px 16px;
    border-radius: 16px;
  }

  .fcip-hero-titlebox::before {
    border-radius: 16px;
  }

  .fcip-hero-title {
    font-size: 34px;
    line-height: 1.15;
  }
}





/* =========================================================
   FCIP - TYPES OF SYSTEMS SECTION
   Image + Text Editor version with professional bordered panel
   Structure:
   outer container  = fcip-systems-wrap
   inner container  = fcip-systems-section
   ========================================================= */

.fcip-systems-wrap {
  width: 100%;
  background: #f6f8fb;
  padding: 30px 20px 40px;
  box-sizing: border-box;
}

.fcip-systems-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 36px 42px !important;
  box-sizing: border-box;

  background: linear-gradient(180deg, #f9fbfd 0%, #f4f7fb 100%);
  border: 1px solid #dfe7f0;
  border-radius: 32px;
  box-shadow: 0 18px 40px rgba(16, 42, 67, 0.06);
  overflow: hidden;
}

/* subtle premium outline glow */
.fcip-systems-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(198,61,104,0.16) 0%, rgba(63,111,217,0.10) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* elegant top accent */
.fcip-systems-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d6455d 0%, #c63d68 45%, #3f6fd9 100%);
  opacity: 0.95;
}

/* section heading */
.fcip-section-title {
  margin: 0 0 34px !important;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: #102a43 !important;
  position: relative;
  z-index: 2;
}

/* rows */
.fcip-systems-row {
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* each card */
.fcip-system-card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fcip-system-card:hover {
  transform: translateY(-6px);
}

/* image */
.fcip-system-image {
  position: relative;
  z-index: 1;
}

.fcip-system-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(16, 42, 67, 0.10);
  margin-left: auto;
  margin-right: auto;
}

.fcip-system-text {
  position: relative;
  z-index: 2;
  width: calc(100% - 56px);
  max-width: 280px;
  margin: -24px auto 0;
  background: #ffffff;
  border: 1px solid #e7edf4;
  border-radius: 18px;
  padding: 16px 16px;
  box-shadow: 0 18px 36px rgba(16, 42, 67, 0.09);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fcip-system-text h3 {
  margin: 0 0 8px !important;
  font-size: 20px !important;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: #102a43 !important;
}

.fcip-system-text p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.6;
  text-align: center;
  color: #5b7083 !important;
}

.fcip-system-text .elementor-text-editor > *:first-child {
  margin-top: 0 !important;
}

.fcip-system-text .elementor-text-editor > *:last-child {
  margin-bottom: 0 !important;
}

/* tablet */
@media (max-width: 1024px) {
  .fcip-systems-wrap {
    padding: 24px 18px 34px;
  }

  .fcip-systems-section {
    padding: 40px 24px 34px !important;
    border-radius: 26px;
  }

  .fcip-systems-section::before {
    border-radius: 26px;
  }

  .fcip-systems-section::after {
    left: 24px;
    right: 24px;
  }

  .fcip-section-title {
    font-size: 36px;
    margin-bottom: 28px !important;
  }

  .fcip-system-image img {
    height: 230px;
  }

  .fcip-system-text {
    width: calc(100% - 32px);
    max-width: 300px;
  }

  .fcip-system-text h3 {
    font-size: 22px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .fcip-systems-wrap {
    padding: 16px 12px 24px;
  }

  .fcip-systems-section {
    padding: 28px 14px 24px !important;
    border-radius: 20px;
  }

  .fcip-systems-section::before {
    border-radius: 20px;
  }

  .fcip-systems-section::after {
    left: 14px;
    right: 14px;
    height: 3px;
  }

  .fcip-section-title {
    font-size: 28px;
    margin-bottom: 20px !important;
  }

  .fcip-systems-row {
    gap: 18px;
  }

  .fcip-system-image img {
    height: 220px;
    border-radius: 20px;
  }

  .fcip-system-text {
    width: calc(100% - 26px);
    max-width: none;
    margin-top: -22px;
    padding: 16px 16px;
    border-radius: 16px;
  }

  .fcip-system-text h3 {
    font-size: 20px;
    margin-bottom: 8px !important;
  }

  .fcip-system-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}/* End custom CSS */