.arrow.visible img { 
    display: block;
    max-width: 70px;
    height: auto;
}


.step img {
    display: block;
    max-width: 80px;
    height: auto;
}


/* SECTION WRAPPER */
.full-approach {
  font-family: sans-serif;
}

/* TOP BANNER */
.approach-top {
    background: #247dbf;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}
.approach-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0; 
    color: #fff;
}
.approach-title span {
  font-weight: 300;
}
.approach-subtitle {
    font-size: 1rem;
    opacity: 0.85;
    color: #fff;
}

/* STEPS */
.approach-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: #247dbf;
    padding: 1rem 0;
}
.step, .arrow {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.step.visible, .arrow.visible {
  opacity: 1;
  transform: translateY(0);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.step i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.step .label {
  font-size: 1rem;
  font-weight: 500;
}
.arrow i {
  font-size: 1.5rem;
  color: #fff;
}

/* IMAGE BANNER BELOW */
.approach-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 400px;
}





/* SECTION WRAPPER */
    .competencies {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 0 1rem;
      font-family: sans-serif;
      text-align: center;
    }
   

    /* GROUP (sub-heading + cards) */
    .competencies__group {
      margin-top: 2rem;
    }
    .competencies__group h3 {
      color: #102c4f;
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }
    .competencies__items {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    /* EACH CARD WRAPPER */
    .competency-item {
      flex: 1 1 260px;
      display: flex;
    }

    /* CARD */
    .competency-card {
      background: #f1f5f9;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      flex: 1;
      padding: 2rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .competency-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      cursor: pointer;
    }

    /* ICON */
    .competency-card__icon {
      font-size: 3rem;
      color: #102c4f;
      margin-bottom: 1rem;
    }
    
    .competency-card__icon img {
      display: block;
    max-width: 80px;
    height: auto;
    }

    /* TITLE + TEXT */
    .competency-card__title {
      font-size: 1.125rem;
      color: #1f3d72;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    .competency-card__text {
      font-size: 0.95rem;
      color: #1f4e79;
      line-height: 1.4;
    }

    /* SHIMMER */
    .competency-card::after {
      content: "";
      position: absolute;
      top: 0; left: -75%;
      width: 50%; height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255,255,255,0)   0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0)   100%
      );
      transform: skewX(-20deg);
      pointer-events: none;
    }
    .competency-card:hover::after {
      animation: shine 0.8s ease-in-out;
    }
    @keyframes shine {
      from { left: -75%; }
      to   { left: 150%; }
    }





.warranty-card__icon img {
    display: block;
    max-width: 40px;
    height: auto;
    margin-right: 10px;
}

.warranty-card__icon {
    margin-bottom: 0;
}

.warranty-icon img {
   width: 80px;
}

.warranty {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 0 1rem;
      text-align: center;
      font-family: sans-serif;
    }
    .warranty-icon {
      color: #ffd700;
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    .warranty-title {
      color: #102c4f;
      font-size: 1.875rem;
      margin-bottom: 1.5rem;
    }

    .warranty-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem 2rem;
    }
    /* Make the last item span both columns and center it */
    .warranty-item:last-child {
      grid-column: 1 / -1;
      justify-self: center;
    }

    .warranty-card {
      background: #102c4f;
      color: #fff;
      border-radius: 50px;
      display: flex;
      align-items: center;
      padding: 1rem 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .warranty-card__icon {
     
      color: #102c4f;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      padding: 0;
      margin-right: 5px;
      flex-shrink: 0;
    }
    .warranty-card__text {
      font-size: 1rem;
      text-align: left;
      line-height: 1.4;
    }

    .warranty-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      cursor: pointer;
    }
    .warranty-card::after {
      content: "";
      position: absolute;
      top: 0; left: -75%;
      width: 50%; height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255,255,255,0)   0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0)   100%
      );
      transform: skewX(-20deg);
      pointer-events: none;
    }
    .warranty-card:hover::after {
      animation: shine 0.8s ease-in-out;
    }
    @keyframes shine {
      from { left: -75%; }
      to   { left: 150%; }
    }







/* Container */
.technical {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}

/* Flex wrapper */
.technical__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Each card container */
.technical__item {
  flex: 1 1 260px;
  display: flex;
}

/* Card itself */
.technical-card {
  background: #f1f5f9;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  text-align: center;
}

/* Icon */
.technical-card__icon {
  margin-bottom: 1.5rem;
}
.technical-card__icon img {
  display: block;
  max-width: 80px;
  height: auto;
}

/* Title */
.technical-card__title {
  color: rgb(31, 61, 114);
    font-size: 1rem;
 
}

/* (Optional) If you have list items inside cards */
.technical-card__list {
  list-style: disc;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 auto;
  text-align: left;
  width: 100%;
  max-width: 420px;
  font-size: 13.5px;
}

/* Hover lift + shadow */
.technical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* Shimmer effect */
.technical-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0)   100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.technical-card:hover::after {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  from { left: -75%; }
  to   { left: 150%; }
}








/* Section container */
.tech-support {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: sans-serif;
}
.ts-title {
  text-align: center;
  color: #102c4f;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Wrapper */
.ts-wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
  border-left: 2px solid #102c4f;
  border-right: 2px solid #102c4f;
}
.ts-item {
  flex: 1;
  position: relative;
  padding: 1rem;
  text-align: center;
}
.ts-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 2px;
  background: #102c4f;
}

/* Icon */
.ts-icon {
  font-size: 3rem;
  color: #102c4f;
  margin-bottom: 0.5rem;
}

/* Text */
.ts-text {
  font-size: 1.125rem;
  color: #1f4e79;
  line-height: 1.6;
}

/* Hover effects */
.ts-item:hover {
  background: #eef5fa;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  cursor: pointer;
}
.ts-item::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}
.ts-item:hover::after {
  animation: shine 0.8s ease-in-out;
}
@keyframes shine {
  from { left: -75%; }
  to   { left: 150%; }
}



/* Section wrapper */
.proposal {
  max-width: 150%;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: sans-serif;
}
.proposal-title {
  text-align: center;
  color: #102c4f;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Container */
.proposal-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Step block */
.proposal-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease,
              box-shadow  0.3s ease,
              background  0.3s ease;
}
.proposal-step:nth-child(even) {
  background: #ffffff;
}
.proposal-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: #eef5fa;
}

/* Number icon */
.step-icon {
  font-size: 2.5rem;
  color: rgba(11,61,145,0.2);
  flex-shrink: 0;
}

/* Content */
.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #1f3d72;
}
.step-content ul {
  list-style: disc;
  color: #1f4e79;
  line-height: 1.5;
}

/* Shimmer effect */
.proposal-step::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0)   100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.proposal-step:hover::after {
  animation: shine 0.8s ease-in-out;
}
@keyframes shine {
  from { left: -75%; }
  to   { left: 150%; }
}






/* Section container */
.personal-approach {
  max-width: 150%;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: sans-serif;
}
.personal-approach .title {
  text-align: center;
  color: #102c4f;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Items wrapper */
.personal-approach .items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Item */
.personal-approach .item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.personal-approach .item:nth-child(even) {
  background: #ffffff;
}

/* Icon */
.personal-approach .icon {
  color: #247dbf;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 1rem;
}

/* Text */
.personal-approach .text {
  color: #1f4e79;
  line-height: 1.5;
}

/* Hover effect */
.personal-approach .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: #eef5fa;
}
.personal-approach .item::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}
.personal-approach .item:hover::after {
  animation: shine 0.8s ease-in-out;
}
@keyframes shine {
  from { left: -75%; }
  to   { left: 150%; }
}






/* front-end: hide the subtitle on all screen-sizes */
.hiden-title {
  display: none !important;
}


.comparison-title {
    text-align: center;
    color: #0266b3;
    margin-bottom: 20px;
    font-size: 36px;
}


/* Reset */
* { box-sizing: border-box; margin:0; padding:0; }

/* Section */
.solution {
  max-width: 150%;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}
.solution-title { color:#102c4f; font-size:2rem; margin-bottom:0.5rem; }
.solution-subtitle { color:#102c4f; font-size:1rem; margin-bottom:2rem; line-height:1.5; }
.solution-heading { color:#247dbf; font-size:1.25rem; margin-bottom:1.5rem; }

/* Wrapper */
.solution-wrapper {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:1rem;
}

/* Item */
.solution-item {
  position: relative;
  display:flex;
  align-items:center;
  background:#f1f5f9;
  border-radius:8px;
  overflow:hidden;
  padding:0.5rem;
  opacity:0;
  transform:translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  
}
.solution-item.full { max-width:95%; }

/* Icon */
.solution-icon {
  background:#247dbf;
  color:#fff;
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  flex-shrink:0;
}
.solution-text {
  flex:1;
  padding:0 1rem;
  text-align:left;
  color:#1f3d72;
  font-size:1rem;
}

/* Hover */
.solution-item:hover {
  transform:translateY(-5px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
.solution-item::after {
  content:"";
  position:absolute; top:0; left:-75%;
  width:50%; height:100%;
  background:linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%);
  transform:skewX(-20deg);
  pointer-events:none;
}
.solution-item:hover::after { animation:shine 0.8s ease-in-out; }
@keyframes shine { from{left:-75%;} to{left:150%;} }



/* Responsive */
@media (max-width: 991.98px) {

.step img {
    display: block;
    max-width: 40px;
    height: auto;
    margin-bottom: 10px;
}

.approach-steps {
    gap: 2rem;
    padding: 10px 10px;
}

.approach-title {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 0; 
    color: #fff;
}

.approach-image img {
    display: block;
    object-fit: cover;
    max-height: 700px;
    height: 200px;
    width: 500px;
}

.warranty-wrapper {
        grid-template-columns: 1fr;
      }
      .warranty-item:last-child {
        justify-self: stretch;
      }
      .warranty-card {
        justify-content: center;
        text-align: center;
      }
      .warranty-card__text {
        text-align: left;
      }

 .ts-wrapper {
    flex-direction: column;
    border-left: none;
    border-right: none;
  }
  .ts-item:not(:last-child)::after {
    display: none;
  }
  .ts-item {
    text-align: left;
    padding: 0.75rem;
  }

.pa-content {
        flex-direction: column;
      }
      .pa-list {
        padding: 1.5rem 1rem;
      }

.comparison-title {
    font-size: 26px;
}

  .solution-item, .solution-item.full { max-width:100%; }
  
  .pa-container {
    flex-direction: column;  /* stack text first, image below */
  }
  .pa-image {
    order: 0;                /* reset order so image appears after text */
  }
  
  .personal-approach .item {
    flex-direction: column;
    align-items: flex-start;
  }
  .personal-approach .icon {
    margin-bottom: 0.5rem;
  }
  
  .approach-top {
    padding: 2rem 10px;
}

  
}