.Choosing_section .choose-card,
.services-section .service-card {
  align-items: start;
}
.Choosing_section .choose-card .card-header,
.services-section .service-card .card-header {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 20px 20px 10px 20px;
}
.services-section .service-card .card-header .card-icon img {
  width: 50px;
}
.Choosing_section .choose-card .solution-pill,
.services-section .service-card .solution-pill {
  color: #f05d2a;
  border: 1px solid rgba(240, 93, 42, 0.16);
  background-color: rgba(244, 110, 38, 0.16);
}
.Choosing_section .choose-card .solution-pill:hover,
.services-section .service-card .solution-pill:hover {
  transition: all 0.3s ease;
  transform: translateX(-2px);
}

/* Rethink Sans Font */
@font-face {
  font-family: "Rethink_Sans";
  src: url("../../assets/fonts/Rethink_Sans/RethinkSans-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rethink_Sans";
  src: url("../../assets/fonts/Rethink_Sans/RethinkSans-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rethink_Sans";
  src: url("../../assets/fonts/Rethink_Sans/RethinkSans-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rethink_Sans";
  src: url("../../assets/fonts/Rethink_Sans/RethinkSans-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rethink_Sans";
  src: url("../../assets/fonts/Rethink_Sans/RethinkSans-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  font-family: inherit;
}

body {
  font-family: "Rethink_Sans";
  position: relative;
  color: #000;
  margin: 0;
  padding: 0;
  min-width: 350px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.site-wrapper {
  min-height: 100vh;
}

main {
  max-width: 100%;
}

section {
  /* padding-inline: clamp(1rem, 8vw, 8rem); */
  position: relative;
  padding-block: 2rem;
}

.form-control:focus {
  box-shadow: none;
  border: 0px;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background: #f05d2a;
  border-radius: 10px;
}

/* *::-webkit-scrollbar-thumb:hover {
  background: #ccc;
} */

.navbar {
  padding: 20px clamp(1rem, 8vw, 8rem);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: absolute;
}
.navbar .navbar-brand img {
  width: 160px;
}
.navbar .navbar-toggler {
  border: none;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler:hover {
  transform: scale(1.1);
}
.navbar .navbar-collapse {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  flex-wrap: wrap;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    visibility 0.4s;
  overflow-y: auto;
}
.navbar .navbar-collapse.collapsing {
  display: flex !important;
  height: 100vh !important;
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar .navbar-collapse.show {
  opacity: 1;
  visibility: visible;
  display: flex;
  transform: translateY(0);
}
.navbar .navbar-collapse.show .nav-item {
  opacity: 1;
  transform: translateY(0);
}
.navbar .navbar-collapse.show .nav-item:nth-child(1) {
  transition-delay: 0.18s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(2) {
  transition-delay: 0.26s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(3) {
  transition-delay: 0.34s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(4) {
  transition-delay: 0.42s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(5) {
  transition-delay: 0.5s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(6) {
  transition-delay: 0.58s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(7) {
  transition-delay: 0.66s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(8) {
  transition-delay: 0.74s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(9) {
  transition-delay: 0.82s;
}
.navbar .navbar-collapse.show .nav-item:nth-child(10) {
  transition-delay: 0.9s;
}
.navbar .navbar-collapse.show .menu-header,
.navbar .navbar-collapse.show .language-switcher {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease 0.2s;
}
.navbar .navbar-collapse .nav-item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar .navbar-collapse .menu-header,
.navbar .navbar-collapse .language-switcher {
  opacity: 0;
  transform: translateY(-10px);
}
.navbar .menu-header {
  position: absolute;
  top: 30px;
  left: clamp(1rem, 8vw, 8rem);
  right: clamp(1rem, 8vw, 8rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  width: calc(100% - 2 * clamp(1rem, 8vw, 8rem));
}
.navbar .menu-header .btn-close-custom {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1d5166;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.navbar .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  padding: 0 20px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #1d5166;
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  transition: color 0.2s;
  font-family: "Inter", sans-serif;
}
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #1d5166;
  border-bottom: 2px solid #f05d2a;
}
.navbar .navbar-nav .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background-color: #1d5166;
  opacity: 0.3;
}
.navbar .language-switcher {
  position: absolute;
  bottom: 40px;
  right: clamp(1rem, 8vw, 8rem);
  background-color: #efefef;
  border-radius: 20px;
  padding: 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
	text-decoration: none;
}
.navbar .language-switcher .lang-text {
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
  color: #6c757d;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.navbar .language-switcher .lang-text.active {
  background-color: white;
  color: #f05d2a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .navbar {
    padding: 20px;
  }
  .navbar .menu-header {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
  }
  .navbar .language-switcher {
    right: 20px;
  }
  .navbar .navbar-nav {
    flex-direction: column;
    gap: 15px;
  }
  .navbar .navbar-nav .nav-item {
    padding: 5px;
  }
  .navbar .navbar-nav .nav-item::after {
    display: none;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 20px;
  }
}

footer {
  padding-block: 5rem;
  position: relative;
}
footer .main-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
footer .footer_title {
  font-size: 3rem;
  font-weight: 700;
  color: #1d5166;
  line-height: 1.1;
}
footer .footer_title .subtitle-orange {
  color: #f05d2a;
  display: block;
}
footer .footer_desc {
  font-size: 16px;
  font-weight: 500;
  color: #606060;
  max-width: 800px;
  margin-inline: auto;
}
footer .footer-input-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  background: #fff;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid #efefef;
  width: 60%;
  min-width: -moz-max-content;
  min-width: max-content;
  margin-inline: auto;
}
footer .footer-input-wrapper input {
  border: none;
  flex: 1;
  outline: none;
  padding: 8px;
}
footer .footer-input-wrapper .btn-start {
  border-radius: 8px;
  padding: 10px 24px;
}
footer .footer-catergory {
  margin-top: 4rem;
  margin-inline: auto;
}
footer .footer-catergory div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}
footer .footer-catergory div span {
  font-size: 16px;
  font-weight: 500;
}

.bg-gradient-bottom {
  z-index: -1;
  width: 100%;
}

.hero {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-block: 120px 0px;
}
.hero .main-text .badge-pill {
  color: #1d5166;
  font-size: 14px;
}
.hero .main-text .main_title {
  font-size: 52px;
}
.hero .main-text .main_desc {
  font-size: 16px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 30%,
      rgba(253, 191, 16, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(240, 93, 42, 0.12) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(253, 191, 16, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}
.hero .hero-visuals {
  position: relative;
  width: 100%;
  min-height: 500px;
}
.hero .hero-visuals .robot-img {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.hero .hero-visuals .robot-img img {
  width: 120%;
}
.hero .hero-visuals .heros_card {
  position: relative;
}
.hero .hero-visuals .heros_card::after {
  content: " ";
  background-color: #f7f7f7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  height: 100%;
  z-index: -1;
  border-radius: 16px;
}
.hero .hero-visuals .heros_card:has(.performance-card)::after {
  top: 49%;
  left: 57%;
  transform: translate(-50%, -50%) rotate(18deg);
  width: 71%;
  height: 97%;
}
.hero .hero-visuals .card-float {
  background: #fff;
  border-radius: 16px;
  padding: 0.8rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 6;
  text-align: left;
  animation: floatLeft 6s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hero .hero-visuals .card-float .card_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  background: rgba(244, 110, 38, 0.16);
  color: #f05d2a;
  font-size: 12px;
  font-weight: 600;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.hero .hero-visuals .card-float.health-card {
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 80%;
  transform: rotate(-7deg);
}
.hero .hero-visuals .card-float.health-card .card-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #606060;
  font-size: 14px;
}
.hero .hero-visuals .card-float.health-card .card-header .icon-box {
  transform: rotate(8deg);
}
.hero .hero-visuals .card-float.health-card .card-header span {
  font-weight: 600;
  font-size: 12px;
}
.hero .hero-visuals .card-float.health-card .card-body p {
  font-size: 14px;
  margin-bottom: 4px;
}
.hero .hero-visuals .card-float.health-card .card-body .progress-bar-stack {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.hero
  .hero-visuals
  .card-float.health-card
  .card-body
  .progress-bar-stack
  .bar-unit {
  flex: 1;
  height: 18px;
  background: #eee;
  border-radius: 2px;
  max-width: 4px;
}
.hero
  .hero-visuals
  .card-float.health-card
  .card-body
  .progress-bar-stack
  .bar-unit.active {
  background: #12b76a;
}
.hero .hero-visuals .card-float.performance-card {
  transform: rotate(9deg);
  min-width: 65%;
}
.hero .hero-visuals .card-float.performance-card .card-header-top {
  margin-bottom: 0.5rem;
}
.hero .hero-visuals .card-float.performance-card .card-header-top .score-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero
  .hero-visuals
  .card-float.performance-card
  .card-header-top
  .score-line
  .score-val {
  font-size: 24px;
  font-weight: 700;
  color: #1d5166;
}
.hero
  .hero-visuals
  .card-float.performance-card
  .card-header-top
  .score-line
  .badge-trend {
  background: #ecfdf3;
  color: #027a48;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.hero .hero-visuals .card-float.performance-card .stat-bars {
  display: flex;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.hero .hero-visuals .card-float.performance-card .stat-bars .stat-segment {
  height: 100%;
}
.hero .hero-visuals .card-float.performance-card .stat-bars .blue {
  background: #2e90fa;
}
.hero .hero-visuals .card-float.performance-card .stat-bars .purple {
  background: #bf5af2;
}
.hero .hero-visuals .card-float.performance-card .stat-bars .orange {
  background: #f05d2a;
}
.hero .hero-visuals .card-float.performance-card .legend {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.hero .hero-visuals .card-float.performance-card .legend .legend-item {
  font-size: 10px;
  font-weight: 600;
  color: #606060;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  flex-wrap: wrap;
}
.hero .hero-visuals .card-float.performance-card .legend .legend-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.hero
  .hero-visuals
  .card-float.performance-card
  .legend
  .legend-item.blue::before {
  background: #2e90fa;
}
.hero
  .hero-visuals
  .card-float.performance-card
  .legend
  .legend-item.purple::before {
  background: #bf5af2;
}
.hero
  .hero-visuals
  .card-float.performance-card
  .legend
  .legend-item.orange::before {
  background: #f05d2a;
}
.hero .hero-visuals .card-float.performance-card .module-status {
  border-top: 1px solid #f0f0f0;
  padding-top: 0.5rem;
}
.hero .hero-visuals .card-float.performance-card .module-status .section-label {
  font-weight: 600;
  margin-bottom: 8px;
}
.hero .hero-visuals .card-float.performance-card .module-status .status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 12px;
  margin-bottom: 6px;
}
.hero
  .hero-visuals
  .card-float.performance-card
  .module-status
  .status-row
  span:last-child {
  font-weight: 700;
  color: #1d5166;
}
.hero .hero-visuals .float-icon {
  position: absolute;
  animation: floatUpDown 2s ease-in-out infinite;
  animation-delay: 0.5s;
  transform: translate(-50%, -50%);
	z-index: 10
}
.hero .hero-visuals .float-icon.icon-gem {
  top: 17%;
  left: 23%;
}
.hero .hero-visuals .float-icon.icon-trend {
  top: 10%;
  right: 4%;
}
.hero .hero-visuals .float-icon.icon-thumb {
  bottom: -4%;
  left: 8%;
}
.hero .hero-visuals .float-icon.icon-stats {
  bottom: -10%;
  right: 11%;
}
.talk-badge-circular {
  position: absolute;
  bottom: 8px;
  right: -5.5vw;
  width: 150px;
  height: 150px;
  z-index: 20;
	display: none
}
.talk-badge-circular .badge-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  border-radius: 50%;
  background-color: rgba(240, 93, 42, 0.05);
}
.talk-badge-circular .badge-inner .circular-text {
  width: 100%;
  height: 100%;
  animation: rotate 15s linear infinite;
}
.talk-badge-circular .badge-inner .center-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  overflow: hidden;
}
.talk-badge-circular .badge-inner .center-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .hero .hero-visuals {
/*     padding-bottom: 7rem; */
	      min-height: 0px;
  }
  .hero .hero-visuals .robot-img {
/*     height: 420px !important; */
    margin-bottom: 0;
  }
  .hero .hero-visuals .robot-img img {
    height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .hero .hero-visuals .robot-img {
    bottom: 0;
    height: 100%;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .hero .hero-visuals {
    grid-template-columns: 1fr 1.4fr 1fr;
  }
}

.clarity-section {
  padding-block: 5rem;
}
.clarity-section .main-text {
  margin-bottom: 4rem;
}
.clarity-section .clarity-card {
  position: relative;
}
.clarity-section .clarity-text {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  gap: clamp(5px, 0.7vw, 15px);
  flex-wrap: wrap;
  color: #fff;
  text-align: start;
  position: absolute;
  inset-inline-start: 5%;
  bottom: 5%;
  transform: translate(0, 0);
  margin-bottom: 0px;
}
.clarity-section .clarity-text h2,
.clarity-section .clarity-text h2 > span {
  font-size: clamp(5px, 2.4vw, 34px) !important;
  font-weight: 600;
  display: inline;
  max-width: 50%;
}
.clarity-section .clarity-text a {   
	font-size: clamp(6px, 2.2vw, 14px);
    padding: clamp(1px, 1vw, 12px) clamp(5px, 2vw, 20px);
}
.clarity-section .clarity-text a svg {
  width: clamp(6px, 3vw, 14px);
  height: clamp(6px, 3vw, 14px);
}
.problems-section{
	    padding-bottom: 0;
}
.problems-section .problem-grid {
  margin-top: 4rem;
  position: relative;
  gap: 1rem 0px;
}
.problems-section .problem-col {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.problems-section .problem-card {
  align-items: start;
}
.problems-section .problem-card .card-header-part {
  border-radius: 16px;
  background: #f7f7f7;
  padding: 1.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
}
.problems-section .problem-card .card-header-part .alert-icon-wrapper {
  width: 32px;
  height: 32px;
}
.problems-section .problem-card .card-footer-part {
  padding-inline: 20px;
  width: 100%;
}
.problems-section .problem-card .card-footer-part .solution-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
}
.problems-section .problem-card .card-footer-part a {
  text-decoration: none;
  color: #000;
  display: inline-flex;
}
.problems-section .problem-card .card-footer-part .description {
  font-size: 16px;
}
.problems-section .problem-card .solution-pill {
  border: 1px solid rgba(52, 168, 83, 0.16);
  background: rgba(52, 168, 83, 0.08);
  color: #34a853;
}
.problems-section .problem-visual,
.show-fit-robot{
  margin-top: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.problems-section .problem-visual .robot-img-variation ,
.show-fit-robot .show-fit-robot-img{
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.features-section {
  padding-top: 4rem;
}
.features-section .main-text{
	    padding-top: 30px;
}
.features-section .main-text .main_title{
	    font-size: 35px;
}
.features-section .features-card .main-text {
  align-items: start;
  text-align: start;
}
.features-section .features-timeline {
  position: relative;
  padding-inline-start: 5rem;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 4rem;
  flex-wrap: wrap;
}
.features-section .features-timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(1rem + 28px);
  top: 5%;
  bottom: 5%;
  width: 0;
  border-left: 2px dashed rgba(240, 93, 42, 0.2);
}
.features-section .features-timeline .timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.features-section .features-timeline .timeline-item .timeline-marker {
  position: absolute;
  top: 20px;
  transform: translatex(-50%);
  width: 20px;
  height: 20px;
  background: #f05d2a;
  border-radius: 50%;
  border: 5px solid #f7f7f7;
  z-index: 2;
  left: -2.2rem;
}
.features-section .features-timeline .timeline-item .item-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  z-index: 1;
  border: 1px solid rgba(240, 93, 42, 0.1);
}
.features-section .features-timeline .timeline-item .item-icon svg {
  width: 24px;
  height: 24px;
}
.features-section .features-timeline .timeline-item .item-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .features-section .features-timeline {
    margin-top: 2rem;
    padding-inline-start: 2rem;
  }
	.features-section .features-timeline .timeline-item .timeline-marker{
		    left: -1.55rem;
	}
  .features-section .features-timeline::before {
    inset-inline-start: calc(-1.4rem + 28px);
  }
	.features-section .features-timeline .timeline-item{
		    gap: 0.8rem;
	}
	.features-section .features-timeline .timeline-item .item-icon{
		    width: 50px;
    height: 50px;
	}
	.features-section .features-timeline .timeline-item .item-text h3{
		    font-size: 18px;
	}
	.features-section .features-timeline .timeline-item .item-text .description{
		font-size: 14px;
	}
}

.services-section {
  padding-block: 5rem;
  background: #fff;
}
.services-section .service-grid {
  margin-top: 3rem;
}
.services-section .service-col {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 0.8rem;
  flex-wrap: nowrap;
}
.services-section .robot-card .robot-visual {
  height: 390px;
  margin: auto;
  position: relative;
}
.services-section .robot-card .robot-visual .circle-shadow {
  width: 58%;
  position: absolute;
  bottom: -3%;
  inset-inline-end: 17%;
  height: 60px;
  border-radius: 50%;
  background: rgba(48, 46, 46, 0.3);
  filter: blur(12.25px);
  opacity: 0.7;
}
.services-section .robot-card .robot-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.services-section .robot-card .robot-visual .saudi-robot-img {
  width: 120%;
  height: 120%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: translateY(-12%);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 991px) {
  .services-section .service-col {
    margin-bottom: 2rem;
  }
  .services-section .middle-service-col {
    margin-top: 10px;
  }
}

.smart-systems-section {
  padding-top: 4rem;
}
.smart-systems-section .grid-2 {
  align-items: stretch;
  position: relative;
  gap: 0px;
}
.smart-systems-section .grid-2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1px;
  height: 85%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    rgba(240, 93, 42, 0.05) 0%,
    #f05d2a 50%,
    rgba(240, 93, 42, 0.05) 100%
  );
}
@media (max-width: 991px) {
  .smart-systems-section .grid-2::after {
    display: none;
  }
}
.smart-systems-section .system-item {
  padding-block: 2rem;
  background-color: transparent;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.8rem;
  flex-wrap: wrap;
  height: 100%;
  position: relative;
}
.smart-systems-section .system-item:not(:nth-last-child(-n + 2))::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
}
.smart-systems-section
  .system-item:nth-child(odd):not(:nth-last-child(-n + 2))::after {
  background: linear-gradient(
    270deg,
    #f05d2a 0%,
    rgba(240, 93, 42, 0.6) 30%,
    rgba(240, 93, 42, 0.2) 70%,
    rgba(240, 93, 42, 0) 100%
  );
}
.smart-systems-section
  .system-item:nth-child(even):not(:nth-last-child(-n + 2))::after {
  background: linear-gradient(
    90deg,
    #f05d2a 0%,
    rgba(240, 93, 42, 0.6) 30%,
    rgba(240, 93, 42, 0.2) 70%,
    rgba(240, 93, 42, 0) 100%
  );
}
.smart-systems-section .system-item .item-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: nowrap;
  width: 100%;
}
.smart-systems-section .system-item .item-header .item-number {
  font-size: 40px;
  font-weight: 600;
  color: #f05d2a;
  position: relative;
}
.smart-systems-section .system-item .item-header .item-title {
  position: relative;
  padding-inline-start: 1rem;
}
.smart-systems-section .system-item .item-header .item-title .description{
	display: -webkit-box;          
  -webkit-line-clamp: 3;        
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.smart-systems-section .system-item .item-header .item-title h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.smart-systems-section .system-item .item-header .item-title::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(240, 93, 42, 0.05) 0%,
    #f05d2a 50%,
    rgba(240, 93, 42, 0.05) 100%
  );
}
.smart-systems-section .system-item .item-visual {
  width: 100%;
  max-width: 500px;
  min-height: -moz-max-content;
  min-height: max-content;
  aspect-ratio: 1.4/1;
  margin-top: auto;
  margin-inline: auto;
}
.smart-systems-section .grid-2 > :nth-child(odd) {
  border-left: none;
  padding-inline-end: 2rem;
}
.smart-systems-section .grid-2 > :nth-child(even) {
  border-right: none;
  padding-inline-start: 2rem;
}
.smart-systems-section .grid-2 > :nth-child(-n + 2) {
  border-top: none;
}
.smart-systems-section .grid-2 > :nth-last-child(-n + 2) {
  border-bottom: none;
}
@media (max-width: 991px) {
  .smart-systems-section .grid-2:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      #f05d2a 0%,
      rgba(240, 93, 42, 0.6) 30%,
      rgba(240, 93, 42, 0.2) 70%,
      rgba(240, 93, 42, 0.6) 100%
    );
  }
  .smart-systems-section .grid-2:last-child::after {
    content: none;
  }
  .smart-systems-section .system-item {
    padding-inline: 0px !important;
  }
  .smart-systems-section .system-item::after {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(240, 93, 42, 0.15) 10%,
      #f05d2a 50%,
      rgba(240, 93, 42, 0.15) 95%,
      transparent 100%
    ) !important;
  }
}

.transformation-section .transformation-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}
.transformation-section .transformation-left {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.transformation-section .transformation-left .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.transformation-section .transformation-left .glow-overlay {
  position: absolute;
  top: 20%;
  right: -20%;
  width: 80%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(240, 93, 42, 0.2) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}
.transformation-section .transformation-left .section-desc {
  color: #ccc;
}
.transformation-section .transformation-left .transformation-list {
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}
.transformation-section .transformation-left .transformation-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 12px;
  flex-wrap: nowrap;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.transformation-section .transformation-left .transformation-list li .check-icon img{
	    width: 30px;
}
.transformation-section .transformation-left .custom-btn {
  z-index: 1;
}
.transformation-section .transformation-right {
  flex: 1;
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 2rem;
  flex-wrap: wrap;
}
.transformation-section .transformation-right .right-title {
  font-size: 24px;
  font-weight: 600;
}
.transformation-section .transformation-right .action-cards {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.transformation-section .transformation-right .action-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: nowrap;
  padding: 1.5rem;
  width: 100%;
  border-radius: 16px;
  background: #f7f7f7;
  box-shadow:
    0 1px 1px -0.5px rgba(0, 0, 0, 0.04),
    0 3px 3px -1.5px rgba(0, 0, 0, 0.04),
    0 24px 24px -12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.transformation-section .transformation-right .action-card,
.transformation-section .transformation-right .action-card * {
  text-decoration: none;
}
.transformation-section .transformation-right .action-card .action-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  width: -moz-max-content;
  width: max-content;
}
.transformation-section .transformation-right .action-card .action-text h4 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.transformation-section .transformation-right .action-card .action-text p {
  font-size: 16px;
  color: #606060;
}
.transformation-section .transformation-right .stats-divider {
  height: 1px;
  background: #efefef;
  margin-block: 0.5rem;
}
.transformation-section .transformation-right .stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.transformation-section .transformation-right .stats-row .stat-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  flex-wrap: wrap;
}
.transformation-section
  .transformation-right
  .stats-row
  .stat-item
  .stat-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f05d2a;
}
.transformation-section
  .transformation-right
  .stats-row
  .stat-item
  .stat-label {
  font-size: 14px;
  color: #606060;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatUpDown {
  0% {
    transform: translateY(-35%);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(-35%);
  }
}
.main_integration .card-item {
  padding: 10px 12px;
  border-radius: 8px;
  border: var(--stroke-weight-1, 1px) solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: nowrap;
  text-decoration: none;
}
.main_integration .card-item:hover {
  transform: translateY(-5px);
}
.main_integration .card-item .card-icon {
  height: 27px;
  width: 27px;
}
.main_integration .card-item .card-icon img{
	width: 100%;
    height: 100%;
    object-fit: contain;
}
.main_integration .card-item .card-title {
  font-size: 16px;
  font-weight: 500;
  color: #1d5166;
}

.main_sevices_managment .grid-2 {
  align-items: center;
}

.story_no_section {
  padding: 40px 20px;
  border-radius: 32px;
  background-color: rgba(244, 110, 38, 0.16);
}
.story_no_section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: nowrap;
}
.story_no_section .number-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: nowrap;
}
.story_no_section .number-item .number {
  font-size: 32px;
  font-weight: 500;
  color: #f05d2a;
  display: block;
}
.story_no_section .number-item .title {
  display: block;
  max-width: 250px;
}

.products-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.products-card__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: nowrap;
  text-align: center;
  max-width: 400px;
  padding: 0;
}
.products-card__icon {
  width: 40px;
  height: 32px;
  margin-bottom: 0.5rem;
}
.products-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #1d5166;
}
.products-card__desc {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
}
.products-card__robot {
  width: 100%;
  max-height: 450px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}
.products-card .products-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .products-card .grid-3 {
    grid-template-columns: 100%;
  }
  .products-card .products-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .products-card .products-flex {
    margin: auto;
    max-width: 75%;
    grid-template-columns: 100%;
  }
}

.integration-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}
.integration-card__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: nowrap;
  text-align: center;
  max-width: 400px;
  padding: 0;
}
.integration-card__icon {
  width: 40px;
  height: 32px;
  margin-bottom: 0.5rem;
}
.integration-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #1d5166;
}
.integration-card__desc {
  font-size: 15px;
  font-weight: 400;
  color: #606060;
}
.integration-card__robot {
  width: 100%;
  max-height: 450px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}
.integration-card .integration-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}
.integration-flex_first .integration-card__item:first-of-type,
.integration-flex_first .products-card__item:first-of-type{
	    position: relative;
    inset-inline-start: 50px;
}
.integration-flex_last .integration-card__item:first-of-type,
.integration-flex_last .products-card__item:first-of-type{
	    position: relative;
    inset-inline-end: 50px;
}
@media screen and (max-width: 991px) {
  .integration-card .grid-3 {
    grid-template-columns: 100%;
  }
  .integration-card .integration-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .integration-card .integration-flex {
    margin: auto;
    max-width: 100%;
    grid-template-columns: 100%;
  }
}

.contact-info {
  margin-top: 2rem;
  margin-bottom: 6rem;
  gap: clamp(15px, 2vw, 2rem) !important;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.contact-form-card {
  background: #ffffff;
  text-align: start;
  box-shadow: 0 16px 80px -10px rgba(80, 45, 22, 0.16);
}
.contact-form-card .form-title {
  color: #1d5166;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-map {
  justify-content: space-between !important;
}
.contact-map .branch-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.4rem;
}
.contact-map .branch-tabs .branch-tab {
  padding: 8px 5px;
  border-radius: 8px;
  font-size: 14px;
  min-width: -moz-max-content;
  min-width: max-content;
  font-weight: 500;
  border: 1px solid #efefef;
  background: #ffffff;
  color: #1d5166;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-map .branch-tabs .branch-tab.active {
  background: rgba(244, 110, 38, 0.16);
  color: #f05d2a;
  border-color: transparent;
}
.contact-map .branch-tabs .branch-tab:hover:not(.active) {
  border-color: rgba(240, 93, 42, 0.2);
  background: #f7f7f7;
}
.contact-map .branch-content {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.contact-map .branch-content .info-group {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.contact-map .branch-content .info-group .info-label {
  color: #606060;
  font-size: 16px;
  font-weight: 500;
}
.contact-map .branch-content .info-group .info-value {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.contact-map .branch-content .map-preview {
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.carrers-section {
  padding-bottom: 5rem;
}
.carrers-section .grid-2 {
  align-items: start;
  gap: 2rem 0rem;
}
.carrers-section .grid-2 .small_main_text {
  padding-inline-end: 2rem;
}
.carrers-section .grid-2 .email {
  color: #f05d2a;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.carrers-section .grid-2 .email a{
  color: inherit;
  text-decoration: none;
}

.jobs-vacancies {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 1.5rem;
  flex-wrap: nowrap;
  padding: 2rem 3rem;
  max-height: 425px;
  overflow: auto;
}
.jobs-vacancies::-webkit-scrollbar {
  width: 6px;
}
.jobs-vacancies::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.jobs-vacancies::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.jobs-vacancies::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}
.jobs-vacancies .job-card {
  align-items: start;
  border-radius: 16px;
  box-shadow: 0 16px 80px rgba(80, 45, 22, 0.08);
      padding: 20px 15px;
}
.jobs-vacancies .job-card .job-title {
  font-size: 24px;
  font-weight: 500;
}
.jobs-vacancies .job-card .job-desc {
  font-size: 16px;
  color: #606060;
  font-weight: 400;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jobs-vacancies .job-card .job-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0.6rem 6px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.jobs-vacancies .job-card .job-tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.jobs-vacancies .job-card .job-tags .tag {
  padding: 6px 16px;
  background: rgba(240, 93, 42, 0.05);
  color: #1d5166;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(240, 93, 42, 0.05);
}
.jobs-vacancies .job-card .btn-apply {
  background: #1d5166;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.jobs-vacancies .job-card .btn-apply:hover {
  transform: scale(1.02);
}

.job-details-page {
  padding-bottom: 5rem;
}
.job-details-page .job-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.job-details-page .job-header-section .btn-apply {
  background: #1d5166;
  color: #fff;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.job-details-page .job-header-section .btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(29, 81, 102, 0.2);
}
.job-details-page .details-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .job-details-page .details-grid {
    grid-template-columns: 1fr;
  }
}
.job-details-page .custom-card {
  margin-bottom: 1.6rem;
  align-items: start;
  padding: 24px;
}
.job-details-page .custom-card .card-title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0.3rem;
}
.job-details-page .custom-card .job-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.job-details-page .custom-card .job-info-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 400;
  color: #606060;
}
.job-details-page .custom-card .job-info-list li .icon-box svg {
  width: 20px;
  height: 20px;
}
.job-details-page .custom-card .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.job-details-page .custom-card .bullet-list li {
  position: relative;
  padding-inline-start: 1.5rem;
  font-size: 16px;
  color: #606060;
  line-height: 1.6;
}
.job-details-page .custom-card .bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #606060;
  border-radius: 50%;
}

.job-apply-page .container {
  display: flex;
  justify-content: flex-start;
  /* align-items: center; */
  flex-direction: column;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.job-apply-page .stepper-container .stepper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.job-apply-page .stepper-container .stepper::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 88%;
  right: 0;
  height: 2px;
  background: #efefef;
  z-index: 1;
  transform: translate(-50%, 0%);
}
.job-apply-page .stepper-container .stepper .step {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  text-align: center;
}
.job-apply-page .stepper-container .stepper .step .step-circle {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #efefef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  position: relative;
}
.job-apply-page .stepper-container .stepper .step .step-circle::after {
  content: "";
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.job-apply-page .stepper-container .stepper .step .step-label {
  font-size: 12px;
  font-weight: 500;
  color: #606060;
  transition: all 0.3s ease;
  max-width: 120px;
}
.job-apply-page .stepper-container .stepper .step.active .step-circle {
  border-color: #f05d2a;
}
.job-apply-page .stepper-container .stepper .step.active .step-circle::after {
  background: #f05d2a;
}
.job-apply-page .stepper-container .stepper .step.active .step-label {
  color: #f05d2a;
}
.job-apply-page .stepper-container .stepper .step.completed .step-circle {
  background: #f05d2a;
  border-color: #f05d2a;
}
.job-apply-page
  .stepper-container
  .stepper
  .step.completed
  .step-circle::after {
  content: "\f633";
  font-family: bootstrap-icons !important;
  height: auto;
  width: auto;
  color: #fff;
}
.job-apply-page .stepper-container .stepper .step.completed .step-label {
  color: #1d5166;
}
.job-apply-page .form-step {
  display: none;
}
.job-apply-page .form-step.active {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeIn 0.4s ease-out;
}
.job-apply-page .form-step > div {
  width: 100%;
}
.job-apply-page .step-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
.job-apply-page .step-header .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(240, 93, 42, 0.05);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  color: #f05d2a;
}
.job-apply-page .step-header .icon-box svg {
  width: 32px;
  height: 32px;
}
.job-apply-page .step-header .step-title {
  font-size: 24px;
  font-weight: 400;
}
.job-apply-page .autofill-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}
.job-apply-page .autofill-banner .banner-info {
  font-weight: 400;
}
.job-apply-page .autofill-banner .banner-info .banner-title {
  font-size: 16px;
  margin-bottom: 1rem;
}
.job-apply-page .autofill-banner .banner-info .banner-desc {
  font-size: 16px;
  color: #606060;
}
.job-apply-page .form-section-card {
  position: relative;
}
.job-apply-page .form-section-card .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
  cursor: pointer;
}
.job-apply-page .form-section-card .section-header .header-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.job-apply-page .form-section-card .section-header .header-left .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(240, 93, 42, 0.05);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  color: #f05d2a;
}
.job-apply-page .form-section-card .section-header .header-left .icon-box svg {
  width: 22px;
  height: 22px;
}
.job-apply-page .form-section-card .section-header .header-left .section-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.job-apply-page .form-section-card .section-header.collapsed .arrow-icon {
  transform: rotate(-90deg);
}
.job-apply-page .form-section-card .section-header .arrow-icon {
  color: #f05d2a;
  transition: transform 0.3s ease;
}
.job-apply-page .form-section-card .section-header .arrow-icon svg {
  width: 24px;
  height: 24px;
}
.job-apply-page .form-section-card .card-body-content {
  padding: 1rem 0;
}
.job-apply-page .form-group-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1.2rem;
}
.job-apply-page .form-group-toggle .form-label {
  margin-bottom: 0;
  flex: 1;
  font-weight: 500;
  color: #000;
}
.job-apply-page .form-group-toggle .gender-switch {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.job-apply-page .form-group-toggle .gender-switch .btn-gender {
  min-width: 80px;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid transparent;
}
.job-apply-page
  .form-group-toggle
  .gender-switch
  .btn-gender:has(input[value="yes"]) {
  background-color: rgba(240, 93, 42, 0.03);
  color: #f05d2a;
}
.job-apply-page
  .form-group-toggle
  .gender-switch
  .btn-gender:has(input[value="yes"]):has(input:checked) {
  background-color: rgba(240, 93, 42, 0.1);
  border-color: rgba(240, 93, 42, 0.3);
}
.job-apply-page
  .form-group-toggle
  .gender-switch
  .btn-gender:has(input[value="no"]) {
  background: rgba(0, 0, 0, 0.05);
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  color: #000;
}
.job-apply-page
  .form-group-toggle
  .gender-switch
  .btn-gender:has(input[value="no"]):has(input:checked) {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}
.job-apply-page
  .form-group-toggle
  .gender-switch
  .btn-gender:hover:not(:has(input:checked)) {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .job-apply-page .form-group-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .job-apply-page .form-group-toggle .gender-switch {
    width: 100%;
  }
  .job-apply-page .form-group-toggle .gender-switch .btn-gender {
    flex: 1;
  }
}
.job-apply-page .add-position-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  background: transparent;
  border: none;
  color: #1d5166;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  width: 100%;
}
.job-apply-page .add-position-btn:hover {
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.identity_section .identity_content .identity-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  flex-wrap: wrap;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 8px;
  cursor: pointer;
  color: #1d5166;
}
.identity_section .identity_content .identity-tab .icon {
  width: 24px;
  height: 24px;
}
.identity_section .identity_content .identity-tab span {
  font-size: 16px;
  font-weight: 500;
}
.identity_section .identity_content .identity-tab:hover {
  border-color: rgba(240, 93, 42, 0.3);
  transform: translateY(-4px);
}
.identity_section .identity_content .identity-tab.active {
  background: rgba(244, 110, 38, 0.16);
  border-color: rgba(240, 93, 42, 0.2);
  color: #f05d2a;
}
.identity_section .identity_content .identity-tabs-content,
.identity_section .identity_content .pane-card {
  padding: 24px;
}
.identity_section .identity_content .identity-tabs-content .identity-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.identity_section
  .identity_content
  .identity-tabs-content
  .identity-pane.active {
  display: block;
}
.identity_section .identity_content .identity-tabs-content .pane-title {
  font-size: 24px;
  font-weight: 600;
}
.identity_section .identity_content .identity-tabs-content .pane-card {
  margin-top: 1rem;
  border-radius: 16px;
  box-shadow:
    0 1px 1px -0.5px rgba(0, 0, 0, 0.04),
    0 3px 3px -1.5px rgba(0, 0, 0, 0.04),
    0 24px 24px -12px rgba(0, 0, 0, 0.04);
  background-color: #f7f7f7;
}
.identity_section .identity_content .identity-tabs-content .pane-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.History_section .about-content-section {
  margin-bottom: 5rem;
}
.History_section .about-content-section .about-card {
  padding: 3.5rem;
}
.History_section .about-content-section .about-card .card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .History_section .about-content-section .about-card .card-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}
.History_section .about-content-section .about-card .card-grid .image-box {
  position: relative;
}
.History_section .about-content-section .about-card .card-grid .image-box img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.History_section
  .about-content-section
  .about-card
  .card-grid
  .image-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #f05d2a 10%, transparent 10%);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: -1;
}
.History_section
  .about-content-section
  .about-card
  .card-grid
  .text-box
  .badge-pill {
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .History_section
    .about-content-section
    .about-card
    .card-grid
    .text-box
    .badge-pill {
    margin-inline: auto;
  }
}
.History_section .about-content-section .about-card .card-grid .text-box h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1d5166;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.History_section .about-content-section .about-card .card-grid .text-box p {
  font-size: 18px;
  color: #606060;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.History_section .vision-mission-section {
  margin-bottom: 5rem;
}
.History_section .vision-mission-section .vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .History_section .vision-mission-section .vm-grid {
    grid-template-columns: 1fr;
  }
}
.History_section .vision-mission-section .vm-grid .vm-card {
  padding: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: start;
}
.History_section .vision-mission-section .vm-grid .vm-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(240, 93, 42, 0.05);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  color: #f05d2a;
}
.History_section .vision-mission-section .vm-grid .vm-card .icon-box svg {
  width: 30px;
  height: 30px;
}
.History_section .vision-mission-section .vm-grid .vm-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.History_section .vision-mission-section .vm-grid .vm-card p {
  font-size: 16px;
  color: #606060;
  line-height: 1.7;
  margin: 0;
}
.History_section .journey-section {
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}
.History_section .journey-section .journey-container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 2rem 5rem;
  flex-wrap: wrap;
}
.History_section .journey-section .journey-container::before {
  content: "";
  position: absolute;
  top: -7%;
  left: 50%;
  width: 46%;
  height: 107%;
  transform: translateX(-50%);
  background: url("../images/vector.png") no-repeat center;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .History_section .journey-section .journey-container::before {
    display: none;
  }
}
.History_section .journey-section .journey-item {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .History_section .journey-section .journey-item {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }
}
.History_section .journey-section .journey-item .journey-card {
  padding: 24px;
  background: rgba(240, 93, 42, 0.06);
  border: 1px solid rgba(240, 93, 42, 0.2);
}
.History_section .journey-section .journey-item .journey-card .card-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
  color: #1d5166;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 991px) {
  .History_section .journey-section .journey-item .journey-card .card-header {
    justify-content: center;
  }
}
.History_section .journey-section .journey-item .robot-box {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
}
.History_section .journey-section .journey-item .robot-box img {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
.History_section .journey-section .journey-item .robot-box .center-point {
  position: absolute;
  top: 28%;
  left: -23px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 10;
}
@media (max-width: 991px) {
  .History_section .journey-section .journey-item .robot-box .center-point {
    top: 15%;
  }
}
.History_section .journey-section .journey-item .robot-box .center-point .dot {
  width: 12px;
  height: 12px;
  background: #f05d2a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 93, 42, 0.1);
}
.History_section
  .journey-section
  .journey-item
  .robot-box
  .center-point
  .year-pill {
  background: rgba(240, 93, 42, 0.1);
  border: 1px solid rgba(240, 93, 42, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #1d5166;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}
.History_section .journey-section .journey-item:nth-child(even) {
  grid-template-columns: 1fr 2fr;
}
.History_section .journey-section .journey-item:nth-child(even) .journey-card {
  order: 2;
}
.History_section .journey-section .journey-item:nth-child(even) .robot-box {
  order: 1;
  justify-content: start;
}
.History_section .journey-section .journey-item:nth-child(even) .robot-box img {
  transform: scaleX(-1);
}
.History_section
  .journey-section
  .journey-item:nth-child(even)
  .robot-box
  .center-point {
  left: auto;
  right: 25px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .History_section
    .journey-section
    .journey-item:nth-child(even)
    .journey-card {
    order: 1;
  }
  .History_section .journey-section .journey-item:nth-child(even) .robot-box {
    order: 2;
  }
}
.History_section .journey-section .journey-item:first-child .center-point {
  top: 18%;
  left: 55px;
}

.Choosing_section .grid-3 {
  gap: 24px;
  margin-top: 24px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .Choosing_section .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  }
}
.primary-color {
  color: #f05d2a !important;
}

.secondary-color {
  color: #1d5166 !important;
}

.desc-color {
  color: #606060 !important;
}

.custom-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: nowrap;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.custom-btn:focus-visible {
  outline: none;
}

.primary-btn {
  background-color: #f05d2a;
  color: #ffffff;
  transition: all 0.3s ease;
}
.primary-btn:hover {
  background-color: #1d5166;
}

.btn-secondary {
  background-color: #1d5166;
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  opacity: 0.8;
}

.btn-outline-primary {
  background-color: #ffffff;
  color: #1d5166;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  opacity: 0.8;
}
.btn-outline-primary {
  border: 1px solid #1d5166;
}

.gap-sm {
  gap: 0.8rem !important;
}

.gap-md {
  gap: 2rem !important;
}

.gap-lg {
  gap: 5rem !important;
}

.w-img {
  width: 100%;
  max-height: 100%;
  height: auto;
}

.h-img {
  height: 100%;
  max-width: 100%;
  width: auto;
}

.full-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.min-btn-width {
  min-width: 150px;
}

.custom-ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.custom-anc {
  text-decoration: none;
}

.custom-card {
  padding: 12px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 80px -10px rgba(80, 45, 22, 0.16);
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
}
.custom-card .card-title {
  font-size: 18px;
  font-weight: 600;
}
.custom-card .card-description {
  font-size: 14px;
  font-weight: 500;
  color: #606060;
	display: -webkit-box;           
  -webkit-line-clamp: 3;         
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.custom-card .solution-pill {
  padding: 11px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  flex-wrap: wrap;
  border-radius: 12px;
  width: 100%;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.custom-card--sm {
  border-radius: 16px;
  padding: 1.6rem;
}
.custom-card--sm:hover {
  transform: none;
}

.main_sevices_managment {
  align-items: end;
}
.main_sevices_managment .grid_img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: nowrap;
  height: clamp(400px, 75vh, 450px);
}
.main_sevices_managment .badge-pill {
  background: rgba(240, 93, 42, 0.05) !important;
  box-shadow:
    0 1px 1px -0.5px rgba(0, 0, 0, 0.04),
    0 3px 3px -1.5px rgba(0, 0, 0, 0.04),
    0 24px 24px -12px rgba(0, 0, 0, 0.04);
}

.main_sevices_managment.main_sevices_managment-custom:nth-of-type(even)
  .grid-2
  > div:first-of-type {
  order: 2;
}
.main_sevices_managment.main_sevices_managment-custom:nth-of-type(even)
  .grid-2
  > div:last-of-type {
  order: 1;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 1rem;
}

.grid-3 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  gap: 10px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
  gap: 10px;
}

.full-width {
  grid-column: 1/-1;
}

.description {
  font-size: 16px;
  font-weight: 500;
  color: #606060;
}

.small_main_text,
.secondary-main-text,
.main-text {
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.small_main_text .badge-pill,
.secondary-main-text .badge-pill,
.main-text .badge-pill {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  flex-wrap: nowrap;
  padding: 6px 16px;
  background: rgba(244, 110, 38, 0.16);
  color: #f05d2a;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid rgba(240, 93, 42, 0.1);
  width: -moz-fit-content;
  width: fit-content;
}
.badge-pill img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.small_main_text .main_title,
.secondary-main-text .main_title,
.main-text .main_title {
  color: #1d5166;
  font-weight: 600;
}
.small_main_text .subtitle-orange,
.secondary-main-text .subtitle-orange,
.main-text .subtitle-orange {
  color: #f05d2a;
  display: block;
}
.small_main_text .main_desc,
.secondary-main-text .main_desc,
.main-text .main_desc {
  font-weight: 500;
  color: #606060;
}

.main-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.1rem;
  flex-wrap: wrap;
  text-align: center;
  margin-inline: auto;
  max-width: 1000px;
}
.main-text .main_title {
  font-size: 48px;
}
.main-text .main_desc {
  font-size: 18px;
}

.secondary-main-text {
  align-items: flex-start;
  text-align: start;
  margin-inline: 0;
}
.secondary-main-text .main_title {
  font-size: 35px;
}
.secondary-main-text .main_desc {
  font-size: 16px;
}

.small_main_text {
  margin: 0;
  text-align: start;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: nowrap;
}
.small_main_text .badge-pill {
  background-color: rgba(240, 93, 42, 0.03);
  font-size: 14px;
  color: #1d5166;
}
.small_main_text .main_title {
  font-size: 32px;
  font-weight: 700;
}
.small_main_text .description {
  font-size: 14px;
  font-weight: 500;
}

.main_page_header {
  position: relative;
  min-height: 260px;
}
.main_page_header:has(video) video {
  max-height: 100vh;
}
.main_page_header:has(video) .main-text {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 10%;
  padding-inline: clamp(1rem, 8vw, 8rem);
  max-width: none;
  width: 100%;
}
.main_page_header .main-text {
  padding-top: 120px;
  text-align: start;
  margin: 0;
  align-items: start;
}
.main_page_header .main_title {
  font-size: clamp(20px, 3vw, 32px)!important;
}
.main_page_header .subtitle-orange {
  font-size: clamp(24px, 5vw, 46px)!important;
  margin-top: 5px;
}

.input-wrapper {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: white;
  border-radius: 16px !important;
  padding: 6px 20px;
  padding-inline-end: 8px;
  box-shadow: 0 16px 80px -10px rgba(80, 45, 22, 0.16);
  border: 1px solid #efefef;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
  margin-inline: auto;
}
.input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  outline: none;
}
.input-wrapper input::-moz-placeholder {
  color: #aaa;
}
.input-wrapper input::placeholder {
  color: #aaa;
}

.bg-gradient,
.bg-gradient-bottom {
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-gradient-bottom {
  rotate: 180deg;
}

.gradient-bg {
  background: linear-gradient(
    180deg,
    rgba(244, 110, 38, 0.16) 0%,
    rgba(255, 255, 255, 0.6) 60%,
    #ffffff 100%
  );
  border-radius: 40px;
  position: relative;
}

.faq-section {
  margin-block: 2rem 2rem;
}
.faq-section .main_title {
  color: #000;
  margin-bottom: 2rem;
}
.faq-section .FAQ_accordion {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.faq-section .FAQ_accordion .accordion-item {
  border-radius: 16px;
  width: 100%;
  border: 1px solid #e2e2e2bd;
  background: #f7f7f7;
  padding: 24px 20px;
}
.faq-section
  .FAQ_accordion
  .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: #fff;
}
.faq-section
  .FAQ_accordion
  .accordion-item:has(.accordion-button:not(.collapsed))
  .accordion_no {
  background-color: #f05d2a;
  color: #fff;
}
.faq-section .FAQ_accordion .accordion-item .accordion-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
}
.faq-section .FAQ_accordion .accordion-item .accordion_no {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  min-width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5px;
  flex-wrap: wrap;
  height: 24px;
  border-radius: 12px;
  border: 1px solid #efefef;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}
.faq-section .FAQ_accordion .accordion-item .accordion-button {
  padding: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.faq-section .FAQ_accordion .accordion-item .accordion-button:focus {
  border: 0;
}
.faq-section .FAQ_accordion .accordion-item .accordion-body {
  font-size: 18px;
  color: #606060;
  padding-inline-start: 36px;
  border-top: 0;
}

.breadcrumb_section {
  padding-inline: clamp(1rem, 8vw, 8rem);
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.46328 3.60486C5.68162 3.3084 6.09895 3.24507 6.39541 3.46341C6.62569 3.63301 6.84458 3.80264 7.03522 3.95142C7.4158 4.24843 7.92549 4.65731 8.43713 5.10155C8.94546 5.54291 9.47096 6.03226 9.87463 6.48912C10.0758 6.71679 10.2608 6.95209 10.3991 7.18154C10.5264 7.39268 10.6667 7.68281 10.6667 8.00023C10.6667 8.31765 10.5264 8.6078 10.3991 8.81895C10.2608 9.0484 10.0758 9.2837 9.87463 9.51137C9.47096 9.96822 8.94546 10.4576 8.43713 10.8989C7.92549 11.3432 7.4158 11.7521 7.03522 12.0491C6.84458 12.1978 6.62569 12.3675 6.39541 12.5371C6.09895 12.7554 5.68162 12.6921 5.46328 12.3956C5.37551 12.2765 5.33326 12.1377 5.33337 12.0003L5.33337 4.00021C5.33326 3.86274 5.37551 3.72403 5.46328 3.60486Z' fill='%23F05D2A'/%3E%3C/svg%3E");
  --bs-breadcrumb-divider-size: 30px;
}
.breadcrumb_section .breadcrumb-item,
.breadcrumb_section .breadcrumb-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  flex-wrap: nowrap;
  font-size: 16px;
  font-weight: 500;
  color: #1d5166;
}

.breadcrumb-item + .breadcrumb-item::before {
  top: 2px;
  position: relative;
  padding: 0px;
}

.custom-form .form-label .req-star {
  color: #ff4d4d;
  margin-inline-start: 4px;
}
.custom-form .form-control,
.custom-form .form-select,
.custom-form .form-control-custom {
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.6rem 0.6rem;
  font-size: 16px;
  color: #000;
  outline: none;
  transition: all 0.3s ease;
}
.custom-form .form-control::-moz-placeholder,
.custom-form .form-select::-moz-placeholder,
.custom-form .form-control-custom::-moz-placeholder {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 400;
}
.custom-form .form-control::placeholder,
.custom-form .form-select::placeholder,
.custom-form .form-control-custom::placeholder {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 400;
}
.custom-form .form-control:focus,
.custom-form .form-select:focus,
.custom-form .form-control-custom:focus {
  background-color: #f2f2f2;
  box-shadow: 0 0 0 1px rgba(29, 81, 102, 0.5);
}
.custom-form textarea.form-control-custom {
  resize: none;
  height: auto;
}
.custom-form .form-group.has-icon {
  position: relative;
}
.custom-form .form-group.has-icon .input-icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-form .form-group.has-icon .input-icon svg {
  width: 18px;
  height: 18px;
}
.custom-form .form-group.has-icon .form-control {
  padding-right: 45px;
}
.custom-form
  .form-group.has-icon
  .form-control::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 100%;
  background: transparent;
  color: transparent;
  cursor: pointer;
  opacity: 0;
  z-index: 3;
}
.custom-form .form-group .gender-switch {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}
.custom-form .form-group .gender-switch .btn-gender {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  background: #f7f7f7;
  border: 1px solid transparent;
  padding: 11px 20px;
  border-radius: 8px;
  color: #606060;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-form .form-group .gender-switch .btn-gender svg {
  width: 20px;
  height: 20px;
  color: #aaa;
}
.custom-form .form-group .gender-switch .btn-gender:has(input:checked) {
  background: rgba(240, 93, 42, 0.05);
  border-color: rgba(240, 93, 42, 0.2);
  color: #f05d2a;
}
.custom-form .form-group .gender-switch .btn-gender:has(input:checked) svg {
  color: #f05d2a;
}
.custom-form
  .form-group
  .gender-switch
  .btn-gender:hover:not(:has(input:checked)) {
  background: #eee;
}

.upload-area {
  border: 2px dashed #efefef;
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  flex-wrap: wrap;
  background: #f7f7f7;
  cursor: pointer;
  transition: all 0.3s ease;
}
.upload-area:hover {
  border-color: #f05d2a;
  background: rgba(240, 93, 42, 0.02);
}
.upload-area .upload-text {
  font-size: 16px;
  font-weight: 400;
  color: #606060;
}
.upload-area .upload-text span {
  color: #f05d2a;
}

.custom-label,
.custom-form .form-label {
  display: block;
  color: #606060;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

/* Flatpicker style */
.flatpickr-calendar {
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.flatpickr-calendar .flatpickr-months {
  background-color: #f05d2a;
  padding: 8px;
  color: #fff;
  border-radius: 16px 16px 0 0;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff !important;
  color: #fff !important;
  font-weight: 800;
  font-size: 20px;
  transition: all 0.3s ease;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
  fill: rgba(255, 255, 255, 0.7) !important;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month {
  display: flex !important;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  position: static !important;
  padding: 0 0px !important;
}
.flatpickr-calendar .flatpickr-months .flatpickr-current-month .numInputWrapper,
.flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  .flatpickr-monthDropdown-months {
  width: auto !important;
  flex: 1;
}
.flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  .numInputWrapper:hover,
.flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  .flatpickr-monthDropdown-months:hover {
  background-color: transparent !important;
}
.flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  .numInput.cur-year {
  direction: ltr !important;
  color: #fff !important;
}
.flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  select.flatpickr-monthDropdown-months {
  color: #fff !important;
  font-family: inherit;
  font-weight: 600;
}
.flatpickr-calendar
  .flatpickr-months
  .flatpickr-current-month
  select.flatpickr-monthDropdown-months
  option {
  color: #000 !important;
  background: #fff;
}
.flatpickr-calendar .flatpickr-day:hover {
  background-color: rgba(240, 93, 42, 0.03) !important;
  border-color: rgba(240, 93, 42, 0.03);
}
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange {
  background-color: #f05d2a !important;
  border-color: #f05d2a !important;
  border-radius: 50% !important;
  color: #fff !important;
}
.flatpickr-calendar .flatpickr-day.today {
  border: 1px solid #f05d2a !important;
  color: #f05d2a !important;
}
.flatpickr-calendar .flatpickr-day.today.selected {
  color: #fff !important;
}
.flatpickr-calendar .calendar-toolbar {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

/*custom*/

.clarity-stats-row {
  margin-top: 10px;
  box-shadow: 0 0 1px #797979;
  border-radius: 10px;
  padding: 20px;
}
.clarity-stats-row .stat-item {
  text-align: center;
}
.clarity-stats-row .stat-item .stat-number {
  color: #f05d2a;
}
.clarity-stats-row .stat-item .description {
  margin-top: 5px;
}
.clarity-stats-row .stat-item:nth-of-type(3n + 1) {
  justify-self: flex-start;
}
.clarity-stats-row .stat-item:nth-of-type(3n + 2) {
  justify-self: center;
}
.clarity-stats-row .stat-item:nth-of-type(3n + 3) {
  justify-self: flex-end;
}

.small-head-width {
  width: 60%;
}

/*custom*/

@media screen and (max-width: 991px) {
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  }
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
	.hero .main-text .main_title,
	.main-text .main_title,
	.features-section .main-text .main_title{
		    font-size: 40px;
	}
	.secondary-main-text .main_title{
		font-size: 35px;
	}
	.small_main_text .main_title{
		    font-size: 26px;
	}
	.problems-section{
	    padding-bottom: 30px;
	}
	.problems-section .problem-grid{
		margin-top: 0
	}
	.features-section .main-text{
		padding-top: 0
	}
	.features-section .features-timeline .timeline-item .timeline-marker{
		top: 15px;
	}
	.services-section .service-grid{
		margin-top: 0
	}
	.services-section .service-col{
		margin-top: 0;
		margin-bottom: .8rem;
	}
	.smart-systems-section .system-item .item-header .item-title h3{
		    font-size: 25px;
	}
	.transformation-section .transformation-right{
		    padding: 40px 15px;
	}
	.transformation-section .transformation-left{
		padding: 40px 20px;
	}
	.jobs-vacancies{
		    padding: .5rem 1rem;
	}
	.jobs-vacancies .job-card .job-title{
		font-size: 18px;
	}
	.jobs-vacancies .job-card .job-desc{
		    font-size: 14px;
	}
	.jobs-vacancies .job-card .job-tags .tag{
		    padding: 4px 10px;
		    font-size: 12px;
	}
	.jobs-vacancies .job-card .btn-apply{
		    padding: 6px 20px;
	}
	.integration-flex_first .integration-card__item:first-of-type,
	.integration-flex_last .integration-card__item:first-of-type,
	.integration-flex_first .products-card__item:first-of-type,
	.integration-flex_last .products-card__item:first-of-type{
		inset-inline-start: auto;
		inset-inline-end: auto
	}
	.products-card > div{
		width: 100%!important
	}
	.History_section .journey-section .journey-item .robot-box .center-point .dot{
		display: none
	}
	.History_section .journey-section .journey-item:nth-child(even) .robot-box .center-point{
		    left: auto;
    right: auto;
    inset-inline-end: 0;
    bottom: auto;
    top: 0;
	}
	.History_section .journey-section .journey-item:nth-child(odd) .robot-box .center-point{
		    left: auto;
    right: auto;
    inset-inline-start: 0;
    bottom: auto;
    top: 0;
	}
	.navbar .navbar-collapse{
		    padding-top: 150px;
    padding-bottom: 30px;
	}
	.clarity-stats-row .stat-item:nth-of-type(3n + 2),
	.clarity-stats-row .stat-item:nth-of-type(3n + 3),
	.clarity-stats-row .stat-item:nth-of-type(3n + 1){
		    justify-self: center;
	}
}
@media screen and (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 100%;
  }
  .grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  }
  .main_sevices_managment.main_sevices_managment-custom:nth-of-type(even)
    .grid-2
    > div:first-of-type {
    order: 1;
  }
  .main_sevices_managment.main_sevices_managment-custom:nth-of-type(even)
    .grid-2
    > div:last-of-type {
    order: 2;
  }
  .small-head-width {
    width: 100%;
  }
	.hero .main-text .main_title,
	.main-text .main_title,
	.secondary-main-text .main_title,
	.features-section .main-text .main_title{
		    font-size: 30px;
	}
	.hero .hero-visuals .heros_card{
		display: none!important
	}
	.small_main_text .badge-pill, .secondary-main-text .badge-pill, .main-text .badge-pill{
		font-size: 15px;
		    font-weight: bold;
	}
	.transformation-section .secondary-main-text{
		    margin-bottom: 0 !important;
	}
	.small_main_text .main_title{
		    font-size: 23px;
	}
	.jobs-vacancies{
		padding: 0
	}
	.jobs-vacancies .job-card{
		box-shadow: none;
		    border: 1px solid #0000001a;
	}
	.integration-card{
		    gap: 1rem;
	}
	.products-card__item,
	.products-card .products-flex{
		    width: 100%;
    max-width: 100%;
	}
	.products-card{
		gap: 1rem
	}
}
@media screen and (max-width: 567px){
	.hero .main-text .main_title,
	.main-text .main_title,
	.secondary-main-text .main_title,
	.features-section .main-text .main_title{
		    font-size: 25px;
	}
	.main-text .main_desc{
		    font-size: 16px;
	}
	.clarity-section .clarity-text{
		width: 50%
	}
	.clarity-section .clarity-text h2{
		    font-size: clamp(5px, 5vw, 34px) !important;
		    display: flex;
    width: 100%;
    max-width: 100%;
	}
	.clarity-section .clarity-text a{
		    font-size: clamp(6px, 4.2vw, 14px);
    padding: clamp(1px, 1.5vw, 12px) clamp(5px, 5vw, 20px);
	}
	.smart-systems-section .system-item .item-header .item-title h3{
		    font-size: 20px;
	}
	.faq-section .FAQ_accordion .accordion-item .accordion-button{
		    font-size: 16px;
	}
	.faq-section .FAQ_accordion .accordion-item .accordion-body{
		    font-size: 16px;
	}
	.small_main_text .main_title{
		    font-size: 20px;
	}
	.identity_section .identity_content .identity-tabs-content, .identity_section .identity_content .pane-card{
		padding: 10px
	}
	.identity_section .identity_content .identity-tabs-content .pane-title{
		    font-size: 18px;
	}
}
/*# sourceMappingURL=main.css.map */
