@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --primary-color: #f6144f;
  --text-dark: #121212;
  --text-dark-2: #111111;
  --text-gray: #4a4a4a;
  --text-gray-2: #6d7691;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(180deg, #fbf7fb 0%, #ededed 50%, #fcf6fb 100%);
  --font-source: "Source Sans Pro", sans-serif;
}

/* Header Menu */
.siam-header {
  position: fixed !important;
  z-index: 999 !important;
  transition: 0.3s all !important;
}
.siam-header.scrolled-down {
  top: -100% !important;
  transition: 0.3s all !important;
}
.header-menu-wrapper {
  width: 100%;
  position: relative;
  z-index: 1000;
  font-family: var(--font-source);
}
.menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 1.25rem 0;
}
.menu-item {
  position: relative;
}
.menu-item > a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
}
.menu-item > a:hover {
  color: var(--primary-color);
}
.menu-has-submenu > a {
  img {
    width: 12px;
    height: 12px;
    transition: transform 0.5s ease;
  }
  &:hover img {
    transition: transform 0.5s ease;
    transform: rotate(180deg);
  }
}
.sub-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-42.1%, 0%);
  margin-top: 1.25rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    margin-top 0.3s ease;
  width: 100%;
  min-width: 1208px;
  z-index: 999;
  border: 1px solid #dbdbdb;
  box-shadow: 0px -6px 54px 0px #0000000f;
}
.sub-menu-wrapper[data-id="industries"] {
  transform: translate(-55.3%, 0%);
}
.menu-has-submenu:hover .sub-menu-wrapper {
  opacity: 1;
  visibility: visible;
  margin-top: 2rem;
}
.sub-menu-flex-wrapper {
  display: flex;
  gap: 3rem;
  padding: 1.5rem;
}
.sub-menu-col {
  flex: 1;
}
.left-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sub-menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
  grid-auto-flow: row;
  gap: 30px 80px;
  overflow-x: auto;
}
.sub-menu-item a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text-dark-2);
  &:hover {
    color: var(--primary-color);
  }
}
.sub-menu-item img {
  width: 28px !important;
  height: 28px !important;
}
.sub-menu-text-wrapper {
  border-radius: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f7f6f6;
}
.sub-menu-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
.sub-menu-text-wrapper .sub-menu-text h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  span {
    color: var(--primary-color);
  }
}
.sub-menu-text-wrapper .sub-menu-text p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 24px;
  color: var(--text-dark);
}
.sub-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  background: var(--primary-color);
  rotate: 0deg;
  img {
    transition: 0.5s all;
    transform: translate(0, 0) scale(1);
  }
  &:hover {
    img {
      transition: 0.5s all;
      transform: translate(7px, -7px) scale(0.85);
    }
  }
}
.right-col {
  background: url(/wp-content/uploads/2025/12/Frame-2147223443.png) no-repeat
    100% / cover;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 39.5%;
}
.right-col .right-col-wrapper {
  text-align: left;
  position: relative;
  z-index: 1;
}
.right-col .right-col-wrapper img {
  width: 40px;
  height: 40px;
}
.right-col .right-col-wrapper h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-style: normal;
}
.right-col .right-col-wrapper p {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 24px;
}
.mobile-menu-wrapper {
  display: none;
}

/* Home Page */
.section_heading {
  .elementor-heading-title span {
    font-weight: 600;
    color: var(--primary-color);
  }
}
.post_divider {
  .elementor-loop-container .type-post {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 100%;
      height: 1px;
      border-bottom: 1px solid #e7e7e7;
    }
  }
}
@media screen and (min-width: 768px) {
  .home .home-logo-slider {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 27px;
      width: 200px;
      height: 219px;
      background: url(/wp-content/uploads/2026/02/Right-blur.png) no-repeat;
      z-index: 999;
    }
  }
  .home-logo-slider {
    overflow: hidden;
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      transform: translate(-20%, -8%);
      width: 219px;
      height: 219px;
      background: url(/wp-content/uploads/2026/02/left-blur-ss.png) no-repeat;
      z-index: 999;
    }
    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      transform: translate(55%, 0%);
      width: 255px;
      height: 255px;
      background: url(/wp-content/uploads/2026/02/right-circle-blur.png)
        no-repeat;
      z-index: 999;
    }
  }
}
.home-logo-slider {
  overflow: hidden;
  position: relative !important;
  .swiper {
    overflow: visible !important;
  }
  .elementor-image-carousel-wrapper {
    /* display: inline-block !important; */
    position: relative;
  }
  /* .elementor-image-carousel-wrapper:last-child {
    position: absolute;
    top: 0;
    left: 0;
  } */
  .elementor-image-carousel {
    animation: slides 35s linear infinite;
    will-change: transform;
    img {
      filter: grayscale(1);
      width: 200px;
      mix-blend-mode: multiply;
      height: 108px;
      object-position: center;
      object-fit: contain;
    }
  }
  .swiper-slide-duplicate {
    display: none !important;
  }

  &:hover .elementor-image-carousel {
    animation-play-state: paused;
  }
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.built_icon {
  .elementor-button:hover {
    svg {
      rotate: 38deg;
    }
    rect {
      fill: var(--white);
    }
    path {
      stroke: var(--primary-color);
    }
  }
  .elementor-button-content-wrapper {
    align-items: center;
  }
  .elementor-button-icon {
    width: 43px;
    height: 43px;
    svg {
      width: 100%;
      height: 100%;
    }
  }
}
.blog_container {
  &:hover {
    .desktop_arrow {
      display: block;
    }
  }
  .desktop_arrow {
    display: none;
  }
}
span.span-reading-time.rt-reading-time {
  box-shadow: 0px 1px 0px 0px #0000000a;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border: 1px solid #00000014;
  border-radius: 20px;
  font-family: var(--font-source);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: var(--text-dark);
  text-transform: uppercase;
  padding: 6px 23px;
}
/* Home Page - Case Study */
.case-study-container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  .case-study-tablist {
    width: 100%;
    max-width: 980px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    .case-study-tab {
      flex: 1;
      width: 180px;
      max-width: 180px;
      cursor: pointer;
      .case-study-tab-link {
        font-family: var(--font-source);
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0px;
        text-align: center;
        color: #6d7691;
        width: 100%;
        display: block;
        padding-bottom: 10px;
      }
      .border-bottom {
        border-bottom: 7px solid #dbdbdb;
        height: 7px;
        border-radius: 10px;
      }
      &.active .case-study-tab-link,
      &:hover .case-study-tab-link {
        font-family: var(--font-source);
        font-weight: 500;
        color: var(--text-dark);
      }
      &.active[data-category="health-bot-360"] .border-bottom,
      &:hover[data-category="health-bot-360"] .border-bottom {
        border-bottom: 7px solid #355fd3;
      }
      &.active[data-category="sukoon"] .border-bottom,
      &:hover[data-category="sukoon"] .border-bottom {
        border-bottom: 7px solid #13443e;
      }
      &.active[data-category="kauvery"] .border-bottom,
      &:hover[data-category="kauvery"] .border-bottom {
        border-bottom: 7px solid #972168;
      }
      &.active[data-category="nws"] .border-bottom,
      &:hover[data-category="nws"] .border-bottom {
        border-bottom: 7px solid #d25151;
      }
      &.active[data-category="beato"] .border-bottom,
      &:hover[data-category="beato"] .border-bottom {
        border-bottom: 7px solid #139789;
      }
    }
  }
  .tab-active-container {
    display: none;
    flex-wrap: wrap;
    gap: 15px;
    &.active {
      display: flex;
    }
    .tab-left-col,
    .tab-right-col {
      border-radius: 24px;
    }
    .tab-left-col {
      background: var(--white);
      box-shadow: 0px 1px 1px 2px #ffffff29 inset;
      flex: 0 0 46.7%;
      padding: 26px 16px;
      .tab-img-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        a.tab-redirection {
          border: 1px solid #e7e7e7;
          background: #ffffff80;
          font-family: var(--font-source);
          font-weight: 400;
          font-size: 16px;
          line-height: 20px;
          color: var(--text-dark);
          padding: 19px 21px;
          border-radius: 999px;
          &:hover {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
          }
        }
      }
      .tab-detail-wrapper {
        .title {
          font-family: var(--font-source);
          font-weight: 400;
          font-style: Italic;
          font-size: 32px;
          line-height: 38.4px;
          letter-spacing: 0.43px;
          color: var(--text-dark);
          margin: 16px 0;
          strong {
            color: var(--primary-color);
            font-weight: 600;
          }
        }
        .para {
          font-family: var(--font-source);
          font-weight: 400;
          font-size: 18px;
          line-height: 32px;
          letter-spacing: 0.43px;
          color: var(--text-dark);
          margin: 0 0 16px;
        }
      }
      .detail-flex-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 35px;
        .detail-box {
          border: 1px solid #e7e7e7;
          border-radius: 8px;
          padding: 9px 11px;
          h4 {
            font-family: var(--font-source);
            font-weight: 600;
            font-size: 32px;
            line-height: 100%;
            color: var(--text-dark);
            margin: 0 0 10px;
          }
          p {
            font-family: var(--font-source);
            font-weight: 300;
            font-size: 16px;
            line-height: 20.8px;
            color: var(--text-dark);
            margin: 0;
          }
        }
      }
    }
    .tab-right-col {
      border: 1px solid #ffffff5e !important;
      /* box-shadow: 0px 1px 1px 2px #ffffff29 inset; */
      background:
        linear-gradient(
          0deg,
          rgba(255, 255, 255, 0.34),
          rgba(255, 255, 255, 0.34)
        ),
        linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.16) 0%,
          rgba(255, 255, 255, 0.25) 100%
        );
      flex: 0 0 51.5%;
      display: flex;
      align-items: end;
    }
  }
}
.case-study-mobile-container {
  display: none;
}
/* Home Page - Testimonial  */
.testimonial-container {
  width: 100%;
  /* max-width: 1440px;
  margin: 0 auto; */
  .testimonial-slider {
    margin: 0;
    .slick-track {
      display: flex;
      align-items: center;
      height: 510px;
    }
    .slick-dots {
      display: none !important;
    }
    .testimonial-content-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      margin: 0 12px;
      width: 580px;
      .testimonial-content-wrapper-container {
        border-radius: 24px;
        position: relative;
        padding: 44px 13px 20px;
        background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
        opacity: 1;
        height: 60%;
        width: inherit;
        flex-shrink: 0;
        /* ADD THIS: GPU acceleration */
        transform: translate3d(0, 0, 0);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        flex-direction: row;
        float: none !important;
        backface-visibility: hidden;
        transform: translateZ(0);
        .testimonial-image-wrapper {
          width: 67.5px;
          height: 67.5px;
          position: absolute;
          z-index: 99;
          top: 0;
          left: 50%;
          transform: translate(-50%, -50%);
          img {
            width: 100%;
            height: 100%;
            border-radius: 100%;
            object-fit: cover;
          }
        }
        .testimonial-para-wrapper {
          margin-bottom: 20px;
          p {
            font-family: var(--font-source);
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            text-align: center;
            color: var(--text-dark);
            margin: 0;
          }
        }
        .testimonial-detail-wrapper {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          gap: 10px;
          .name {
            font-family: var(--font-source);
            font-weight: 600;
            font-size: 18px;
            line-height: 100%;
            color: var(--text-dark);
            margin: 0;
          }
          .designation {
            font-family: var(--font-source);
            font-weight: 300;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 0px;
            color: var(--text-dark);
            margin: 0;
          }
        }
      }
      /* Center slide styling */
      &.slick-center {
        width: 580px;
        .testimonial-content-wrapper-container {
          opacity: 1;
          width: inherit;
          background: var(--white);
          position: relative;
          padding: 70px 15px 20px;
          height: 78%;
          .testimonial-image-wrapper {
            width: 90px;
            height: 90px;
          }
          .testimonial-para-wrapper {
            p {
              font-size: 16px;
              line-height: 26px;
            }
          }
          .testimonial-detail-wrapper {
            .name {
              font-size: 22px;
              line-height: 100%;
            }
            .designation {
              font-size: 14px;
              line-height: 100%;
            }
          }
          &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            border-radius: 24px 24px 0 0;
            padding: 0.9px 1px;
            background: linear-gradient(
              180deg,
              #f6144f 0%,
              rgba(196, 227, 255, 0) 100%
            );
            -webkit-mask:
              linear-gradient(#fff 0 0) content-box,
              linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 1;
          }
        }
      }
    }
  }
  .testimonial-slider-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
    .testimonial-prev-button,
    .testimonial-next-button {
      width: 54px;
      height: 54px;
      border-radius: 100%;
      background-color: var(--white);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      &:hover {
        border: 1px solid var(--primary-color);
      }
    }
    .testimonial-prev-button img,
    .testimonial-next-button img {
      cursor: pointer;
      transition: opacity 0.3s ease;
      width: 18px;
      height: 18px;
      /* &.slick-disabled {
        pointer-events: none;
        opacity: 0.5;
      } */
    }
  }
}
.testimonial-slider.is-animating .testimonial-content-wrapper {
  transition: none !important;
}

.testimonial-slider-buttons-mobile {
  display: none;
}

/* Home Page - Solutions Section */
.solutions-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;

  .solutions-desktop-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 22px;
    min-height: 100vh;

    .solutions-list-tab {
      list-style: none;
      margin: 0;
      padding: 0;
      position: sticky;
      top: 30px;
      align-self: start;
      height: fit-content;
      > li:has(+ li.active) {
        border-bottom: 2px solid transparent;
      }
      li {
        font-family: var(--font-source);
        font-size: 16px;
        line-height: 24px;
        color: var(--text-gray-2);
        padding: 30px 0;
        cursor: pointer;
        transition: all 0.3s ease;
        padding-left: 29px;
        position: relative;
        letter-spacing: 1px;
        border-bottom: 2px solid #ededed;
        &::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 10px;
          transform: translateY(-50%);
          width: 12px;
          height: 12px;
          background: transparent;
          border-radius: 2px;
          transition: 0.3s all;
        }
        &:hover {
          color: var(--text-dark);
        }

        &.active {
          color: var(--primary-color);
          background: var(--white);
          font-weight: 600;
          font-family: var(--font-source);
          font-size: 18px;
          line-height: 24px;
          letter-spacing: 1px;
          border-radius: 12px;
          border-bottom: 2px solid transparent;
          &::before {
            background: var(--primary-color);
            transition: 0.3s all;
          }
        }
      }
    }

    .solutions-scroll-wrapper {
      position: relative;

      .solutions-detail-wrapper {
        /* Sections stack naturally with viewport height */
        min-height: 630px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 20px;
        padding: 20px;
        background:
          linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.34),
            rgba(255, 255, 255, 0.34)
          ),
          linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.25) 100%
          );
        border: 1px solid #ffffff5e;
        box-shadow: 0px 1px 1px 2px #ffffff29 inset;
        border-radius: 24px;

        &:last-child {
          margin-bottom: 0;
        }

        .solution-detail-flex-wrapper {
          display: flex;
          flex-wrap: wrap;
          margin-bottom: 30px;
          transition: var(--transition);

          .solution-details {
            flex: 1;

            h4 {
              font-family: var(--font-source);
              font-weight: 600;
              font-size: 24px;
              line-height: 100%;
              color: var(--text-dark);
              margin: 0 0 20px 0;
            }

            p {
              font-family: var(--font-source);
              font-size: 18px;
              line-height: 30px;
              color: var(--text-dark);
              margin: 0;
            }
          }

          .solutions-btn-wrapper {
            a {
              display: inline-block;
              font-family: var(--font-source);
              font-weight: 400;
              font-size: 16px;
              line-height: 20px;
              color: var(--white);
              background: var(--white);
              padding: 18.5px 26px;
              border-radius: 999px;
              text-decoration: none;
              border: 1px solid #e7e7e7;
              color: var(--text-dark);

              &:hover {
                border: 1px solid var(--primary-color);
                color: var(--primary-color);
              }
            }
          }
        }

        .solutions-image-wrapper {
          width: 100%;
          text-align: center;

          img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
          }
        }
      }
    }
  }
}

.solutions-mobile-container {
  display: none;
}
.industries_carousel {
  > .swiper-pointer-events {
    padding-left: 115px;
  }
  .industries_container {
    height: 100% !important;
    .industries_heading {
      height: 48px;
    }
  }
  .swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
    display: none;
  }
  .elementor-swiper-button {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 112% !important;
    &:hover {
      border: 1px solid var(--primary-color) !important;
    }
    &.elementor-swiper-button-prev {
      left: 45% !important;
    }
    &.elementor-swiper-button-next {
      right: 45% !important;
    }
  }
}

.btn-arrow-hover span.elementor-button-text {
  align-items: center;
  display: flex;
}
.btn-arrow-hover .elementor-button-icon svg {
  opacity: 0;
}
/* Default arrow icon */
.btn-arrow-hover .elementor-button-icon {
  background-image: url("https://siam.underdev.in/wp-content/uploads/2025/12/Background.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 28px;
  height: 28px;
  transition: background-image 0.3s ease;
}
/* Hover → straight line */
.btn-arrow-hover:hover .elementor-button-icon {
  background-image: url("https://siam.underdev.in/wp-content/uploads/2025/12/Background-2.svg");
}
.footer-social-icon {
  .elementor-icon {
    &:hover {
      svg path {
        fill: var(--primary-color);
      }
    }
    &:focus {
      animation: none !important;
      transition: unset !important;
      svg path {
        fill: inherit;
      }
    }
  }
}

/* Home Page - Industries Section */
.industries-section {
  .industries-list {
    margin: 0;
    .slick-list {
      padding-left: 15px;
    }
    .slick-dots {
      display: none !important;
    }
    .industry-item {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-radius: 24px;
      background:
        linear-gradient(
          0deg,
          rgba(255, 255, 255, 0.34),
          rgba(255, 255, 255, 0.34)
        ),
        linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.16) 0%,
          rgba(255, 255, 255, 0.24) 100%
        );
      border: 1px solid #ffffff5e;
      box-shadow: 0px 1px 1px 2px #ffffff29 inset;
      margin: 0 24px;
      .industry-image {
        height: 288px;
        border-radius: 24px 24px 0 0;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: inherit;
        }
      }
      .industry-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 12px 15px;
        margin-bottom: 15px;
        gap: 35px;
        .industry-card-topcontent {
          .industry-title {
            font-family: var(--font-source);
            font-weight: 400;
            font-size: 24px;
            line-height: 28.8px;
            color: var(--text-dark);
            font-style: normal;
            letter-spacing: 0;
            margin: 0 0 6px;
          }
          .industry-desc {
            font-family: var(--font-source);
            font-weight: 400;
            font-size: 18px;
            line-height: 24px;
            color: var(--text-dark);
            margin: 0;
            height: 48px;
          }
        }
        .industry-card-bottomcontent {
          .industry-btn {
            font-family: var(--font-source);
            font-weight: 400;
            font-size: 16px;
            line-height: 20px;
            padding: 19px 27px;
            border: 1px solid #e7e7e7;
            color: var(--text-dark);
            background-color: var(--white);
            border-radius: 999px;
            &:hover {
              color: var(--primary-color);
              border: 1px solid var(--primary-color);
            }
          }
        }
      }
    }
  }
  .industries-slider-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 27px;
    .industries-prev-button,
    .industries-next-button {
      width: 54px;
      height: 54px;
      border-radius: 100%;
      background-color: var(--white);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      &:hover {
        border: 1px solid var(--primary-color);
      }
    }
  }
  .industries-slider-buttons-mobile {
    display: none;
  }
}

/* Contact Page */
.siam-contact-form {
  .elementor-form {
    textarea {
      height: 108px;
      resize: none;
    }
    input {
      height: 52px;
    }
  }
  .elementor-mark-required .elementor-field-label:after {
    padding-inline-start: 0 !important;
  }
}
.siam-contact-form .elementor-message.elementor-message-danger {
  font-size: 15px;
  line-height: normal;
  margin: 10px 0 0;
  padding-left: 0px;
  position: relative;
  &:before {
    /* content: "X";
    font-weight: bolder;
    margin-top: 0;
    font-family: "Winky Rough", sans-serif;
    position: absolute;
    left: 0;
    top: 0; */
    display: none;
  }
}
.siam-contact-form
  .elementor-message.elementor-message-danger.offline-error
  + .elementor-message-danger {
  display: none;
}
.contact-icon-box {
  .elementor-icon-box-icon {
    .elementor-icon {
      border-radius: 100%;
      backdrop-filter: blur(0.534351110458374px);
      box-shadow: 2.67px 2.67px 5.34px 0px #ffffffcc inset;
      background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
      width: 70px;
      height: 70px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }
  }
  .elementor-icon-box-content {
    .elementor-icon-box-description {
      a {
        color: #3e3f66 !important;
        &:hover {
          color: var(--primary-color) !important;
        }
      }
    }
  }
}
.location-icon-box {
  .elementor-icon-box-icon {
    .elementor-icon {
      border-radius: 100%;
      backdrop-filter: blur(0.3206106722354889px);
      box-shadow: 1.6px 1.6px 3.21px 0px #ffffffcc inset;
      background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
      width: 42px;
      height: 42px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }
  }
}
.our-locations-border {
  > .elementor-element:not(:last-child) {
    position: relative !important;
    &::after {
      content: "";
      position: absolute;
      top: 0;
      right: 45px;
      width: 2px;
      height: 100%;
      background: linear-gradient(
        180deg,
        #fbf7fb 0%,
        #ededed 50%,
        #fcf6fb 100%
      );
    }
  }
  .elementor-icon {
    filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.25));
    background-color: transparent;
    svg {
      height: 17px;
    }
  }
}

/* Solutions Page */
.solutions_problemsolve_box {
  figure.elementor-image-box-img {
    width: 65px;
    height: 65px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    backdrop-filter: blur(0.4961831867694855px);
    box-shadow: 2.48px 2.48px 4.96px 0px #ffffffcc inset;

    border-radius: 100%;
  }
  &:hover {
    figure.elementor-image-box-img {
      background: linear-gradient(241.31deg, #ffe3ea 38.01%, #ffbecf 87.39%);
      backdrop-filter: blur(0.3206106722354889px);
      box-shadow: 1.6px 1.6px 3.21px 0px #ffffffcc inset;
    }
  }
}

.benefits-container {
  .benefits-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    .benefits-images-container {
      flex: 1;
      margin-right: 5px;
      .benefit-image {
        display: none;
        border-radius: 24px;
        &.active {
          display: block;
        }
      }
    }
    .benefits-accordion-wrapper {
      flex: 0 0 50.4%;
      .accordion-item {
        border-bottom: 1px solid #ededed;
        padding: 21px;
        transition: 0.5s all;
        .accordion-header {
          width: 100%;
          border: 0;
          padding: 0;
          font-family: var(--font-source);
          font-weight: 400;
          font-size: 20px;
          line-height: 24px;
          letter-spacing: 1px;
          font-style: normal;
          color: #6d7691;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          background-color: transparent;
          &:hover,
          &:focus {
            background-color: transparent !important;
            outline: 0;
          }
          .arrow-wrapper {
            height: 38px;
            transition: transform 0.3s ease;
            img {
              transition: transform 0.3s ease;
            }
          }
          .accordion-title-wrapper h3 {
            font: inherit;
            color: inherit;
            margin: 0;
          }
        }
        .accordion-content {
          overflow: hidden;
          /* REMOVED display: none - let jQuery handle this */
          .mobile-image-wrapper {
            display: none;
          }
          p {
            font-family: var(--font-source);
            font-weight: 400;
            font-size: 18px;
            line-height: 30px;
            letter-spacing: 0px;
            color: var(--text-dark);
            width: 82%;
            &:empty {
              display: none;
            }
          }
        }
        &.active {
          transition: 0.5s all;
          padding-top: 15px;
          padding-bottom: 44px;
          border-radius: 10px;
          background:
            linear-gradient(
              0deg,
              rgba(255, 255, 255, 0.7),
              rgba(255, 255, 255, 0.7)
            ),
            linear-gradient(
              180deg,
              rgba(255, 255, 255, 0.16) 0%,
              rgba(255, 255, 255, 0.25) 100%
            );
          border-bottom: 1px solid transparent;
          .accordion-header {
            font-weight: 600;
            font-size: 24px;
            line-height: 100%;
            letter-spacing: 0px;
            color: var(--text-dark);
            .arrow-wrapper img {
              transform: rotate(180deg);
            }
          }
          /* REMOVED display: block - let jQuery handle this */
        }
        &:not(:last-child) {
          margin-bottom: 20px;
        }
      }
    }
  }
}

/* Industries Page */
.industries_col_divider {
  > .elementor-element {
    position: relative;
    &:not(:last-child) {
      &::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1;
        height: 100%;
        border-left: 1px solid #f2f2f2;
      }
    }
  }
}
.timeline-container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: calc(100% - 50px);
    background: #e9eaef;
    transform: translateX(-50%);
    z-index: 1;
    margin-top: 45px;
  }
  .timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--primary-color);
    transform: translateX(-50%);
    z-index: 2;
    margin-top: 45px;
  }
  .timeline-item {
    position: relative;
    &:not(:last-child) {
      padding-bottom: 0px;
    }
    .timeline-number-icon {
      margin-bottom: 50px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      position: relative;
      .icon-wrapper {
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        background: linear-gradient(241.31deg, #ffe3ea 38.01%, #ffbecf 87.39%);
        backdrop-filter: blur(0.5496183037757874px);
        box-shadow: 2.75px 2.75px 5.5px 0px #ffffffcc inset;
        /* box-shadow: 0px 14px 14px 0px #F6144F4A; */
        filter: drop-shadow(0px 14px 14px #f6144f4a);
        img {
          width: 38px;
          height: 38px;
        }
      }
      .number-wrapper {
        font-family: var(--font-source);
        font-weight: 700;
        font-style: Italic;
        font-size: 140px;
        line-height: 100%;
        letter-spacing: 1%;
        background: linear-gradient(
          180deg,
          #d7d7db 0%,
          rgba(235, 236, 238, 0.1) 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: absolute;
        right: 0;
        top: 30%;
      }
    }
    .timeline-content {
      width: 50%;
      border-radius: 15px;
      position: relative;
      &::before {
        content: "";
        position: absolute;
        top: 27px;
        width: 22px;
        height: 22px;
        background: var(--white);
        transform: translateX(-50%);
        border-radius: 100%;
        border: 1px solid var(--white);
        z-index: 4;
      }
      h3 {
        font-family: var(--font-source);
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        color: var(--text-dark);
        margin-top: 0;
        margin-bottom: 15px;
        font-style: normal;
      }
      ul {
        list-style: none;
        padding: 0;
        li {
          padding: 8px 0;
          font-family: var(--font-source);
          font-weight: 400;
          font-size: 18px;
          line-height: 30px;
          letter-spacing: 0px;
          color: var(--text-dark);
          position: relative;
          padding-left: 24px;
          &::before {
            content: "";
            position: absolute;
            left: 0;
            top: 16px;
            width: 12px;
            height: 12px;
            background-color: var(--primary-color);
          }
        }
      }
    }
  }
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  padding-left: 62px;
  &::before {
    left: 0;
  }
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: auto;
  padding-right: 50px;
  &::before {
    left: 100%;
  }
  .timeline-number-icon {
    flex-direction: row-reverse;
  }
  .number-wrapper {
    left: 0;
    right: auto;
  }
  h3 {
    width: 300px;
    margin-left: auto;
  }
  ul {
    width: 300px;
    margin-left: auto;
  }
}
.timeline-item.active .timeline-content::before {
  background: var(--primary-color) !important;
}

/* About Page */
.about_col_divider {
  .industries_section2_box {
    position: relative;
    &:not(:last-child) {
      &::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 2.8px;
        height: 100%;
        background: var(--gradient);
      }
    }
  }
}
.about-icon-gradient {
  background: linear-gradient(241.31deg, #ffe3ea 38.01%, #ffbecf 87.39%);
  backdrop-filter: blur(0.7633587121963501px);
  box-shadow: 3.82px 3.82px 7.63px 0px #ffffffcc inset;
  width: 100px;
  height: 100px;
  display: flex;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 100%;
  box-shadow: 0px 9.44px 9.44px 0px #f6144f26;
}
.text-reveal-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  .container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    .reveal-text {
      font-family: var(--font-source);
      font-weight: 400;
      font-style: Italic;
      font-size: 32px;
      line-height: 42px;
      text-align: center;
      margin-bottom: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      color: #6d7691;
      &:last-child {
        margin-bottom: 0;
      }
      .word {
        position: relative;
        display: inline-flex;
        margin-right: 0.3em;
        &:empty {
          display: none;
        }
        > span {
          position: relative;
          display: inline-block;
          transition: opacity 0.15s ease;
          &:has(.visible) > span:first-child {
            opacity: 0;
          }
          > span:first-child {
            position: absolute;
            color: #6d7691;
          }
          > span:last-child {
            opacity: 0;
          }
          > span:last-child.visible {
            opacity: 1;
            color: var(--text-dark);
          }
        }
        &.bold {
          > span {
            font-weight: 600;
            > span:last-child.visible {
              color: var(--primary-color);
            }
          }
        }
      }
    }
  }
}
.leader-image-container {
  .leader-image {
    img {
      cursor: pointer;
    }
    &.active {
      img {
        opacity: 1 !important;
      }
    }
  }
}
.leader-designation-container {
  .leader-designation {
    .leader-designation-title {
      .elementor-heading-title {
        cursor: context-menu;
        display: inline-block;
      }
    }
    .leader-designation-description {
      p {
        margin: 0;
      }
      padding-left: 20px !important;
      position: relative;
      transition: 0.5s all;
      cursor: context-menu;
      display: inline-block;
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0%, -50%);
        width: 8px;
        height: 10px;
        background: var(--text-gray-2);
        border-radius: 2px;
      }
    }
    &.active:first-child {
      .leader-designation-title {
        .elementor-heading-title {
          color: var(--text-dark);
        }
      }
    }
    &:first-child {
      .leader-designation-title {
        .elementor-heading-title {
          color: #6d7691;
        }
      }
    }
    &.active {
      .leader-designation-title {
        .elementor-heading-title {
          color: var(--primary-color);
        }
      }
      .leader-designation-description {
        color: var(--text-dark);
        padding-left: 30px !important;
        transition: 0.5s all;
        &::before {
          content: "";
          width: 16px;
          height: 10px;
          background: var(--primary-color);
          box-shadow: 0px 0px 12px 0px #f6144f63;
        }
      }
    }
  }
}

@keyframes slides2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  .logo_items {
    display: inline-block;
    animation: 16s slides2 infinite linear;
    img {
      width: 200px !important;
      height: 108px !important;
      max-width: unset !important;
      margin-left: 38px;
      margin-right: 38px;
      @media screen and (max-width: 767px) {
        width: 140px !important;
        height: 100% !important;
        margin-left: 18px;
        margin-right: 0px;
      }
    }
  }
  /* &:hover .logo_items {
    animation-play-state: paused;
  } */
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-20%, -8%);
    width: 219px;
    height: 219px;
    background: url(/wp-content/uploads/2026/02/left-blur-ss.png) no-repeat;
    z-index: 999;
    @media screen and (max-width: 767px) {
      display: none;
    }
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(55%, 0%);
    width: 255px;
    height: 255px;
    background: url(/wp-content/uploads/2026/02/right-circle-blur.png) no-repeat;
    z-index: 999;
    @media screen and (max-width: 767px) {
      display: none;
    }
  }
}
@media screen and (min-width: 768px) {
  .home .logos {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 27px;
      width: 200px;
      height: 219px;
      background: url(/wp-content/uploads/2026/02/Right-blur.png) no-repeat;
      z-index: 999;
    }
  }
}

/* Temporary Button Hide List */
/* Home Page */
.solutions-container {
  .solutions-desktop-wrapper {
    .solutions-scroll-wrapper {
      .solutions-detail-wrapper {
        .solution-detail-flex-wrapper {
          .solution-details {
            flex: 0 0 80%;
          }
          .solutions-btn-wrapper {
            display: none;
          }
        }
      }
    }
  }
}
@media screen and (max-width: 1200px) {
  .solutions-mobile-container {
    .solutions-detail-mobile-wrapper {
      .solutions-mobile-wrapper {
        .solution-details {
          flex: 0 0 90% !important;
        }
        .solutions-btn-wrapper {
          display: none;
        }
      }
    }
  }
}
.case-study-container {
  .tab-active-container {
    .tab-left-col {
      .tab-img-wrapper {
        .tab-redirection {
          display: none;
        }
      }
    }
  }
}
@media screen and (max-width: 767px) {
  .case-study-mobile-container {
    .case-study-detail-wrapper {
      .img-logo-wrapper a {
        display: none !important;
      }
    }
  }
}
.industries-section {
  .industries-list {
    .industry-item {
      .industry-content-wrapper {
        padding: 12px 15px 60px;
        .industry-card-bottomcontent {
          display: none;
        }
      }
    }
  }
}
.desktop_arrow {
  display: none !important;
}
.elementor-element-0f18a3d:has(
    .leader-designation-container .leader-designation:first-child
  )
  .leader-image-container
  > .elementor-element:nth-child(2)
  .leader-image:first-child
  img {
  opacity: 0.6;
}
.elementor-element-0f18a3d:has(
    .leader-designation-container .leader-designation.active:first-child
  )
  .leader-image-container
  > .elementor-element:nth-child(2)
  .leader-image:first-child
  img {
  opacity: 1;
}