/********** Template CSS **********/
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
  --navHover: #feac16;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  /* font-weight: 800 !important; */
}

h3,
h4,
.fw-semi-bold {
  /* font-weight: 700 !important; */
}

h5,
h6,
.fw-medium {
  /* font-weight: 600 !important; */
}

.hover-orange:hover a {
  color: var(--navHover) !important;
}

.hover-orange:hover svg path {
  fill: green;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-orange,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-orange:hover {
  color: #1a3156;
  box-shadow: inset 0 0 0 0 var(--navHover);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  /* font-size: 13.5px; */
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--navHover);
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: var(--navHover) !important;
  border-color: var(--navHover) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  @media (min-width: 992px) {
    .pos-lg-absolute {
      position: absolute;
    }
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    /* bottom: -1px; */
    left: 50%;
    background: var(--navHover);
    transition: 0.5s;
    transform: translateY(55px);
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 12px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 578px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 992px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
  }
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/* Partnership Cards */
.cards-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
}

/* 2 per row on tablets (568px - 991px) */
@media (max-width: 1300px) {
  .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

/* 1 per row on small screens (<568px) */
@media (max-width: 667px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

@media (max-width: 667px) {
  .card-center {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Team detailed Cards*/
.team-detail-cards {
  max-width: 1270px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

/* 2 per row on tablets (568px - 991px) */
@media (max-width: 1200px) {
  .team-detail-cards {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

/* 1 per row on small screens (<568px) */
@media (max-width: 767px) {
  .team-detail-cards {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .card-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.service-item-team-detail {
  position: relative;
  width: 400px;
  height: 250px;
  padding: 0 30px;
  transition: 0.5s;
  border-radius: 10px !important;
}
.service-item-team-detail .service-icon-team-detail {
  margin-bottom: 20px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--navHover) !important;
  border-radius: 2px !important;
  transform: rotate(-45deg) !important;
}

.service-item-team-detail .service-icon-team-detail svg {
  transform: rotate(45deg) !important;
  color: white !important;
  font-size: 1.3rem !important;
}

@media (max-width: 1330px) {
  .service-item-team-detail {
    width: 350px;
  }
}

/* Team detailed without background cards */
.no-bg-cards {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
}

@media (max-width: 1300px) {
  .no-bg-cards {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }
}
@media (max-width: 830px) {
  .no-bg-cards {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

/* 1 per row on small screens (<568px) */
@media (max-width: 568px) {
  .no-bg-cards {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

@media (max-width: 568px) {
  .card-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.service-item-no-bg {
  position: relative;
  width: 242px;
  height: 200px;
  padding: 0 30px;
  transition: 0.5s;
  border-radius: 10px !important;
}
.service-item-no-bg .service-icon-no-bg {
  margin-bottom: 20px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--navHover) !important;
  border-radius: 2px !important;
  transform: rotate(-45deg) !important;
}

.service-item-no-bg .service-icon-no-bg svg {
  transform: rotate(45deg) !important;
  color: white !important;
  font-size: 1.3rem !important;
}
.service-item-no-bg .service-icon-no-bg i {
  transform: rotate(45deg) !important;
  color: white !important;
  font-size: 1.3rem !important;
}

/* @media (max-width: 1330px) {
  .service-item-no-bg {
    width: 350px;
  }
} */

.service-item-numbers {
  position: relative;
  width: 242px;
  height: 250px;
  padding: 0 30px;
  transition: 0.5s;
  border-radius: 10px !important;
  border: 2px solid white !important;
}
.service-item-numbers .service-icon-numbers {
  margin-bottom: 20px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: lightgray !important;
  border-radius: 50% !important;
}

.service-item-numbers .service-icon-numbers {
  color: black !important;
  font-size: 1.3rem !important;
}

.service-item-numbers:hover .service-icon-numbers {
  background: var(--navHover) !important;
  color: white !important;
}
.service-item-numbers:hover {
  cursor: pointer;
  border-color: darkblue !important;
  /* border-width: 2px;  */
  /* border: 2px solid "#1a3156" !important; */
}

.service-item-no-hover {
  position: relative;
  width: 242px;
  height: 170px;
  /* padding: 0 30px; */
  padding: 0.7rem 1.5rem;
  transition: 0.5s;
  border-radius: 10px !important;
  border: 2px solid white !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.service-item-no-hover h4 {
  min-height: 3.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.service-item-no-hover p {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  min-height: 3rem;
}
.service-item-no-hover .service-icon-no-hover {
  margin-bottom: 20px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* background: lightgray !important; */
  border-radius: 50% !important;
  background: var(--navHover) !important;
  color: white !important;
  font-size: 1.3rem;
}
.ons-icon {
  margin-bottom: 20px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* background: lightgray !important; */
  border-radius: 50% !important;
  background: var(--navHover) !important;
  color: white !important;
  font-size: 1.3rem;
}

/* .no-hover-card {
  background: var(--navHover) !important;
  color: white !important;
  font-size: 1.3rem;
} */

/* Add popup styles for hover effect */
.card-popup {
  display: none;
  position: absolute;
  top: -37%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solid #1a3156;
  border-radius: 8px;
  padding: 20px;
  margin-top: 10px;
  width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.6;
  max-height: 400px;
  overflow-y: auto;
}

.card-popup p {
  margin: 0 0 12px 0;
  color: #1a3156;
}

.card-popup p:last-child {
  margin-bottom: 0;
}

.card-popup strong {
  font-size: 16px;
  color: #1a3156;
  display: block;
  margin-bottom: 8px;
}

.businesscase {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  color: #111;
  max-width: 700px;
  line-height: 1.6;
}

.businesscase ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 10px;
}

.businesscase li {
  margin-bottom: 6px;
}

.kpi-list {
  list-style-type: "➤ ";
  margin-top: 8px;
  margin-left: 30px;
  padding-left: 10px;
}

.kpi-list li {
  margin-bottom: 4px;
}

.service-item-numbers:hover .card-popup {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Scan cards */
/* .card-container {
      position: relative;
      cursor: pointer;
    }
    
    .card-popup {
      position: absolute;
      bottom: calc(100% + 15px);
      left: 50%;
      transform: translateX(-50%);
      background-color: #003d6b;
      color: white;
      padding: 20px;
      border-radius: 8px;
      width: 320px;
      max-height: 400px;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 1000;
      font-size: 0.9rem;
      line-height: 1.6;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .card-popup.active {
      opacity: 1;
      visibility: visible;
    }
    
    .card-popup::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 8px solid transparent;
      border-top-color: #003d6b;
    }

    .service-item-numbers {
      background: white;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 350px;
      padding: 1.5rem;
      border: 2px solid transparent;
    }

    .service-item-numbers:hover {
      border-color: #003d6b;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .service-item-numbers h4 {
      min-height: 3.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #003d6b;
      font-size: 1.1rem;
    }

    .service-item-numbers p {
      flex-grow: 1;
      display: flex;
      align-items: center;
      min-height: 3rem;
      color: #666;
      font-size: 0.95rem;
    }

    .service-icon-numbers {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 2rem;
    }

    .bg-orange {
      background-color: #ffa500;
    }

    .bg-gray {
      background-color: #c0c0c0;
    }

    .text-blue {
      color: #003d6b;
    }

    .section-title h1 {
      color: #003d6b;
      font-size: 2rem;
      font-weight: 700;
    }

    .section-title h5 {
      color: #666;
      font-weight: 400;
    }

    .underline {
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, #00bcd4, #2196f3);
      margin-top: 10px;
    } */

@media (max-width: 992px) {
  .flex-column-mob {
    display: flex;
    flex-direction: column !important;
    gap: 0 !important;
  }
}

@media (max-width: 992px) {
  .flex-column-md {
    flex-direction: column !important;
    gap: 15px !important;
  }
}

/* Implementatie  */
.info-section {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 1150px;
}

.info-section-table {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card-table {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  text-align: center;
}

.info-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  margin-bottom: 6px;
  font-size: 14px;
}

.info-card li span {
  color: #444;
  font-weight: 500;
  margin-left: 4px;
}

/* Info Card Table */
.info-section-table {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card-table {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.info-card-table h3 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  text-align: center;
}

.info-card-table p {
  /* color: #333; */
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.info-card-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card-table li {
  margin-bottom: 6px;
  font-size: 14px;
}

.info-card-table li span {
  /* color: #444; */
  font-weight: 500;
  margin-left: 4px;
}

/* Checklist with checkmarks */
.checklist li::before {
  content: "✔️ ";
  color: #007bff;
}

/* Team badges */
.team-list .badge {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #e9ecef;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 28px;
  margin-right: 8px;
  color: #333;
}

/* Ensure popups appear above other elements */
.service-item-numbers {
  position: relative;
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
  border-radius: 10px !important;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navHover);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
  font-size: 1.5rem;
}
.service-item .service-icon svg {
  transform: rotate(45deg);
  color: white;
  font-size: 1.5rem;
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

.fin-ai path {
  /* stroke: black; */
  stroke-width: 10px;
  fill: white;
}

/* Three cards */
.three-cards {
  max-width: 1270px;
  margin: 0 auto;
  display: grid;
  gap: 7rem;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between !important;
}

@media (max-width: 992px) {
  .three-cards {
    gap: 2rem;
  }
}

@media (max-width: 880px) {
  .three-cards {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center !important;
    margin: 0 auto;
  }
}

/* 1 per row on small screens (<568px) */
@media (max-width: 568px) {
  .three-cards {
    gap: 1rem;
    grid-template-columns: 1fr;
    justify-content: center !important;
    margin: 0 auto;
  }
}

/* Our Mission Card */

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  border-radius: 12px;
}

.mission-item {
  text-align: center;
  background: transparent;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-item-one {
  position: relative;
  height: 160px;
  padding: 15px 15px;
  transition: 0.5s;
}

.mission-item .service-icon-one {
  margin-bottom: 20px !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--navHover) !important;
  border-radius: 2px !important;
  transform: rotate(-45deg) !important;
}

.mission-item .service-icon-one i {
  transform: rotate(45deg) !important;
  font-size: 1.3rem !important;
}
.mission-item .service-icon-one svg {
  transform: rotate(45deg) !important;
  color: white !important;
  font-size: 1.3rem !important;
}

/* .service-icon-one {
  background-color: #f9b000; 
  width: 48px;
  height: 48px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.service-icon-one i {
  transform: rotate(-45deg);
  font-size: 22px;
} */

/* Responsive layout */
@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Why AI Cards */
.whyAI-pillars-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: left;
  padding: 15px 0;
}

.whyAI-pillars-card {
  background: #fff2d9;
  border-radius: 12px;
  padding: 24px;
  width: 340px;
  box-sizing: border-box;
  transition: 0.2s ease;
}

.whyAI-pillars-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.whyAI-pillars-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #feac16;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.whyAI-pillars-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.whyAI-pillars-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a3156;
}

.whyAI-pillars-text {
  color: #1a3156;
  line-height: 1.5;
  font-size: 14px;
}

/* Partnership Cards */

.service-item-tech {
  position: relative;
  width: 300px;
  height: 250px;
  padding: 0 30px;
  transition: 0.5s;
  border-radius: 10px !important;
}

/* Why AI Safety Cards */
.two-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.column {
  flex: 1;
  min-width: 300px;
}

.column h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1a3156;
  margin-bottom: 16px;
}

.column p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

/* Cards Section */
.safety-card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.safety-card {
  flex: 1;
  min-width: 280px;
  border: 2px solid #feac16;
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
  background: #ffffff;
  transition: 0.2s ease;
  border-left: 8px solid #feac16;
}

/* .safety-card:hover {
  border-color: #6c63ff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
} */

.safety-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a3156;
  margin-bottom: 12px;
}

.safety-card-text {
  font-size: 14px;
  color: #4b4b4b;
  line-height: 1.5;
}

/* Why AI Expertise Steps section */
.expertise-wrapper {
  width: 100%;
  max-width: var(--max-w);
}

.expertise-heading {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px 0;
  color: #1a3156;
}

.expertise-intro {
  color: var(--muted);
  max-width: 900px;
  margin-bottom: 34px;
  line-height: 1.6;
  font-size: 1rem;
}

/* ---------- Timeline Top labels (Zorg / Lokale overheden) ---------- */
.expertise-timeline {
  width: 100%;
  margin: 18px 0 6px;
}

.expertise-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.expertise-top-row .col {
  width: 33.333%;
  text-align: center;
}

.expertise-top-row .col.left {
  text-align: left;
  padding-left: 36px;
}
.expertise-top-row .col.center {
  text-align: center;
}
.expertise-top-row .col.right {
  text-align: right;
  padding-right: 36px;
}

.expertise-top-desc {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.expertise-top-desc .col {
  width: 33.333%;
  text-align: center;
}
.expertise-top-desc .col.left {
  text-align: center;
  padding-left: 36px;
}
.expertise-top-desc .col.center {
  text-align: center;
}
.expertise-top-desc .col.right {
  text-align: center;
  padding-right: 36px;
}

/* ---------- The line + markers ---------- */
.expertise-line-wrap {
  position: relative;
  height: 70px; /* space above and below line for ticks & labels */
  margin-bottom: 6px;
}

.expertise-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #1a3156;
  border-radius: 2px;
}

/* marker base */
.expertise-step {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 8px;
  background: var(--marker-bg);
  border: 1px solid var(--marker-border);
  font-weight: 700;
  color: #2a2a2a;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  z-index: 2;
  font-size: 0.95rem;
}

/* positions */
.expertise-step.step-1 {
  left: 18%;
  color: #1a3156;
}
.expertise-step.step-2 {
  left: 50%;
  color: #1a3156;
}
.expertise-step.step-3 {
  left: 82%;
  color: #1a3156;
}

/* vertical ticks: top for 1 & 3, bottom for 2 */
.expertise-step.step-1::before,
.expertise-step.step-3::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 28px; /* top tick length */
  top: -28px;
  background: #1a3156;
  border-radius: 2px;
}

.expertise-step.step-2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 28px; /* bottom tick length */
  bottom: -28px;
  background: #1a3156;
  border-radius: 2px;
}

/* small vertical guides above line for align (thin) */
.expertise-vertical-guide {
  position: absolute;
  top: calc(50% - 34px);
  left: 18%;
  height: 16px;
  width: 0;
}

/* ---------- Top/Bot text labels near timeline (Zorg / Onderwijs / Lokale) ---------- */
.expertise-timeline-bottom-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
}

.expertise-timeline-bottom-labels .col {
  width: 33.333%;
  font-size: 1rem;
  color: #222;
  text-align: center;
}
.expertise-timeline-bottom-desc {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
}
.expertise-timeline-bottom-desc .col {
  width: 33.333%;
  text-align: center;
}

/* ---------- Content & Stats (bottom two-column area) ---------- */
.expertise-bottom {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 28px;
  flex-wrap: wrap;
}

.expertise-left {
  flex: 2;
  min-width: 280px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.expertise-right {
  flex: 1;
  min-width: 220px;
  text-align: left;
  padding-top: 8px;
}

.expertise-stat {
  text-align: center;
  margin-bottom: 28px;
}

.expertise-stat-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}
.expertise-stat-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.expertise-stat-desc {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .expertise-top-row .col.left,
  .expertise-top-row .col.right,
  .expertise-top-desc .col.left,
  .expertise-top-desc .col.right,
  .expertise-timeline-bottom-labels .col,
  .expertise-timeline-bottom-desc .col {
    text-align: center;
    padding: 0;
    width: 33.333%;
  }

  .expertise-step.step-1 {
    left: 12%;
  }
  .expertise-step.step-3 {
    left: 88%;
  }
  .expertise-wrapper {
    padding: 0 12px;
  }

  .expertise-bottom {
    flex-direction: column-reverse;
  }
  .expertise-right {
    text-align: left;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .expertise-stat {
    flex: 0 0 45%;
  }
}

@media (max-width: 480px) {
  .expertise-step {
    width: 38px;
    height: 34px;
    font-size: 0.9rem;
  }
  .expertise-heading {
    font-size: 1.8rem;
  }
  .expertise-intro {
    font-size: 0.95rem;
  }
}

/* Data Security Flexible  */

.ds-flexible-wrapper {
  max-width: var(--max-w);
  width: 100%;
}

/* --- STYLED UNDERLINE FOR SPECIFIC WORDS --- */
.ds-flexible-underline {
  text-decoration: underline;
  text-decoration-color: var(--underline);
  text-decoration-thickness: 4px;
}

/* --- TITLE AND INTRO TEXT --- */
.ds-flexible-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
  color: #1a3156;
}

.ds-flexible-text {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6a75;
  margin-bottom: 40px;
  max-width: 1000px;
}

/* --- CARD GRID --- */
.ds-flexible-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.ds-flexible-card {
  /* background: #feac16; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px;

  padding: 28px;
  border-radius: 8px;
  color: #111;
}

.ds-flexible-card-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a3156;
}

.ds-flexible-card-desc {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
  .ds-flexible-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CONTAINER --- */
.ds-cloud-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  /* color: #6b6a75; */
}

/* --- TWO-COLUMN GRID --- */
.ds-cloud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.ds-cloud-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a3156;
}

.ds-cloud-text {
  font-size: 14px;
  line-height: 1.55;
  color: #6b6a75;
}

/* --- ORANGE FULL-WIDTH BOX --- */
.ds-cloud-warning-box {
  background: #d3d3d3;
  padding: 25px 30px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Icon circle */
.ds-cloud-warning-icon {
  /* width: 28px;
  height: 28px;
  border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

/* Text inside orange box */
.ds-cloud-warning-content {
  font-size: 16px;
  line-height: 1.55;
  color: #1a3156;
}

.ds-cloud-warning-content b {
  font-weight: 700;
}

.ds-cloud-warning-content p {
  font-weight: 700;
  font-size: 16px !important;
  margin-bottom: 3px;
}

/* AI Strategy Training */
.strategy-train-container {
  max-width: 1400px;
  margin: 0 auto;
}

.strategy-train-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 40px;
}

.strategy-train-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.strategy-train-card {
  background: #fff;
  border: 2px solid #feac16;
  border-radius: 8px;
  overflow: hidden;
  border-top: 15px solid #feac16;
}

.strategy-train-card-header {
  /* background: linear-gradient(135deg, #feac16 0%, #feac16 100%); */
  padding: 20px 25px;
  padding-bottom: 10px;
}

.strategy-train-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #1a3156;
}

.strategy-train-card-body {
  background: #fff;
}

.strategy-train-list {
  list-style: none;
}

.strategy-train-list-item {
  font-size: 14px;
  color: #6b6a75;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.strategy-train-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a3156;
  font-weight: bold;
  font-size: 16px;
}

.strategy-train-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 20px;
}

.strategy-train-info-box {
  background: #d3d3d3;
  border-radius: 8px;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.strategy-train-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.strategy-train-info-icon svg {
  width: 100%;
  height: 100%;
  fill: #666;
}

.strategy-train-info-content {
  flex: 1;
}

.strategy-train-info-label {
  font-size: 14px;
  font-weight: bold;
  color: #1a3156;
  display: inline;
}

.strategy-train-info-text {
  font-size: 14px;
  color: #6b6a75;
  display: inline;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .strategy-train-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strategy-train-grid {
    grid-template-columns: 1fr;
  }

  .strategy-train-card-header {
    padding: 15px 20px;
  }

  .strategy-train-card-body {
    padding: 20px;
  }

  .strategy-train-info-box {
    padding: 20px;
  }
  .strategy-train-card {
    margin-top: 0 !important;
  }
}

.strategy-two-container {
  max-width: 1400px;
  margin: 0 auto;
}

.strategy-two-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.strategy-two-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.strategy-two-grid-last {
  display: grid;
  grid-template-columns: 33%;
  justify-content: center;
  margin-bottom: 50px;
}

.strategy-two-card {
  background: #fff;
  border: 2px solid #feac16;
  border-radius: 8px;
  padding: 40px 25px 25px;
  position: relative;
  border-top: 8px solid #feac16;
}

.strategy-two-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #feac16;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #1a3156;
}

.strategy-two-card-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 15px;
}

.strategy-two-card-description {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
}

.strategy-two-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 25px;
}

.strategy-two-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.strategy-two-benefit-box {
  /* background: #d3d3d3; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
}

.strategy-two-benefit-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 12px;
}

.strategy-two-benefit-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
  margin-bottom: 0;
}

.strategy-two-info-banner {
  background: #d3d3d3;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1a3156;
}

.strategy-two-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.strategy-two-info-icon svg {
  width: 100%;
  height: 100%;
  /* stroke: #fff; */
  fill: #1a3156;
}

.strategy-two-info-text {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.strategy-two-section-subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-top: 50px;
  margin-bottom: 25px;
}

.strategy-two-duration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.strategy-two-governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.strategy-two-duration-box {
  /* background: #d3d3d3; */

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 8px;
  padding: 25px;
}

.strategy-two-duration-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 15px;
}

.strategy-two-duration-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
}

.strategy-two-deliverables-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 30px;
}

.strategy-two-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strategy-two-deliverable-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.strategy-two-deliverable-icon {
  width: 50px;
  height: 50px;
  background: #feac16;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strategy-two-deliverable-icon svg {
  width: 28px;
  height: 28px;
  stroke: #1a3156;
  stroke-width: 2;
  fill: none;
}

.strategy-two-deliverable-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .strategy-two-grid-top {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    margin-bottom: 20px;
  }

  .strategy-two-deliverables-grid {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }

  .strategy-two-grid-last {
    grid-template-columns: 1fr;
  }

  .strategy-two-card {
    margin-bottom: 20px;
  }
  .strategy-two-grid-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .strategy-two-grid-top,
  .strategy-two-grid-bottom,
  .strategy-two-grid-last,
  .strategy-two-benefits-grid,
  .strategy-two-duration-grid,
  .strategy-two-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .strategy-two-card {
    padding: 50px 20px 20px;
  }

  .strategy-two-governance-grid {
    grid-template-columns: 1fr;
  }

  .strategy-two-grid-top {
    margin-bottom: 20px;
  }
}

.strategy-four-container {
  max-width: 1400px;
  margin: 0 auto;
}

.strategy-four-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.strategy-four-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.strategy-four-item {
  position: relative;
}

.strategy-four-number {
  font-size: 14px;
  color: #6b6a75;
  margin-bottom: 8px;
  font-weight: 500;
}

.strategy-four-line {
  width: 100%;
  height: 3px;
  background: #feac16;
  margin-bottom: 20px;
}

.strategy-four-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 15px;
  line-height: 1.4;
}

.strategy-four-description {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.7;
}

.strategy-four-description + .strategy-four-description {
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .strategy-four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-four-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .strategy-four-grid,
  .strategy-four-grid-two {
    grid-template-columns: 1fr;
  }
}

.strategy-five-container {
  max-width: 1400px;
  margin: 0 auto;
}

.strategy-five-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.strategy-five-item {
  text-align: left;
}

.strategy-five-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  stroke: #feac16;
  /* stroke-width: 2; */
  fill: none;
}

.strategy-five-item-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 12px;
  line-height: 1.4;
}

.strategy-five-item-description {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
}

.strategy-five-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 20px;
}

.strategy-five-info-banner {
  background: #d3d3d3;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #1a3156;
  margin-bottom: 50px;
}

.strategy-five-banner-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.strategy-five-banner-icon svg {
  width: 100%;
  height: 100%;
  /* stroke: #fff; */
  fill: none;
  stroke-width: 2;
}

.strategy-five-banner-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.strategy-five-duration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.strategy-five-duration-box {
  /* background: #d3d3d3; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px;
  border-radius: 8px;
  padding: 25px;
}

.strategy-five-duration-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 12px;
}

.strategy-five-duration-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
}

.strategy-five-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strategy-five-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.strategy-five-number {
  width: 36px;
  height: 36px;
  background: #feac16;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  flex-shrink: 0;
}

.strategy-five-deliverable-text {
  font-size: 14px;
  color: #1a3156;
  font-weight: 600;
  line-height: 1.5;
  padding-top: 6px;
}

@media (max-width: 1024px) {
  .strategy-five-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-five-deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strategy-five-grid,
  .strategy-five-duration-grid,
  .strategy-five-deliverables-grid {
    grid-template-columns: 1fr;
  }
}

/* Our Platform */

.platform-org-container {
  max-width: 1400px;
  margin: 0 auto;
}

.platform-org-intro {
  font-size: 14px;
  color: #6b6a75;
  margin-bottom: 30px;
}

.platform-org-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.platform-org-benefits-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.platform-org-benefit-item {
  text-align: center;
}

.platform-org-benefit-number {
  font-size: 14px;
  color: #6b6a75;
  margin-bottom: 8px;
}

.platform-org-benefit-line {
  width: 100%;
  height: 3px;
  background: #feac16;
  margin-bottom: 15px;
}

.platform-org-benefit-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  line-height: 1.4;
}

.platform-org-info-box {
  background: #d3d3d3;
  border-radius: 8px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 50px;
}

.platform-org-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.platform-org-info-icon svg {
  width: 100%;
  height: 100%;
  /* stroke: #666; */
  fill: none;
  stroke-width: 2;
}

.platform-org-info-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  margin-top: 0.3rem;
}

.platform-org-info-text strong {
  font-weight: 700;
  color: #1a3156;
}

.platform-org-main-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 30px;
}

.platform-org-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.platform-org-card {
  background: #fff;
  border: 2px solid #feac16;
  border-radius: 8px;
  overflow: hidden;
  border-top: 23px solid #feac16;
}

.platform-org-card-header {
  /* background: #feac16; */
  padding: 20px 25px;
}

.platform-org-card-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 0;
}

.platform-org-card-body {
  padding: 0 25px;
  background: #fff;
}

.platform-org-card-subtitle {
  font-size: 14px;
  color: #6b6a75;
  margin-bottom: 15px;
  line-height: 1.6;
}

.platform-org-list {
  list-style: none;
  padding-left: 0;
}

.platform-org-list-item {
  font-size: 14px;
  color: #6b6a75;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.platform-org-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a3156;
  font-weight: bold;
  font-size: 16px;
}

.platform-org-footer-box {
  background: #d3d3d3;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.platform-org-footer-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.platform-org-footer-icon svg {
  width: 100%;
  height: 100%;
  /* stroke: #666; */
  fill: none;
  stroke-width: 2;
}

.platform-org-footer-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0.4rem;
}

.platform-org-footer-text strong {
  font-weight: 700;
  color: #1a3156;
}

@media (max-width: 1024px) {
  .platform-org-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-org-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .platform-org-benefits-grid,
  .platform-org-benefits-grid-two,
  .platform-org-cards-grid {
    grid-template-columns: 1fr;
  }

  .platform-org-main-title {
    margin-bottom: 15px;
  }
}

.platform-innov-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.platform-innov-content {
  padding-right: 20px;
}

.platform-innov-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 25px;
  line-height: 1.3;
}

.platform-innov-description {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.7;
  margin-bottom: 30px;
}

.platform-innov-button {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #feac16;
  border-radius: 6px;
  color: #feac16;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.platform-innov-button:hover {
  background: #feac16;
  color: #fff;
}

.platform-innov-image-wrapper {
  position: relative;
  width: 100%;
}

.platform-innov-image {
  width: 500px;
  height: 300px;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .platform-innov-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .platform-innov-content {
    padding-right: 0;
  }

  .platform-innov-image-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .platform-innov-title {
    font-size: 18px;
  }

  .platform-innov-button {
    padding: 10px 24px;
  }

  .platform-innov-image {
    width: 100%;
    height: 250px;
  }
}

.platform-app-container {
  max-width: 1400px;
  margin: 0 auto;
}

.platform-app-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.platform-app-card {
  background: #fff;
  border: 2px solid #feac16;
  border-radius: 8px;
  overflow: hidden;
  border-top: 20px solid #feac16;
}

.platform-app-card-header {
  /* background: linear-gradient(135deg, #ffb84d 0%, #feac16 100%); */
  padding: 20px 25px;
  padding-bottom: 0;
}

.platform-app-card-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 0;
}

.platform-app-card-body {
  padding: 25px;
  background: #fff;
}

.platform-app-card-description {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
  margin-bottom: 0;
}

.platform-app-section-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 30px;
}

.platform-app-benefits-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.platform-app-benefit-box {
  background: #d3d3d3;
  border-radius: 8px;
  padding: 25px 30px;
}

.platform-app-benefit-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.7;
}

.platform-app-benefit-text strong {
  font-weight: 700;
  color: #1a3156;
}

.platform-app-cta-text {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.6;
  margin-bottom: 25px;
}

.platform-app-button {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #feac16;
  border-radius: 6px;
  color: #feac16;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.platform-app-button:hover {
  background: #feac16;
  color: #fff;
}

@media (max-width: 1024px) {
  .platform-app-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-app-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .platform-app-cards-grid,
  .platform-app-benefits-grid {
    grid-template-columns: 1fr;
  }

  .platform-app-card-header {
    padding: 15px 20px;
  }

  .platform-app-card-body {
    padding: 20px;
  }

  .platform-app-benefit-box {
    padding: 20px;
  }

  .platform-app-cards-grid {
    margin-bottom: 25px;
  }
}

/* AI Platform  */
.ai-plat-hog-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ai-plat-hog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-plat-hog-card {
  /* background: linear-gradient(135deg, #ffb84d 0%, #feac16 100%); */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px;
  border-radius: 12px;
  padding: 20px;
}

.ai-plat-hog-card-title {
  font-size: 16px;
  font-weight: bold;
  color: #1a3156;
  margin-bottom: 15px;
  line-height: 1.3;
}

.ai-plat-hog-card-description {
  font-size: 14px;
  color: #6b6a75;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .ai-plat-hog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-plat-hog-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact  */
@media (max-width: 768px) {
  .contact-mob {
    /* padding-right: calc(var(--bs-gutter-x) / 2) !important; */
    padding-left: 0.75rem !important;
    width: 100% !important;
  }

  .font-xs-mail {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .mail-lg {
    padding-left: 0.75rem !important;
  }
}

/* .service-item-tech .service-icon-tech {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.service-item-tech .service-icon-tech svg {
  color: white;
  font-size: 1.5rem;
} */
.service-item-tech .service-icon-tech {
  margin-bottom: 20px !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--navHover) !important;
  border-radius: 2px !important;
  transform: rotate(-45deg) !important;
}

.service-item-tech .service-icon-tech svg {
  transform: rotate(45deg) !important;
  color: white !important;
  font-size: 1.3rem !important;
}

@media (min-width: 992px) {
  .flex-lg-wrap {
    flex-wrap: nowrap !important;
  }
}

/* Team cards */
.service-item-team {
  position: relative !important;
  transition: 0.5s;
  overflow: visible !important;
  padding-bottom: 30px !important; /* Add space at bottom for the button */
}

.service-item-team a.btn {
  position: absolute !important;
  width: 60px;
  height: 45px;
  bottom: -30px !important; /* Position half outside the card */
  left: 50%;
  transform: translateX(-50%); /* Better centering than margin-left */
  opacity: 0;
  transition: all 0.3s ease;
}

.service-item-team:hover a.btn {
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/* Team Profiles */

.team-item {
  /* background-color: #f5f9ff; 
  border-radius: 12px; */
  overflow: hidden;
  max-width: 400px; /* keeps layout consistent */
  margin: 0 auto; /* centers the whole card */
}

.team-item .team-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1; /* keeps square shape and scales responsively */
  max-width: 400px; /* optional: limits size on large screens */
  margin: 0 auto; /* centers images */
}

.team-item .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop evenly instead of stretching */
  object-position: center top; /* show upper body (not zoomed into face) */
  transition: transform 0.4s ease;
}

/* Responsive layout tweaks */
@media (max-width: 1200px) {
  .team-item {
    max-width: 350px;
  }
  .team-item .team-img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .team-item {
    max-width: 350px;
  }
  .team-item .team-img {
    max-width: 350px;
  }
  .row.g-5 {
    justify-content: center;
    gap: 2rem;
  }
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 60px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

.header-app {
  background: #0077ff;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.container-app {
  max-width: 900px;
  margin: 2rem auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.h2-app {
  color: #0077ff;
  margin-bottom: 10px;
}

.p-app {
  margin-bottom: 20px;
  color: #555;
}

.btn-app {
  background: #0077ff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}
.btn-app:hover {
  background: #005bb5;
}

/* Modal */
.modal-app {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content-app {
  background: #fff;
  width: 95%;
  max-width: 800px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-app {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

.iframe-app {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  display: flex; /* ✅ make icon and text side-by-side */
  align-items: flex-start;
  /* background: linear-gradient(145deg, #1c1738, #0f0c25); */
  background: #cacad4;
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.value-card .icon {
  /* background: rgba(255, 255, 255, 0.1); */
  background: #feac16;
  width: 60px; /* ✅ consistent icon box size */
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0; /* ✅ don’t let icon shrink */
  margin-right: 1.5rem;
}

.value-card .text {
  flex: 1;
}

.value-card h3 {
  /* font-size: 1.2rem; */
  font-size: 14px;
  /* color: #00a0e3; */
  color: #1a3156;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.95rem;
  /* color: #ddd; */
  color: #1a3156;
  line-height: 1.6;
}

/* ✅ Responsive: stack cards on mobile */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    flex-direction: column;
    text-align: left;
  }

  .value-card .icon {
    margin-bottom: 1rem;
  }
}

/* Blogs */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Single Blog */

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #f8fbff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Image */
.blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Content Area */
.blog-content {
  padding: 20px;
  height: 315px; /* ✅ fixed height to align all cards */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Blog Title */
.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1b2a;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3rem; /* Ensures consistent height */
}

/* Excerpt */
.blog-excerpt {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* ✅ limits description to 5 lines */
  -webkit-box-orient: vertical;
}

/* Read More */
.read-more {
  margin-top: 10px;
  color: #0088cc;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #005f99;
}

/* Meta info */
.blog-meta {
  display: flex;
  gap: 15px;
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.blog-detail-body h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.blog-detail-body h4.small-heading {
  font-size: 1rem; /* same as normal text */
  font-weight: 700; /* bold */
  margin-top: 1rem;
  color: #1a3156;
}

.blog-detail-body p {
  font-size: 1rem;
  line-height: 1.7;
}

.blog-detail-body ul {
  list-style: none;
  padding-left: 1.5rem;
}

.blog-detail-body ul li.custom-bullet::before {
  content: "•";
  color: #06a3da !important;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.blog-detail-body ul li {
  margin-bottom: 0.65rem;
  font-size: 14px;
}

.inline-link {
  color: #1e3862;
  text-decoration: underline;
}
.inline-link:hover {
  color: #152846;
  cursor: pointer;
}

/* --- Title and Subtitle --- */
.blog-detail-title {
  font-weight: 700;
  font-size: 24px;
  color: #1a3156;
}

.blog-detail-subtitle {
  font-weight: 500;
  font-size: 1.25rem;
  color: #555;
  font-style: italic;
}

/* --- Sanity Body Styles --- */
.blog-section-heading {
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #0c2340;
}

.blog-subheading {
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #102a43;
}

.blog-paragraph {
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.blog-quote {
  font-style: italic;
  font-weight: 500;
  color: #444;
  border-left: 4px solid #06a3da;
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.blog-list-item {
  margin-left: 1.5rem;
  list-style: disc;
  font-weight: 500;
  color: #333;
  line-height: 1.7;
}

/* ==============================
   🗨️ COMMENT SECTION STYLING
============================== */
#comments-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.comment-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid #e1e1e1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.comment-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.comment-box strong {
  color: #1a3156; /* Bootstrap primary blue */
  font-size: 1rem;
}

.comment-box p {
  margin: 0.4rem 0;
  font-size: 14px;
  color: #333;
}

.comment-box small {
  color: #6c757d;
  font-size: 0.8rem;
}

/* ==============================
   📝 COMMENT FORM STYLING
============================== */
#comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #ffffff;
  border: 1px solid #e2e6ea;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#comment-form input,
#comment-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: inherit;
  background: #fdfdfd;
}

#comment-form input:focus,
#comment-form textarea:focus {
  border-color: #1a3156;
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

#comment-form textarea {
  min-height: 100px;
  resize: vertical;
}

#comment-form button {
  align-self: flex-start;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 8px;
  background: #feac16;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

#comment-form button:hover {
  background: #febb41;
  transform: translateY(-1px);
}

/* ==============================
   💻 RESPONSIVE TWEAKS
============================== */
@media (max-width: 576px) {
  #comment-form {
    padding: 1rem;
  }

  #comment-form button {
    width: 100%;
  }
}

/* Mirror Effect */

/* Mirror layout only inside this section */
.mirror-section .left-side .feature-item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* reverse icon & text order */
  text-align: right;
  gap: 15px;
}

.mirror-section .left-side .feature-item .bg-orange {
  margin-bottom: 0 !important;
}

.mirror-section .left-side .feature-item h4 {
  margin: 0;
  flex: 1;
}

/* Keep right side normal */
.mirror-section .right-side .feature-item {
  display: flex;
  align-items: center;
}

.mirror-section .right-side .feature-item h4 {
  margin: 0;
  flex: 1;
}

/* Apply only inside this section */
.mirror-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Left side: align right */
.mirror-section .left-side .feature-item {
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* Right side: align left */
.mirror-section .right-side .feature-item {
  align-items: flex-start;
  text-align: left;
}

/* Optional: spacing consistency */
.mirror-section .feature-item h4 {
  margin: 8px 0 0;
}

/* Recent Posts & Categories */
.section-title2 {
  font-size: 20px;
  font-weight: 700;
  color: #002147;
  margin-bottom: 10px;
  /* border-bottom: 3px solid #ff9c07; */
  display: inline-block;
  padding-bottom: 5px;
}

.categories .category-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background-color: #f8fbff;
  padding: 10px;
  border-radius: 6px;
  transition: 0.3s;
  padding: 1rem;
}

.categories .category-item:hover {
  background-color: #eaf3ff;
}

.categories .category-item i {
  color: #ff9c07;
  margin-right: 10px;
}

.recent-post-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.recent-post-item img {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 10px;
}

.recent-post-content {
  flex: 1;
}

.recent-post-title {
  font-size: 14px;
  color: #002147;
  font-weight: 600;
  line-height: 1.4em;
  height: 2.8em; /* 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recent-post-content small {
  color: #666;
  font-size: 12px;
}

/* Pagination */
#pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-btn {
  background: #f0f0f0;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover {
  background: #ff9900;
  color: #fff;
}

.page-btn.active {
  background: #06a3da;
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
