.cursor_pointer {
  cursor: pointer;
}

.page_section-pt {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* .page_pt_none {
  padding-top: unset;
} */

.hero_section_adj {
  height: 25rem;
  padding: 0px;
}

.hero_section_content_wrap {
  height: 100%;
  padding: 0px !important;
}

.hero_section_inner_content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.section-descr {
  font-size: 1.3rem;
}

.why_choose-animation {
  scale: 1;
  transition: 0.5s ease-in-out;

  &:hover {
    scale: 1.07;
  }
}

.why_choose_heading {
  display: inline-block;
  animation: buzz_animation 3s infinite linear;
  will-change: transform;
}

@keyframes buzz_animation {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  10% {
    transform: translate(-2px, 1px) rotate(-1.2deg);
  }

  25% {
    transform: translate(3px, -2px) rotate(1.6deg);
  }

  40% {
    transform: translate(-1.5px, 2px) rotate(-0.8deg);
  }

  60% {
    transform: translate(1.8px, -1.6px) rotate(1.0deg);
  }

  80% {
    transform: translate(-2px, 0.8px) rotate(-1.1deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

:root {
  --bg: #f8fafc;
  --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.9) 100%);
  --card-border: rgba(255, 255, 255, 0.6);
  --card-reflect: rgba(255, 255, 255, 0.3);
  --text: #1e1e1e;
  --muted: #555;
  --accent: #00b4d8;
  --accent-2: #6a4cff;
  --radius: 20px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.why-choose {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.why-choose__icon a {
    cursor: auto;
}

.why-choose__item {
  position: relative;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 32px;
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  backdrop-filter: blur(10px) saturate(180%);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}

.why-choose__item::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.2) 40%,
      transparent 70%);
  transform: rotate(25deg);
  opacity: 0.3;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.why-choose__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--gradient-primary-1);
  opacity: 0;
  z-index: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.why-choose__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.why-choose__item:hover::after {
  opacity: 0.15;
}

.why-choose__item:hover::before {
  opacity: 0.5;
}

.why-choose__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  /* background: var(--gradient-primary-1); */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.why-choose__icon img {
  max-width: 42px;
  width: 100%;
}

.why-choose__icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  display: block;
}

.why-choose__title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.why-choose__text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* .why-choose__link {
  background: var(--gradient-primary-1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

.why-choose__link:hover {
  color: var(--accent-2);
  text-decoration: none;
} */

.why-choose__shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.5) 0%, transparent 80%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.why-choose__item:hover .why-choose__shine {
  left: 125%;
}

@media (max-width: 420px) {
  .why-choose__item {
    padding: 20px;
  }
}


/* =================== Teachnology =================== */

.supported-technologies {
  padding: 2rem 1rem 0rem 1rem;
  background-color: #fff;
}

.supported-technologies__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.supported-technologies__item {
  text-align: center;
}

.supported-technologies__item a:hover {
  text-decoration: none;
}

.supported-technologies__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.supported-technologies__image {
  transition: all 0.3s ease;
}

.supported-technologies__link:hover .supported-technologies__image,
.supported-technologies__item.active .supported-technologies__image {
  transform: translateY(-4px);
}

.supported-technologies__image {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}

.supported-technologies__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.supported-technologies__title {
  position: relative;
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.supported-technologies__title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #0071e3;
  transition: width 0.3s ease, left 0.3s ease;
}

.supported-technologies__link:hover .supported-technologies__title::after,
.supported-technologies__item.active .supported-technologies__title::after {
  width: 100%;
  left: 0;
}

.rel__section {
  position: relative;
}

.supported-technologies__content {
  max-height: 0;
  opacity: 0;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #555;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  word-wrap: break-word;
  white-space: normal;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  box-shadow: 0px 1px 5px 3px #529bff7d;
  padding: 18px 10px;
  z-index: 20;
  background: #fff;
  border-radius: 6px;
  /* border: 2px solid;
  border-image: linear-gradient(45deg, var(--color-primary-1) 0%, var(--color-primary-1-a) 100%);
  border-image-slice: 1; */
}

.supported-technologies__content p {
  font-size: 16px;
  margin: 0;
}

.supported-technologies__item.active .supported-technologies__content {
  max-height: max-content;
  opacity: 1;
}

.supported-technologies__item.active .supported-technologies__content::before {
  content: "";
  position: absolute;
  top: -12px;
  left: var(--arrow-left-before);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #fff;
  z-index: 2;
}

.supported-technologies__item.active .supported-technologies__content::after {
  content: "";
  position: absolute;
  top: -14px;
  left: var(--arrow-left-after);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 14px solid;
  border-bottom-color: var(--color-primary-1);
  z-index: 1;
  opacity: 0.3;
}

@media screen and (max-width:390px) {
  .why-choose__grid {
    grid-template: unset;
  }

  .supported-technologies {
    padding: 0rem 1rem;
  }

  .supported-technologies__link {
    padding: 0px;
  }
}


/* ===================== Services ======================== */

:root {
  --clr-primary: #0048ff;
  --clr-primary-dark: #07b4c2;
  --clr-text: #1a1a1a;
  --clr-muted: #666;
  --clr-bg-light: #f8f9fa;
  --radius-lg: 24px;
  --radius-md: 16px;
  --transition: 0.3s ease;
}

.services {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem;
  /* margin-bottom: 2.5rem; */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services__label {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.services__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.services__hero {
  position: sticky;
  top: calc(var(--nav-height, 65px) + 20px);
}


.services__title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: var(--clr-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services__description {
  font-size: 1.125rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.services__cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition);
}

.services__cta:hover {
  transform: scale(1.05);
  color: #fff;
  text-decoration: none;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services__card {
  background: var(--clr-bg-light);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border-left: 5px solid var(--color-primary-1);
  transition: var(--transition);
}

.services__card:hover {
  background: #fff;
  box-shadow: 3px 6px 19px rgb(124 196 255);
  transform: translateX(10px);
}

.services__card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.services__number_root {
  padding: 0.8rem;
  box-shadow: rgb(184, 185, 190) 2px 2px 5px inset, rgb(255, 255, 255) -3px -3px 7px inset;
  border-radius: 1rem;
}

.services__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: breathe 2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.services__icon:hover {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.services__card-title {
  font-size: 1.25rem;
  color: var(--clr-text);
  margin-bottom: 0px;
}

.services__card-text {
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  overflow: hidden;
  white-space: normal;
  word-wrap: break-word;
}

.services__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.services__feature {
  color: #4177ff;
  background-color: transparent;
  border-color: rgb(209, 217, 230);
  padding: 0.5rem 1rem;
  border-radius: 1.6rem;
  box-shadow: rgb(184, 185, 190) 0px 2px 8px, rgb(255, 255, 255) -3px 5px 6px;
  font-size: 1rem;
}

.services__feature:hover {
  box-shadow: rgb(184, 185, 190) 2px 2px 5px inset, rgb(255, 255, 255) -3px -3px 7px inset;
}

.contact_main_content_wrapper {
  margin-top: 3rem;
}

.section-title.faq_content {
  color: var(--color-dark-1);
}

.your_idea_sec {
  background: url('/assets/images/about/section/your_ideas.webp');
  background-position: right !important;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  .services__wrapper {
    grid-template-columns: 1fr;
  }
  .your_idea_sec{
    background-size: cover;
  }

  .services__hero {
    position: static;
  }
  /* make image take a reasonable portion of the row on tablet */
  .home_backgroung .homeImg{
      flex: 0 0 45%;
      max-width: 45%;
      width: 45%;
  }
  .home_backgroung .row_home {
    padding:0px;
  }

}

@media (max-width: 640px) {
  .services__title {
    font-size: clamp(1.8rem, 6vw, 2.25rem);
  }

  .services {
    padding: 3rem 1.5rem;
  }
}


.page-section.sa_padding_top,
.sa_padding_top {
  padding-top: 2.8rem;
}

.page-section.sa_padding_bottom,
.sa_padding_bottom {
  padding-bottom: 2.8rem;
}

.sa_img_padding_top_btm {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.page-section.home_main_section {
  padding-top: var(--section-padding-y);
}

.page-section.innovation_partner {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

@media screen and (max-width:600px) {
  .page-section.sa_padding_top {
    padding-top: 1.8rem;
  }

  .sa_mob_padding_top {
    padding-top: 1.8rem;
  }

  .page-section.innovation_partner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  footer .new_footer_top {
    padding: 4rem 0 270px;
  }

  .page-section.sa_padding_bottom {
    padding-bottom: 1.8rem;
  }

  .sa_img_padding_top_btm {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .supported-technologies {
    padding: 0rem 1rem;
  }
  .home_backgroung {
    display: flex;
    flex-direction: column-reverse;
    padding: 70px 0;
  }

  .home_backgroung .homeImg{
    width: 300px;
    margin: 0 auto; /* center the container on narrow screens */
    display: block;
    text-align: center;
  }
  .homeImg img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* center the image itself */
  }

}

.home_backgroung {
  /* background-image: url('../images/home/hero-section/herobanner.webp'); */
  background-image: url(../images/home/homeSection/homeBG.webp);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  width: 100%;
  min-height: 900px;
  height: 100vh;
  padding: 100px;
  position: relative;
  display: flex;
}

  .homeImg{
  /* use flex-basis / percentage sizing instead of a huge fixed width */
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homeImg img {
  width: 100%;
  height: auto;
}
.text-lg-end {
  text-align: center !important;
}

@media (min-width: 768px) {
  .text-lg-end {
    text-align: right !important;
  }
}


@media(max-width:1399px) {
  /* .home_backgroung:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--gradient--box--services-2);
    opacity: .97;
  }

  .home_backgroung .hs-title-9,
  .home_backgroung .hs-descr {
    color: #fff;
  } */
}

@media screen and (max-width: 1200px) {
  .home_backgroung {
    background-position: left;
    padding: 80px 0;
    height: auto;
    min-height: 500px;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .home_backgroung {
    background-position: left center;
    min-height: 500px;
    padding: 50px 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .home_backgroung {
    background-size: cover;
    /* background-image: url('../images/home/hero-section/herobanner-mobile.webp'); */
    background-image: url(../images/home/homeSection/homeBG.webp);
    background-position: bottom center;
    min-height: 600px;
  }

  .your_idea_sec {
    background: url('/assets/images/about/section/aboutPageMob.webp');
    background-size: cover;
    height: 650px;
  }
}

@media screen and (max-width: 480px) {
  .home_backgroung {
    min-height: 440px;
  }
}

@media screen and (max-width: 400px) {
  .home_backgroung {
    min-height: 360px;
  }
  .your_idea_sec {
    height: 635px;
  }
}

.row_home {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 50px;
}

