.all-spce {
  padding: 40px !important;
  background-color: #fffef9;
}

.trusted-logo-section {
  position: relative;
  padding: 115px 0 130px;
  background: #fff;
  overflow: hidden;

}

.trusted-map-bg {
  position: absolute;
  inset: 0;
  background: url("images/world-map-light.png") center top / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.trusted-logo-section .container {
  position: relative;
  z-index: 2;
}

.trusted-btn {
  display: inline-block;
  margin-bottom: 85px;
  padding: 14px 28px;
  background: #075bd8;
  color: #fff;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
}

.trusted-slider-wrap {
  position: relative;
}

.trusted-logo-slider {
  width: 100%;
  overflow: hidden;
}

.trusted-logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: trustedSlide 22s linear infinite;
}

.trusted-logo-slider:hover .trusted-logo-track {
  animation-play-state: paused;
}

.trusted-logo {
  flex: 0 0 auto;
  min-width: 145px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  max-width: 150px;
  max-height: 85px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.trusted-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.trusted-pause-btn {
  position: absolute;
  left: 35px;
  top: 135px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid #48627b;
  background: #fff;
  color: #48627b;
  font-weight: 800;
  z-index: 5;
  cursor: pointer;
}

@keyframes trustedSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .trusted-logo-section {
    padding: 75px 0 90px;
  }

  .trusted-logo-section h2 {
    margin-bottom: 80px;
  }

  .trusted-btn {
    margin-bottom: 55px;
  }

  .trusted-logo-track {
    gap: 45px;
  }

  .trusted-pause-btn {
    left: 10px;
    top: 105px;
  }
}

.about-text-section {
  padding: 110px 0;
}

.about-text-wrap {
  max-width: 805px;
  margin: 0 auto;
}

.about-text-wrap .about-lead {
  color: #000000;
  line-height: 1.45;
  font-size: 20px;
}

.about-text-wrap p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-text-section {
    padding: 70px 0;
  }
}

.why-lcc-section {
  padding: 110px 0;
}

.why-lcc-head {
  max-width: 760px;
  margin-bottom: 55px;
}

.why-lcc-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px;
}

.why-lcc-card {
  position: relative;
  min-height: 300px;
  padding: 42px;
  border: 1px solid #ded8cc;
  background: transparent;
  overflow: hidden;
  transition: all 0.35s ease;
}

.why-lcc-card .why-num {
  display: block;
  margin-bottom: 28px;
  color: #007a9c;
  letter-spacing: 3px;
  font-weight: 700;
}

.why-lcc-card i {
  display: inline-block;
  margin-bottom: 30px;
  color: #007a9c;
}

.why-lcc-card h3 {
  margin: 0 0 22px;
  color: #0584ab;
  line-height: 26px;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
}

.why-lcc-card h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin-top: 18px;
  background: #007a9c;
}

.why-lcc-card p {
  margin: 0;
  margin-bottom: 0px;
  color: #444;
  line-height: 26px;
  font-size: 15px;
  margin-bottom: 1.25rem;
  max-width: var(--measure);
}

.why-lcc-dark {
  grid-row: span 2;
  min-height: 628px;
  background: #0584ab;
  border-color: #0584ab;
  border-top-color: #007a9c;
}

.why-lcc-dark i,
.why-lcc-dark .why-num {
  color: #FAF7F0;
}
.why-lcc-dark h3::after {
  background: #fff !important;
}
.why-lcc-dark h3,
.why-lcc-dark p {
  color: #fff;
}

.why-lcc-dark p {
  opacity: 0.86;
}

.why-lcc-dark strong {
  position: absolute;
  right: -18px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  font-weight: 800;
  pointer-events: none;
}

.why-lcc-wide {
  grid-column: span 2;
  min-height: 250px;
  display: grid;
  grid-template-columns: auto 1fr 180px;
  align-items: center;
  gap: 32px;
}

.why-lcc-wide .why-num {
  position: absolute;
  left: 42px;
  top: 38px;
}

.why-lcc-wide i {
  margin: 35px 0 0;
}

.uk-map-bg {
  width: 170px;
  height: 170px;
  background: url("images/uk-map.png") center / contain no-repeat;
  opacity: 0.12;
}

@media (max-width: 991px) {
  .why-lcc-grid {
    grid-template-columns: 1fr;
  }

  .why-lcc-dark,
  .why-lcc-wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 320px;
  }

  .why-lcc-wide {
    grid-template-columns: 1fr;
  }

  .uk-map-bg {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-lcc-section {
    padding: 70px 0;
  }

  .why-lcc-card {
    padding: 30px;
  }
}

.size-f {
  font-size: 17px;
}

/* ===============================
         Mobile Slider Fix Only
      =============================== */
@media (max-width: 767px) {
  #slider.inspiro-slider,
  #slider.inspiro-slider .slide {
    height: 620px !important;
    min-height: 620px !important;
    max-height: 620px !important;
    overflow: hidden !important;
  }

  #slider .slide {
    background-size: cover !important;
    background-position: center center !important;
  }

  #slider .slide .container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  #slider .slide-captions {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    padding: 20px 18px !important;
    text-align: center !important;
    width: 100% !important;
  }

  #slider .slide-captions .strong {
    display: none !important;
  }

  #slider .slide-captions h2 {
    font-size: 38px !important;
    line-height: 1.08 !important;
    margin: 0 0 22px !important;
    font-weight: 700 !important;
  }

  #slider .slide-captions h2 br {
    display: none !important;
  }

  #slider .slide-captions p {
    font-size: 18px !important;
    line-height: 1.45 !important;
    max-width: 100% !important;
    margin: 0 auto 24px !important;
  }

  #slider .slide-captions .btn {
    display: inline-block !important;
    margin: 5px 4px !important;
    padding: 0px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  #slider.inspiro-slider,
  #slider.inspiro-slider .slide {
    height: 590px !important;
    min-height: 590px !important;
    max-height: 590px !important;
  }

  #slider .slide-captions h2 {
    font-size: 34px !important;
  }

  #slider .slide-captions p {
    font-size: 17px !important;
  }
}

.font-number {
  font-size: 12px;
}
.font-heading {
  font-size: 40px;
  line-height: 44px;
  font-family: Georgia, "Times New Roman", serif;
}
.font-color {
  color: #cfe5ee !important;
  font-style: italic;
}
p.lead {
  color: rgba(250, 247, 240, 0.88);
  max-width: 56ch;
  margin-top: 1.5rem;
}
.lead-about {
  font-size: 20px !important;
  line-height: 30px;
  color: var(--ink-soft) !important;
  font-weight: 300;
  max-width: 60ch;
}
.lead-about-call {
  font-size: 20px !important;
  line-height: 30px;
  color: #fff !important;
  font-weight: 300;
  max-width: 60ch;
}

/* Stats Section */
.lcc-stats-section {
  background: #f8f5ee;
  padding: 35px 0 55px;
  width: 100%;
}

.lcc-stats-container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 35px;
  padding-right: 35px;
}

/* Card */
.lcc-stat-card {
  background: transparent;
  border: 1px solid #e2ded4;
  border-top: 5px solid #007fa3;
  height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease;
  padding: 25px 20px;
}

.lcc-stat-card:hover {
  transform: translateY(-5px);
  border-top-color: #006d8c;
}

/* Number */
.lcc-counter {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 400;
  color: #001842;
  margin-bottom: 18px;
  white-space: nowrap;
}

.lcc-counter-number,
.lcc-plus {
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

/* Label */
.lcc-stat-label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #006486;
  line-height: 1.4;
}
.lcc-stat-label-call {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8e8e8;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 991px) {
  .lcc-stat-card {
    height: 230px;
  }

  .lcc-counter {
    font-size: 68px;
  }

  .lcc-stat-label {
    font-size: 13px;
    letter-spacing: 3px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .lcc-stats-section {
    padding: 35px 0;
  }

  .lcc-stats-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lcc-stat-card {
    height: 210px;
  }

  .lcc-counter {
    font-size: 54px;
  }

  .lcc-stat-label {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

.pillar-p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}




.lcc-core-services-section .container {
  position: relative;
  z-index: 2;
}

.lcc-core-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.lcc-core-heading .lcc-stat-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.lcc-core-heading .lcc-stat-label::after {
  content: "";
  width: 46px;
  height: 1px;
  background: #00759b;
  display: inline-block;
}

.lcc-core-heading h4 {
  color: #061b46;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
}

.lcc-core-heading .lead-about {
  color: #555;
  font-size: 18px;
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 0;
}

.lcc-service-grid {
  row-gap: 32px;
}

.lcc-service-card {
  position: relative;
  height: 100%;
  min-height: 320px;
  padding: 42px 44px 34px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(6, 27, 70, 0.13);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.35s ease;
}


.lcc-service-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -45px;
  top: -45px;
  border: 1px solid rgba(0, 117, 155, 0.22);
  border-radius: 50%;
  transition: all 0.35s ease;
}


.lcc-service-number {
  position: relative;
  z-index: 2;
  color: rgba(6, 27, 70, 0.28);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
}

.lcc-service-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 32px;
}

.lcc-service-line {
  width: 100%;
  height: 1px;
  background: rgba(6, 27, 70, 0.13);
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-line {
  background: rgba(0, 117, 155, 0.35);
}

.lcc-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.lcc-service-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 117, 155, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00759b;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-arrow {
  background: #00759b;
  color: #ffffff;
  transform: translateX(4px);
}

/* Single last card alignment */
.lcc-service-card.lcc-featured-last {
  min-height: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .lcc-core-services-section {
    padding: 70px 0;
  }

  .lcc-core-heading h4 {
    font-size: 32px;
  }

  .lcc-service-card {
    min-height: auto;
    padding: 34px 30px 30px;
  }
}

@media (max-width: 575px) {
  .lcc-core-heading h4 {
    font-size: 28px;
  }

  .lcc-core-heading .lead-about {
    font-size: 16px;
  }

  .lcc-service-card h3 {
    font-size: 23px;
  }

  .lcc-service-card p {
    font-size: 16px;
  }

  .lcc-service-card {
    padding: 30px 24px;
  }
}
.fnt-s {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}
.fnt-bnnr {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 79px;
}
.fnt-p {
  font-size: 20px;
  line-height: 30px;
  color: rgba(250, 247, 240, 0.88);
}
.fnt-h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
} 

.fnt-crd{
  font-size: 15px;
line-height: 25px;

}

.lcc-approach-section {
  background: #f8f5ee;

}

.lcc-approach-label {
  color: #00759b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lcc-approach-title {
  color: #061b46;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 600;
  margin-bottom: 70px;
}

.lcc-approach-card {
  position: relative;
  padding: 23px 14px 0;
}

.lcc-approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92%;
  height: 3px;
  background: #00759b;
}

.lcc-approach-number {
  color: #00759b;
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
  display: block;
  font-family: Georgia, serif;
}

.lcc-approach-card h3 {
  color: #061b46;
  font-size: 17px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.lcc-approach-card p {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  max-width: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .lcc-approach-section {
    padding: 80px 0;
  }

  .lcc-approach-title {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .lcc-approach-card {
    padding: 34px 18px 20px;
  }

  .lcc-approach-card p {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .lcc-approach-section {
    padding: 65px 0;
  }

  .lcc-approach-label {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .lcc-approach-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .lcc-approach-number {
    font-size: 34px;
  }

  .lcc-approach-card h3 {
    font-size: 22px;
  }

  .lcc-approach-card p {
    font-size: 18px;
    max-width: 100%;
  }
}


.lcc-core-services-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -160px;

  pointer-events: none;
}



.lcc-core-services-section .container {
  position: relative;
  z-index: 2;
}

.lcc-core-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.lcc-core-heading .lcc-stat-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.lcc-core-heading .lcc-stat-label::after {
  content: "";
  width: 46px;
  height: 1px;
  background: #00759b;
  display: inline-block;
}

.lcc-core-heading h4 {
  color: #061b46;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
}

.lcc-core-heading .lead-about {
  color: #555;
  font-size: 18px;
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 0;
}

.lcc-service-grid {
  row-gap: 32px;
}



.icon-fnt{
  font-size: 30px;
}

.lcc-service-card:hover {
  background: #ffffff;
  border-color: rgba(0, 117, 155, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(6, 27, 70, 0.08);
}


.lcc-service-number {
  position: relative;
  z-index: 2;
  color: rgba(6, 27, 70, 0.28);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
}

.lcc-service-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 32px;
}

.lcc-service-line {
  width: 100%;
  height: 1px;
  background: rgba(6, 27, 70, 0.13);
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-line {
  background: rgba(0, 117, 155, 0.35);
}

.lcc-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.lcc-service-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 117, 155, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00759b;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-arrow {
  background: #00759b;
  color: #ffffff;
  transform: translateX(4px);
}

/* Single last card alignment */
.lcc-service-card.lcc-featured-last {
  min-height: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .lcc-core-services-section {
    padding: 70px 0;
  }

  .lcc-core-heading h4 {
    font-size: 32px;
  }

  .lcc-service-card {
    min-height: auto;
    padding: 34px 30px 30px;
  }
}

@media (max-width: 575px) {
  .lcc-core-heading h4 {
    font-size: 28px;
  }

  .lcc-core-heading .lead-about {
    font-size: 16px;
  }

  .lcc-service-card h3 {
    font-size: 23px;
  }

  .lcc-service-card p {
    font-size: 16px;
  }

  .lcc-service-card {
    padding: 30px 24px;
  }
}
.fnt-s {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}
.fnt-bnnr {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 79px;
}
.fnt-p {
  font-size: 20px;
  line-height: 30px;
  color: rgba(250, 247, 240, 0.88);
}
.fnt-h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fnt-crd {
  font-size: 15px;
  line-height: 25px;
}






.lcc-core-services-section .container {
  position: relative;
  z-index: 2;
}

.lcc-core-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.lcc-core-heading .lcc-stat-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.lcc-core-heading .lcc-stat-label::after {
  content: "";
  width: 46px;
  height: 1px;
  background: #00759b;
  display: inline-block;
}

.lcc-core-heading h4 {
  color: #061b46;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
}

.lcc-core-heading .lead-about {
  color: #555;
  font-size: 18px;
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 0;
}

.lcc-service-grid {
  row-gap: 32px;
}



.lcc-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 117, 155, 0.08),
    transparent 45%
  );
  opacity: 0;
  transition: all 0.35s ease;
}

.lcc-service-number {
  position: relative;
  z-index: 2;
  color: rgba(6, 27, 70, 0.28);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
}

.lcc-service-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 32px;
}

.lcc-service-line {
  width: 100%;
  height: 1px;
  background: rgba(6, 27, 70, 0.13);
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-line {
  background: rgba(0, 117, 155, 0.35);
}

.lcc-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.lcc-service-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 117, 155, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00759b;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-arrow {
  background: #00759b;
  color: #ffffff;
  transform: translateX(4px);
}

/* Single last card alignment */
.lcc-service-card.lcc-featured-last {
  min-height: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .lcc-core-services-section {
    padding: 70px 0;
  }

  .lcc-core-heading h4 {
    font-size: 32px;
  }

  .lcc-service-card {
    min-height: auto;
    padding: 34px 30px 30px;
  }
}

@media (max-width: 575px) {
  .lcc-core-heading h4 {
    font-size: 28px;
  }

  .lcc-core-heading .lead-about {
    font-size: 16px;
  }

  .lcc-service-card h3 {
    font-size: 23px;
  }

  .lcc-service-card p {
    font-size: 16px;
  }

  .lcc-service-card {
    padding: 30px 24px;
  }
}
.fnt-s {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}
.fnt-bnnr {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 79px;
}
.fnt-p {
  font-size: 20px;
  line-height: 30px;
  color: rgba(250, 247, 240, 0.88);
}
.fnt-h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fnt-crd {
  font-size: 15px;
  line-height: 25px;
}



.lcc-approach-section {
  background: #f8f5ee;

}

.lcc-approach-label {
  color: #00759b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lcc-approach-title {
  color: #061b46;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 600;
  margin-bottom: 70px;
}

.lcc-approach-card {
  position: relative;
  padding: 23px 14px 0;
}

.lcc-approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92%;
  height: 3px;
  background: #00759b;
}

.lcc-approach-number {
  color: #00759b;
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
  display: block;
  font-family: Georgia, serif;
}

.lcc-approach-card h3 {
  color: #061b46;
  font-size: 17px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.lcc-approach-card p {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  max-width: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .lcc-approach-section {
    padding: 80px 0;
  }

  .lcc-approach-title {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .lcc-approach-card {
    padding: 34px 18px 20px;
  }

  .lcc-approach-card p {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .lcc-approach-section {
    padding: 65px 0;
  }

  .lcc-approach-label {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .lcc-approach-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .lcc-approach-number {
    font-size: 34px;
  }

  .lcc-approach-card h3 {
    font-size: 22px;
  }

  .lcc-approach-card p {
    font-size: 18px;
    max-width: 100%;
  }
}

  /* Same style benefits list */
  .lcc-benefits-section {
  background: #f8f5ee;
  padding: 60px 0;
}

.lcc-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lcc-benefit-list li {
  position: relative;
display: flex;
gap: 19px;
padding: 0 0 21px;
margin-bottom: 16px;
border-bottom: 1px solid rgba(6, 27, 70, 0.12);
}

.lcc-benefit-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.lcc-benefit-arrow {
  flex: 0 0 auto;
  color: #00759b;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  margin-top: 2px;
}

.lcc-benefit-content strong {
  display: block;
  color: #061b46;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.lcc-benefit-content p {
  color: #222222;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  max-width: 860px;
}

/* Responsive */
@media (max-width: 767px) {
  .lcc-benefits-section {
    padding: 45px 0;
  }

  .lcc-benefit-list li {
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .lcc-benefit-content strong {
    font-size: 19px;
  }

  .lcc-benefit-content p {
    font-size: 1.1rem;
  }

  .lcc-benefit-arrow {
    font-size: 22px;
  }
}




.lcc-core-services-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -180px;

  pointer-events: none;
}

.lcc-core-services-section .container {
  position: relative;
  z-index: 2;
}

.lcc-core-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.lcc-core-heading .lcc-stat-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.lcc-core-heading .lcc-stat-label::after {
  content: "";
  width: 46px;
  height: 1px;
  background: #00759b;
  display: inline-block;
}

.lcc-core-heading h4 {
  color: #061b46;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
}

.lcc-core-heading .lead-about {
  color: #555;
  font-size: 18px;
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 0;
}

.lcc-service-grid {
  row-gap: 32px;
}







.lcc-service-number {
  position: relative;
  z-index: 2;
  color: rgba(6, 27, 70, 0.28);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
}

.lcc-service-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 32px;
}

.lcc-service-line {
  width: 100%;
  height: 1px;
  background: rgba(6, 27, 70, 0.13);
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-line {
  background: rgba(0, 117, 155, 0.35);
}

.lcc-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #00759b;
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
}

.lcc-service-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 117, 155, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00759b;
  transition: all 0.35s ease;
}

.lcc-service-card:hover .lcc-service-arrow {
  background: #00759b;
  color: #ffffff;
  transform: translateX(4px);
}

/* Single last card alignment */
.lcc-service-card.lcc-featured-last {
  min-height: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .lcc-core-services-section {
    padding: 70px 0;
  }

  .lcc-core-heading h4 {
    font-size: 32px;
  }

  .lcc-service-card {
    min-height: auto;
    padding: 34px 30px 30px;
  }
}

@media (max-width: 575px) {
  .lcc-core-heading h4 {
    font-size: 28px;
  }

  .lcc-core-heading .lead-about {
    font-size: 16px;
  }

  .lcc-service-card h3 {
    font-size: 23px;
  }

  .lcc-service-card p {
    font-size: 16px;
  }

  .lcc-service-card {
    padding: 30px 24px;
  }
}
.fnt-s {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}
.fnt-bnnr {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 79px;
}
.fnt-p {
  font-size: 20px;
  line-height: 30px;
  color: rgba(250, 247, 240, 0.88);
}
.fnt-h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fnt-crd {
  font-size: 15px;
  line-height: 25px;
}


.lcc-approach-section {
  background: #f8f5ee;

}

.lcc-approach-label {
  color: #00759b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lcc-approach-title {
  color: #061b46;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 600;
  margin-bottom: 70px;
}

.lcc-approach-card {
  position: relative;
  padding: 23px 14px 0;
}

.lcc-approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92%;
  height: 3px;
  background: #00759b;
}

.lcc-approach-number {
  color: #00759b;
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
  display: block;
  font-family: Georgia, serif;
}

.lcc-approach-card h3 {
  color: #061b46;
  font-size: 17px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.lcc-approach-card p {
  color: #4b4b4b;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  max-width: 300px;
}

/* Responsive */
@media (max-width: 991px) {
  .lcc-approach-section {
    padding: 80px 0;
  }

  .lcc-approach-title {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .lcc-approach-card {
    padding: 34px 18px 20px;
  }

  .lcc-approach-card p {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .lcc-approach-section {
    padding: 65px 0;
  }

  .lcc-approach-label {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .lcc-approach-title {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .lcc-approach-number {
    font-size: 34px;
  }

  .lcc-approach-card h3 {
    font-size: 22px;
  }

  .lcc-approach-card p {
    font-size: 18px;
    max-width: 100%;
  }
}

  /* Same style benefits list */
  .lcc-benefits-section {
  background: #f8f5ee;
  padding: 60px 0;
}

.lcc-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lcc-benefit-list li {
  position: relative;
display: flex;
gap: 19px;
padding: 0 0 21px;
margin-bottom: 16px;
border-bottom: 1px solid rgba(6, 27, 70, 0.12);
}

.lcc-benefit-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.lcc-benefit-arrow {
  flex: 0 0 auto;
  color: #00759b;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  margin-top: 2px;
}

.lcc-benefit-content strong {
  display: block;
  color: #061b46;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}


/* Responsive */
@media (max-width: 767px) {
  .lcc-benefits-section {
    padding: 45px 0;
  }

  .lcc-benefit-list li {
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .lcc-benefit-content strong {
    font-size: 19px;
  }

  .lcc-benefit-content p {
    font-size: 1.1rem;
  }

  .lcc-benefit-arrow {
    font-size: 22px;
  }
}


  /* Same style benefits list */
  .lcc-benefits-section {
    background: #f8f5ee;
    padding: 60px 0;
  }

  .lcc-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .lcc-benefit-list li {
    position: relative;
    display: flex;
    gap: 19px;
    padding: 0 0 21px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(6, 27, 70, 0.12);
  }

  .lcc-benefit-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .lcc-benefit-arrow {
    flex: 0 0 auto;
    color: #00759b;
    font-size: 25px;
    line-height: 1;
    font-weight: 500;
    margin-top: 2px;
  }

  .lcc-benefit-content strong {
    display: block;
    color: #061b46;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 12px;
  }



  /* Responsive */
  @media (max-width: 767px) {
    .lcc-benefits-section {
      padding: 45px 0;
    }

    .lcc-benefit-list li {
      gap: 16px;
      margin-bottom: 28px;
      padding-bottom: 24px;
    }

    .lcc-benefit-content strong {
      font-size: 19px;
    }

    .lcc-benefit-content p {
      font-size: 1.1rem;
    }

    .lcc-benefit-arrow {
      font-size: 22px;
    }
  }
     /* Cabling Options Table Section */
     .lcc-cabling-options-section {
      background: #f8f5ee;
      padding: 90px 0 100px;
    }

    .lcc-cabling-heading {
      margin-bottom: 52px;
    }

    .lcc-cabling-table-wrap {
      width: 100%;
      overflow-x: auto;
    }

    .lcc-cabling-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
      background: transparent;
    }

    .lcc-cabling-table thead tr {
      border-bottom: 1px solid rgba(6, 27, 70, 0.25);
    }

    .lcc-cabling-table th {
      font-family: "IBM Plex Mono", monospace;
      font-size: 1.4rem!important;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #006486;
      border-bottom-color: #006486;
      font-weight: 500;
      padding: 20px;
    }

    .lcc-cabling-table td {
      color: #222222;
      font-size: 15px;
      line-height: 24px;
      padding: 18px;
      border-bottom: 1px solid rgba(6, 27, 70, 0.12);
      vertical-align: middle;
    }

    .lcc-cabling-table td:first-child {
      color: #061b46;
      font-weight: 600;
      width: 15%;
    }

    .lcc-cabling-table th:first-child,
    .lcc-cabling-table td:first-child {
      padding-left: 28px;
    }

    .lcc-cabling-table th:nth-child(2),
    .lcc-cabling-table td:nth-child(2) {
      width: 44%;
    }

    .lcc-cabling-table th:nth-child(3),
    .lcc-cabling-table td:nth-child(3) {
      width: 41%;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .lcc-cabling-options-section {
        padding: 70px 0;
      }

      .lcc-cabling-heading h4 {
        font-size: 40px;
      }

      .lcc-cabling-table td {
        font-size: 19px;
        padding: 24px 20px;
      }

      .lcc-cabling-table th {
        padding: 0 20px 22px;
      }
    }

    @media (max-width: 575px) {
      .lcc-cabling-heading h4 {
        font-size: 32px;
      }

      .lcc-cabling-label {
        font-size: 12px;
        letter-spacing: 4px;
      }

      .lcc-cabling-table {
        min-width: 760px;
      }
    }
    .lcc-benefit-list-2 li {
      position: relative;
      display: flex;
      gap: 22px;
      padding: 0 0 6px;
      margin-bottom: 25px;
      border-bottom: 1px solid rgba(6, 27, 70, 0.12);
    }



 

    .lcc-core-services-section .container {
      position: relative;
      z-index: 2;
    }

    .lcc-core-heading {
      max-width: 860px;
      margin-bottom: 48px;
    }

    .lcc-core-heading .lcc-stat-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
      color: #00759b;
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .lcc-core-heading .lcc-stat-label::after {
      content: "";
      width: 46px;
      height: 1px;
      background: #00759b;
      display: inline-block;
    }

    .lcc-core-heading h4 {
      color: #061b46;
      font-size: 38px;
      line-height: 1.2;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .lcc-core-heading .lead-about {
      color: #555;
      font-size: 18px;
      line-height: 1.75;
      max-width: 780px;
      margin-bottom: 0;
    }

    .lcc-service-grid {
      row-gap: 32px;
    }

    .lcc-service-card {
      position: relative;
      height: 100%;
      min-height: 320px;
      padding: 42px 44px 34px;
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(6, 27, 70, 0.13);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: all 0.35s ease;
    }



   
    .lcc-service-card:hover {
      background: #ffffff;
      border-color: rgba(0, 117, 155, 0.35);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(6, 27, 70, 0.08);
    }

   
    .lcc-service-card:hover::after {
      right: 24px;
      top: 24px;
    }

    .lcc-service-number {
      position: relative;
      z-index: 2;
      color: rgba(6, 27, 70, 0.28);
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 30px;
      display: inline-block;
    }

    .lcc-service-bottom {
      position: relative;
      z-index: 2;
      margin-top: auto;
      padding-top: 32px;
    }

    .lcc-service-line {
      width: 100%;
      height: 1px;
      background: rgba(6, 27, 70, 0.13);
      margin-bottom: 24px;
      transition: all 0.35s ease;
    }

    .lcc-service-card:hover .lcc-service-line {
      background: rgba(0, 117, 155, 0.35);
    }

    .lcc-service-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #00759b;
      font-size: 13px;
      letter-spacing: 2.5px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .lcc-service-arrow {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(0, 117, 155, 0.25);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #00759b;
      transition: all 0.35s ease;
    }

    .lcc-service-card:hover .lcc-service-arrow {
      background: #00759b;
      color: #ffffff;
      transform: translateX(4px);
    }

    /* Single last card alignment */
    .lcc-service-card.lcc-featured-last {
      min-height: 300px;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .lcc-core-services-section {
        padding: 70px 0;
      }

      .lcc-core-heading h4 {
        font-size: 32px;
      }

      .lcc-service-card {
        min-height: auto;
        padding: 34px 30px 30px;
      }
    }

    @media (max-width: 575px) {
      .lcc-core-heading h4 {
        font-size: 28px;
      }

      .lcc-core-heading .lead-about {
        font-size: 16px;
      }

      .lcc-service-card h3 {
        font-size: 23px;
      }

      .lcc-service-card p {
        font-size: 16px;
      }

      .lcc-service-card {
        padding: 30px 24px;
      }
    }

    .fnt-s {
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--teal-dark);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .fnt-bnnr {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 72px;
      line-height: 79px;
    }

    .fnt-p {
      font-size: 20px;
      line-height: 30px;
      color: rgba(250, 247, 240, 0.88);
    }

    .fnt-h3 {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .fnt-crd {
      font-size: 15px;
      line-height: 25px;
    }


     /* Same style benefits list */
     .lcc-benefits-section {
      background: #f8f5ee;
      padding: 60px 0;
    }

    .lcc-benefit-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .lcc-benefit-list li {
      position: relative;
      display: flex;
      gap: 19px;
      padding: 0 0 21px;
      margin-bottom: 16px;
      border-bottom: 1px solid rgba(6, 27, 70, 0.12);
    }

    .lcc-benefit-list li:last-child {
      border-bottom: 0;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .lcc-benefit-arrow {
      flex: 0 0 auto;
      color: #00759b;
      font-size: 25px;
      line-height: 1;
      font-weight: 500;
      margin-top: 2px;
    }

    .lcc-benefit-content strong {
      display: block;
      color: #061b46;
      font-size: 16px;
      line-height: 26px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    

    /* Responsive */
    @media (max-width: 767px) {
      .lcc-benefits-section {
        padding: 45px 0;
      }

      .lcc-benefit-list li {
        gap: 16px;
        margin-bottom: 28px;
        padding-bottom: 24px;
      }

      .lcc-benefit-content strong {
        font-size: 19px;
      }

      .lcc-benefit-content p {
        font-size: 1.1rem;
      }

      .lcc-benefit-arrow {
        font-size: 22px;
      }
    }


     /* Cabling Options Table Section */
     .lcc-cabling-options-section {
      background: #f8f5ee;
      padding: 90px 0 100px;
    }

    .lcc-cabling-heading {
      margin-bottom: 52px;
    }

    .lcc-cabling-table-wrap {
      width: 100%;
      overflow-x: auto;
    }

    .lcc-cabling-table {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
      background: transparent;
    }

    .lcc-cabling-table thead tr {
      border-bottom: 1px solid rgba(6, 27, 70, 0.25);
    }

    .lcc-cabling-table th {
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #006486;
      border-bottom-color: #006486;
      font-weight: 500;
      padding: 20px;
    }

    .lcc-cabling-table td {
      color: #222222;
      font-size: 15px;
      line-height: 24px;
      padding: 18px;
      border-bottom: 1px solid rgba(6, 27, 70, 0.12);
      vertical-align: middle;
    }

    .lcc-cabling-table td:first-child {
      color: #061b46;
      font-weight: 600;
      width: 15%;
    }

    .lcc-cabling-table th:first-child,
    .lcc-cabling-table td:first-child {
      padding-left: 28px;
    }

    .lcc-cabling-table th:nth-child(2),
    .lcc-cabling-table td:nth-child(2) {
      width: 44%;
    }

    .lcc-cabling-table th:nth-child(3),
    .lcc-cabling-table td:nth-child(3) {
      width: 41%;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .lcc-cabling-options-section {
        padding: 70px 0;
      }

      .lcc-cabling-heading h4 {
        font-size: 40px;
      }

      .lcc-cabling-table td {
        font-size: 19px;
        padding: 24px 20px;
      }

      .lcc-cabling-table th {
        padding: 0 20px 22px;
      }
    }

    @media (max-width: 575px) {
      .lcc-cabling-heading h4 {
        font-size: 32px;
      }

      .lcc-cabling-label {
        font-size: 12px;
        letter-spacing: 4px;
      }

      .lcc-cabling-table {
        min-width: 760px;
      }
    }
    .lcc-benefit-list-2 li {
      position: relative;
      display: flex;
      gap: 22px;
      padding: 0 0 6px;
      margin-bottom: 25px;
      border-bottom: 1px solid rgba(6, 27, 70, 0.12);
    }

    .lcc-core-services-section {
      position: relative;
      padding: 90px 0;
      overflow: hidden;
    }

 


    .lcc-core-services-section .container {
      position: relative;
      z-index: 2;
    }

    .lcc-core-heading {
      max-width: 860px;
      margin-bottom: 48px;
    }

    .lcc-core-heading .lcc-stat-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
      color: #00759b;
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .lcc-core-heading .lcc-stat-label::after {
      content: "";
      width: 46px;
      height: 1px;
      background: #00759b;
      display: inline-block;
    }

    .lcc-core-heading h4 {
      color: #061b46;
      font-size: 38px;
      line-height: 1.2;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .lcc-core-heading .lead-about {
      color: #555;
      font-size: 18px;
      line-height: 1.75;
      max-width: 780px;
      margin-bottom: 0;
    }

    .lcc-service-grid {
      row-gap: 32px;
    }

    .lcc-service-card {
      position: relative;
      height: 100%;
      min-height: 320px;
      padding: 42px 44px 34px;
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(6, 27, 70, 0.13);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: all 0.35s ease;
    }

  
    .lcc-service-card:hover {
      background: #ffffff;
      border-color: rgba(0, 117, 155, 0.35);
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(6, 27, 70, 0.08);
    }

    .lcc-service-card:hover::before {
      opacity: 1;
    }

    

    .lcc-service-number {
      position: relative;
      z-index: 2;
      color: rgba(6, 27, 70, 0.28);
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 30px;
      display: inline-block;
    }

    .lcc-service-bottom {
      position: relative;
      z-index: 2;
      margin-top: auto;
      padding-top: 32px;
    }

    .lcc-service-line {
      width: 100%;
      height: 1px;
      background: rgba(6, 27, 70, 0.13);
      margin-bottom: 24px;
      transition: all 0.35s ease;
    }

    .lcc-service-card:hover .lcc-service-line {
      background: rgba(0, 117, 155, 0.35);
    }

    .lcc-service-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #00759b;
      font-size: 13px;
      letter-spacing: 2.5px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .lcc-service-arrow {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(0, 117, 155, 0.25);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #00759b;
      transition: all 0.35s ease;
    }

    .lcc-service-card:hover .lcc-service-arrow {
      background: #00759b;
      color: #ffffff;
      transform: translateX(4px);
    }

    /* Single last card alignment */
    .lcc-service-card.lcc-featured-last {
      min-height: 300px;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .lcc-core-services-section {
        padding: 70px 0;
      }

      .lcc-core-heading h4 {
        font-size: 32px;
      }

      .lcc-service-card {
        min-height: auto;
        padding: 34px 30px 30px;
      }
    }

    @media (max-width: 575px) {
      .lcc-core-heading h4 {
        font-size: 28px;
      }

      .lcc-core-heading .lead-about {
        font-size: 16px;
      }

      .lcc-service-card h3 {
        font-size: 23px;
      }

      .lcc-service-card p {
        font-size: 16px;
      }

      .lcc-service-card {
        padding: 30px 24px;
      }
    }

    .fnt-s {
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--teal-dark);
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .fnt-bnnr {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 72px;
      line-height: 79px;
    }

    .fnt-p {
      font-size: 20px;
      line-height: 30px;
      color: rgba(250, 247, 240, 0.88);
    }

    .fnt-h3 {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .fnt-crd {
      font-size: 15px;
      line-height: 25px;
    }


    .engage-timeline-section .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Heading */
    .engage-timeline-head {
      margin-bottom: 45px;
    }

    .engage-timeline-head p {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 4px;
      color: #005fae;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .engage-timeline-head h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 54px;
      line-height: 1.05;
      font-weight: 500;
      color: #061a49;
      margin: 0;
    }

    .engage-timeline-head span {
      display: block;
      width: 52px;
      height: 2px;
      background: #005fae;
      margin: 20px auto 0;
    }

    /* Timeline wrapper */
    .engage-timeline-wrap {
      position: relative;
      min-height: 650px;
    }

    /* Center vertical line */
    .engage-center-line {
      position: absolute;
      top: 20px;
      left: 50%;
      width: 1px;
      height: 430px;
      background: #c8ced8;
      transform: translateX(-50%);
    }

    .line-node {
      position: absolute;
      left: 50%;
      width: 18px;
      height: 18px;
      background: #ffffff;
      border: 4px solid #001a60;
      border-radius: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .node-top {
      top: 0;
    }

    .node-middle {
      top: 190px;
    }

    .node-bottom {
      top: 380px;
    }

    .node-end {
      width: 12px;
      height: 12px;
      border: 2px solid #c8ced8;
      bottom: -8px;
    }

    /* Timeline Item */
    .engage-timeline-item {
      position: absolute;
      display: flex;
      align-items: flex-start;
      gap: 30px;
      width: 390px;
    }

    .item-left {
      left: 8%;
    }

    .item-right {
      right: 4%;
    }

    .item-one {
      top: 0;
    }

    .item-two {
      top: 180px;
    }

    .item-three {
      top: 370px;
    }

    /* Number */
    .engage-num {
      width: 66px;
      height: 66px;
      min-width: 66px;
      border-radius: 50%;
      background: #eaf1ff;
      color: #061a49;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 20px;
      font-weight: 500;
    }

    /* Content */
    .engage-info h3 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 20px;
      line-height: 32px;
      font-weight: 400;
      color: #061a49;
      margin: 0 0 10px;
    }

    .engage-meta {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: #005fae;
      margin: 0 0 18px;
      text-transform: uppercase;
      font-family: "IBM Plex Mono", monospace;
      line-height: 30px;
    }

    .engage-desc {
      font-size: 16px;
      line-height: 1.65;
      color: #2f3542;
      margin: 0;
    }

    /* Connectors */
    .engage-connector {
      position: absolute;
      height: 1px;
      background: #c8ced8;
      z-index: 1;
    }

    .engage-connector::before {
      content: "";
      position: absolute;
      top: 50%;
      width: 8px;
      height: 8px;
      background: #001a60;
      border-radius: 50%;
      transform: translateY(-50%);
    }

    /* Left side connector */
    .connector-one {
      top: 28px;
      left: calc(50% - 120px);
      width: 120px;
    }

    .connector-one::before {
      left: 0;
    }

    /* Right side connector */
    .connector-two {
      top: 218px;
      left: 50%;
      width: 120px;
    }

    .connector-two::before {
      right: 0;
    }

    /* Third left side connector */
    .connector-three {
      top: 408px;
      left: calc(50% - 120px);
      width: 120px;
    }

    .connector-three::before {
      left: 0;
    }

    /* CTA */
    .engage-timeline-cta {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
    }

    .engage-timeline-cta a {
      min-width: 310px;
      height: 62px;
      border: 1.5px solid #061a49;
      color: #061a49;
      background: #ffffff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      font-size: 17px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .engage-timeline-cta a span {
      font-size: 27px;
      line-height: 1;
    }

    .engage-timeline-cta a:hover {
      background: #061a49;
      color: #ffffff;
    }

    /* Tablet */
    @media (max-width: 991px) {
      .engage-timeline-head h2 {
        font-size: 44px;
      }

      .engage-timeline-wrap {
        min-height: auto;
      }

      .engage-center-line,
      .engage-connector {
        display: none;
      }

      .engage-timeline-item {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        top: auto;
        margin-bottom: 35px;
      }

      .engage-timeline-cta {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        text-align: center;
        margin-top: 15px;
      }
    }

    /* Mobile */
    @media (max-width: 575px) {
      .engage-timeline-section {
        padding: 55px 0 45px;
      }

      .engage-timeline-head {
        margin-bottom: 35px;
      }

      .engage-timeline-head p {
        font-size: 12px;
        letter-spacing: 3px;
      }

      .engage-timeline-head h2 {
        font-size: 36px;
      }

      .engage-timeline-item {
        gap: 18px;
        flex-direction: column;
      }

      .engage-num {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 21px;
      }

      .engage-info h3 {
        font-size: 26px;
      }

      .engage-meta {
        font-size: 12px;
        letter-spacing: 1.8px;
      }

      .engage-desc {
        font-size: 15px;
      }

      .engage-timeline-cta a {
        width: 100%;
        min-width: auto;
        height: 58px;
      }
    }


    .flexera-offer-section {
      background: #fbf7ef;
      padding: 40px 0;
    }

    .flexera-offer-card {
      position: relative;
      background: #fffdf8;
      border: 1px solid rgba(6, 27, 70, 0.12);
      border-radius: 14px;
      padding: 70px 90px;
      box-shadow: 0 18px 50px rgba(6, 27, 70, 0.05);
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 65px;
    }

    .flexera-offer-number {
      color: #007f98;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 42px;
      line-height: 1;
      font-style: italic;
      font-weight: 500;
      position: relative;
    }

    .flexera-offer-number::after {
      content: "";
      position: absolute;
      top: 0;
      right: -35px;
      width: 1px;
      height: 100%;
      background: rgba(0, 127, 152, 0.35);
    }

    .flexera-offer-content h2 {
      color: #061b46;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 24px;
      line-height: 40px;
      font-weight: 400;
      margin: 29px 0 43px;
      letter-spacing: -0.02em;
    }

    .flexera-info-list {
      max-width: 1000px;
    }

    .flexera-info-item {
      display: grid;
      grid-template-columns: 82px 1fr;
      gap: 34px;
      padding: 0 0 28px;
      margin-bottom: 26px;
      border-bottom: 1px dashed rgba(6, 27, 70, 0.16);
    }

    .flexera-info-item:last-of-type {
      border-bottom: none;
      margin-bottom: 30px;
    }

    .flexera-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #e7f4f3;
      color: #007f98;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .flexera-icon svg {
      width: 30px;
      height: 30px;
    }

    .flexera-info-text {
      color: #111111;
      font-size: 17px;
      line-height: 27px;
    }

    .flexera-info-text strong {
      color: #007f98;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-right: 12px;
      white-space: nowrap;
      line-height: 24px;
    }

    .flexera-price-box {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: #fffdf8;
      border: 1px solid rgba(6, 27, 70, 0.14);
      border-left: 5px solid #007f98;
      border-radius: 1px;
      padding: 11px 18px;
      color: #4b4b4b;
      font-size: 13px;
      line-height: 21px;
      margin-bottom: 34px;
      font-family: "IBM Plex Mono", monospace;
    }

    .flexera-price-box svg {
      width: 28px;
      height: 28px;
      color: #007f98;
    }

    .flexera-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #007f98;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      border-bottom: 2px solid #007f98;
      padding-bottom: 8px;
      transition: all 0.3s ease;
      line-height: 24px;
    }

    .flexera-cta:hover {
      color: #061b46;
      border-color: #061b46;
    }

    .flexera-cta span {
      transition: transform 0.3s ease;
    }

    .flexera-cta:hover span {
      transform: translateX(5px);
    }

    /* Responsive */
    @media (max-width: 991px) {
      .flexera-offer-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 35px;
      }

      .flexera-offer-number::after {
        display: none;
      }

      .flexera-offer-content h2 {
        font-size: 42px;
        margin-bottom: 35px;
      }

      .flexera-info-text {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 575px) {
      .flexera-offer-section {
        padding: 45px 0;
      }

      .flexera-offer-card {
        padding: 35px 24px;
      }

      .flexera-offer-number {
        font-size: 70px;
      }

      .flexera-offer-content h2 {
        font-size: 34px;
      }

      .flexera-info-item {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .flexera-info-text strong {
        display: block;
        margin-bottom: 8px;
        white-space: normal;
      }

      .flexera-price-box {
        font-size: 18px;
        align-items: flex-start;
      }

      .flexera-cta {
        font-size: 18px;
      }
      .fnt-bnnr {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 34px !important;
        line-height: 37px;
        margin-top: 6%;
      }
      .fnt-p {
        font-size: 17px !important;
        line-height: 25px;
        color: rgba(250, 247, 240, 0.88);
      }
    }



    .lcc-monday-section {
      background: #fbf7ef;
      padding: 105px 0 110px;
    }

    .lcc-monday-head {
      margin-bottom: 68px;
    }

    .lcc-monday-label {
      color: #007f98;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 26px;
    }

    .lcc-monday-title {
      color: #061b46;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 58px;
      line-height: 1.12;
      font-weight: 600;
      margin-bottom: 32px;
    }

    .lcc-monday-subtitle {
      color: #555555;
      font-size: 30px;
      line-height: 1.45;
      margin: 0;
    }

    .lcc-monday-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 42px;
      margin-top: 6%;
    }

    .lcc-monday-item {
      position: relative;
      padding-left: 23px;
      min-height: 255px;
    }

    .lcc-monday-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 3px;
      height: 80%;
      background: #007f98;
    }

    .lcc-monday-item h3 {
      font-family: Georgia, serif;
      font-size: 18px;
      text-transform: none;
      letter-spacing: -0.01em;
      color: #000;
      font-weight: 400;
      margin-bottom: 0.75rem;
      font-style: italic;
      line-height: 35px;
    }

    .lcc-monday-item p {
      color: #5f5f5f;
      font-size: 16px;
      line-height: 25px;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .lcc-monday-section {
        padding: 80px 0;
      }

      .lcc-monday-title {
        font-size: 42px;
      }

      .lcc-monday-subtitle {
        font-size: 24px;
      }

      .lcc-monday-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .lcc-monday-item {
        min-height: auto;
        padding-left: 28px;
      }

      .lcc-monday-item h3 {
        font-size: 25px;
      }

      .lcc-monday-item p {
        font-size: 21px;
      }
      .fnt-bnnr {
        font-size: 34px !important;
      }
    }

    @media (max-width: 575px) {
      .lcc-monday-section {
        padding: 60px 0;
      }

      .lcc-monday-label {
        font-size: 12px;
        letter-spacing: 4px;
      }

      .lcc-monday-title {
        font-size: 34px;
      }

      .lcc-monday-subtitle {
        font-size: 20px;
      }

      .lcc-monday-head {
        margin-bottom: 45px;
      }

      .lcc-monday-item h3 {
        font-size: 22px;
      }

      .lcc-monday-item p {
        font-size: 18px;
      }
      .fnt-bnnr {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 34px !important;
      }
    }
    .lcc-divider {
      width: 100%;
      height: 1px;
      background: rgba(6, 27, 70, 0.12);
      margin: 0;
    }
    .lead-about-new {
      font-size: 17px !important;
      line-height: 27px;
      color: #242424 !important;
      font-weight: 300;
      max-width: 60ch;
    }
    .horizontal-border {
      border: 1px solid #383737;
      margin-top: 30px;
  }
  .letter-spacing-para {
      letter-spacing: 0.06em;
      font-size: 12px;
      line-height: 20px;
      font-family: "IBM Plex Mono", monospace;
  }


  .lcc-service-card {
    position: relative;
    overflow: hidden;
  }

  /* Hover circle */
  .lcc-service-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -45px;
    top: -45px;
    border: 1px solid rgba(0, 117, 155, 0.35);
    border-radius: 50%;
    background: transparent;
    transition: all 0.35s ease;
    z-index: 3;
  }

  /* Circle comes on hover */
  .lcc-service-card:hover::after {
    right: 24px;
    top: 24px;
    background: #00759bb5;
    border-color: #00759b;
  }

  /* Icon inside hover circle */
  .lcc-hover-circle-icon {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
    opacity: 0;
    transform: scale(0.4);
    transition: all 0.35s ease;
    z-index: 4;
    pointer-events: none;
  }

  /* Icon shows only on hover */
  .lcc-service-card:hover .lcc-hover-circle-icon {
    opacity: 1;
    transform: scale(1);
  }

  /* Keep text above background but below icon */
  .lcc-service-number,
  .lcc-service-card h3,
  .lcc-service-card p,
  .lcc-service-bottom {
    position: relative;
    z-index: 2;
  }

  @media (max-width: 767px) {
    .lcc-service-card::after,
    .lcc-hover-circle-icon {
      display: none !important;
    }
  }

