: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);
  --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;
}

.cursor_pointer {
  cursor: pointer;
}

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

.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;
}

.font-600 {
  font-weight: 600;
}

@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);
  }
}

.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,
.sec_card {
  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,
.sec_card::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,
.sec_card::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.center,
.sec_card {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

.why-choose__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  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: 38px;
  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__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;
  }
}

.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;
}

.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;
}



.services {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 4rem 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;
  }

  .home_backgroung .homeImg {
    flex: 0 0 45%;
    max-width: 45%;
    width: 45%;
  }

  .home_backgroung .row_home {
    padding: 0px;
  }

  .na-highlight__main-container {
    flex-direction: column;
  }

  .services__wrapper {
    grid-template-columns: 1fr;
  }

  .your_idea_sec {
    background-size: cover;
  }

  .services__hero {
    position: static;
  }

  .home_backgroung .homeImg {
    flex: 0 0 45%;
    max-width: 45%;
    width: 45%;
  }

  .home_backgroung .row_home {
    padding: 0px;
  }


  .na-highlight__right-panel {
    padding: 0;
  }

  .na-highlight__hero-content {
    text-align: center;
  }

  .na-cta__section {
    padding: 60px 0;
  }

  .na-highlight__feature-content {
    padding: 1rem;
  }

  .na-highlight__left-panel {
    justify-content: center;
  }

  .na-highlight__right-panel {
    justify-content: center;
    flex-direction: column;
  }

}

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

  .services {
    padding: 3rem 1.5rem;
  }

  .security-scroll .scroll-track {
    padding: 15px;
  }

  .why-choose__item,
  .sec_card {
    padding: 12px;
  }

  .sec_card {
    min-height: 250px;
    height: 100%;
    width: 280px;
  }

  .icon-symbol img {
    width: 30px;
  }

  .solution__container .content-icon {
    width: 70px;
    height: 70px;
  }

  .solution__container .content-panel {
    padding: 30px 12px;
  }

  .na-highlight__main-container {
    padding: 0 6px;
  }

  .sa-comparison.container {
    padding-left: 0;
    padding-right: 0;
  }
}


.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);
}



.home_backgroung {
  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 {
  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;
}


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


/* Comparison section css */

.sa-comparison__heading {
  text-align: center;
}

.sa-comparison {
  width: 90%;
  height: 100%;
  padding-bottom: 3rem;
}

.sa-comparison__title {
  text-align: center;
  color: white;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.sa-comparison__wrapper {
  background: white;
  border-radius: 0.9375rem;
  overflow: hidden;
  box-shadow: -1px 0px 24px 10px #C7C7C7;
  animation: fadeInUp 0.8s ease-out;
}

.sa-comparison__table {
  width: 100%;
  border-collapse: collapse;
}

.sa-comparison__header {
  background: linear-gradient(90deg, #1000ffb0 0%, #35f1d5e0 100%);
  color: white;
}

.sa-comparison__header-cell {
  padding: 1.5625rem 1.25rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.sa-comparison__header-cell--feature {
  text-align: left;
  padding-left: 1.875rem;
}

.sa-comparison__row {
  border-bottom: 0.0625rem solid #e0e0e0;
  transition: background 0.3s ease;
  animation: fadeInUp 0.6s ease-out backwards;
}

.sa-comparison__row:nth-child(1) {
  animation-delay: 0.1s;
}

.sa-comparison__row:nth-child(2) {
  animation-delay: 0.15s;
}

.sa-comparison__row:nth-child(3) {
  animation-delay: 0.2s;
}

.sa-comparison__row:nth-child(4) {
  animation-delay: 0.25s;
}

.sa-comparison__row:nth-child(5) {
  animation-delay: 0.3s;
}

.sa-comparison__row:nth-child(6) {
  animation-delay: 0.35s;
}

.sa-comparison__row:nth-child(7) {
  animation-delay: 0.4s;
}

.sa-comparison__row:nth-child(8) {
  animation-delay: 0.45s;
}

.sa-comparison__row:hover {
  background: #f8f9ff;
}

.sa-comparison__row:last-child {
  border-bottom: none;
}

.sa-comparison__cell {
  padding: 1.25rem;
  text-align: center;
}

.sa-comparison__cell--feature {
  text-align: left;
  padding-left: 1.875rem;
  font-weight: 500;
  color: #333;
}

.sa-comparison__icon {
  width: 1.5rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.sa-comparison__icon--check {
  color: #10b981;
  animation: checkPop 0.5s ease-out;
}

.sa-comparison__icon--check:hover {
  transform: scale(1.3) rotate(10deg);
}

.sa-comparison__icon--cross {
  animation: crossShake 0.5s ease-out;
}

.sa-comparison__icon--cross:hover {
  transform: scale(1.3) rotate(-10deg);
}

@keyframes checkPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.2) rotate(10deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes crossShake {
  0% {
    transform: scale(0) rotate(180deg);
    opacity: 0;
  }

  50% {
    transform: scale(1.2) rotate(-10deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Highlight Page */

.na-highlight__main-container {
  display: flex;
  gap: 30px;
  padding-top: 3rem;
  width: 90%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-30px);
    opacity: 0.5;
  }
}

.na-highlight__left-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
}

.na-highlight__hero-content {
  max-width: 36rem;
}

.na-highlight__icon-box {
  display: inline-block;
  padding: 0.75rem;
  background: rgba(0, 72, 255, 0.15);
  border: 1px solid rgba(0, 72, 255, 0.4);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}

.na-highlight__icon-box img {
  width: 35px;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(0, 72, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 28px rgba(0, 72, 255, 0.55);
  }
}

.na-highlight__title {
  /* font-size: 56px; */
  /* font-weight: 500; */
  color: #010101;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.na-highlight__title-text {
  position: relative;
  z-index: 2;
}

.na-highlight__description {
  color: var(--color-gray-1);
  font-size: 18px;
}

.na-highlight__right-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}

.na-highlight__features-container {
  max-width: 28rem;
  width: 100%;
}

.na-highlight__feature-item {
  padding: 1rem 0rem;
  opacity: 0;
  transform: translateX(32px);
  animation: slide-in 0.5s ease-out forwards;
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.na-highlight__feature-card {
  position: relative;
}

.na-highlight__feature-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(to right, #0048ff, #0076ff);
  border-radius: 0.75rem;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s ease;
}

.na-highlight__feature-card:hover .na-highlight__feature-glow {
  opacity: 0.4;
}

.na-highlight__feature-content {
  background: white;
  border: 1px solid rgba(0, 72, 255, 0.25);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.na-highlight__feature-card:hover .na-highlight__feature-content {
  border-color: #0048ff;
  box-shadow: 0 6px 20px rgba(0, 72, 255, 0.15);
}

.na-highlight__check-icon {
  width: 3rem;
  border-radius: 0.5rem;
  transform: scale(0);
  opacity: 0;
  animation: check-appear 0.5s ease-out forwards;
}

.na-highlight__check-icon img {
  width: 100%;
}

@keyframes check-appear {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.na-highlight__check-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  color: white;
}

.na-highlight__feature-text {
  color: #010101;
  font-size: 1rem;
  font-weight: 500;
}

.na-highlight__feature-underline {
  position: absolute;
  bottom: 0;
  left: 0.6rem;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #0048ff, #0076ff);
  transition: width 0.4s ease;
}

.na-highlight__feature-card:hover .na-highlight__feature-underline {
  width: 96%;
}

@media (min-width: 1024px) {
  .na-highlight__main-container {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  .na-highlight__right-panel {
    justify-content: center;
  }
}

/* CTA CSS */

.na-cta__section {
  padding: 100px 0;
  background: linear-gradient(to bottom right, #ffffff 0%, #eaf1ff 100%);
}

.why_choose_us_main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.heading_aligment {
  display: flex;
  justify-content: center;
  align-items: center;
}

.na-cta__title,
.na-cta__subtitle {
  text-align: center;
  color: #010101;
}

/* Blog content css */
.blog_detail__title {
  font-size: 2rem;
  text-align: center;
  color: #010101;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog_detail__section {
  margin-bottom: 2rem;
}

.blog_detail__section-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #010101;
  border-left: 4px solid #0048ff;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.blog_detail__text {
  margin-bottom: 1rem;
  color: #444;
}

.blog_detail__conclusion {
  background-color: #0048ff26;
  padding: 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.blog_detail__conclusion-title {
  font-size: 1.5rem;
  color: #0048ff;
  margin-bottom: 1rem;
}

.key-points {
  margin-top: 30px;
  padding-bottom: 3rem;
}

.key-points-box {
  background: #0048ff;
  border-radius: 16px;
  padding: 2rem;
  color: white;
}

.key-points-box h2 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

.key-point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.key-point-item:last-child {
  margin-bottom: 0;
}

.key-point-dot {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.key-point-dot-inner {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: white;
}

.key-point-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.keywords {
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  /* justify-content: center; */
  align-items: center;
}

.keywords-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

.keyword-tag {
  padding: 0.5rem 1rem;
  background: rgba(0, 72, 255, 0.1);
  color: #0048ff;
  border-radius: 2rem;
  font-size: 0.875rem;
}

.btn-mod,
a.btn-mod.back-to-blog-btn {
  background-color: #0048ff;
  padding: 1rem 2rem;
  margin: 2rem 0rem;
  border-radius: 5px;

}

.blog_black_btn {
  display: flex;
  justify-content: center;
}

.font_italic {
  font-style: italic;
}

.blog_page_inner_adj {
  padding: 0px 1rem;
}

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

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

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

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

  .your_idea_sec {
    background-size: cover;
  }

  .services__hero {
    position: static;
  }

  .home_backgroung .homeImg {
    flex: 0 0 45%;
    max-width: 45%;
    width: 45%;
  }

  .home_backgroung .row_home {
    padding: 0px;
  }


  .na-highlight__right-panel {
    padding: 0;
  }

  .na-highlight__hero-content {
    text-align: center;
  }

  .na-cta__section {
    padding: 60px 0;
  }

  .blog_container {
    width: 100%;
    padding-bottom: unset;
  }

  .preview_blog_page_layout {
    flex-direction: column;
  }

  .blog_sidebar {
    margin-top: unset;
    width: 100%;
  }

  .mob_blog_container {
    display: flex;
    gap: 2rem;
  }

  .blog-card-wrapper {
    flex: 1;
  }

  .blog-card-wrapper,
  .recent-posts-card {
    margin: unset;
  }

  .tag-widget {
    margin-top: 2rem;
  }

  .blog_post_root_wrapper {
    margin-top: 1.5rem;
  }

}

@media (min-width: 1024px) {
  .na-highlight__main-container {
    flex-direction: row;
  }

  .mob_blog_container {
    flex-direction: column;
  }
}

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

  .services {
    padding: 3rem 1.5rem;
  }

}

@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;
    display: block;
    text-align: center;
  }

  .homeImg img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

}

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

@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: 991px) {
  .na-highlight__hero-content {
    max-width: 100%;
  }
}

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

  .key-points-box {
    padding: 3rem;
  }

  .blog_detail__conclusion {
    padding: 16px;
  }

  .key-points-box {
    padding: 1.5rem;
  }

  .keywords {
    padding: 1.5rem 0 0 0;
  }

  .key-points {
    padding: 0;
  }

  .mob_blog_container {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .home_backgroung {
    background-size: cover;
    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;
  }
}


@media (max-width: 768px) {

  .sa-comparison__header-cell,
  .sa-comparison__cell {
    padding: 0.9375rem 0.625rem;
    font-size: 0.9rem;
  }

  .sa-comparison__cell--feature,
  .sa-comparison__header-cell--feature {
    padding-left: 0.9375rem;
  }

  .sa-comparison__icon {
    font-size: 1.5rem;
  }
}

.blog-box {
  padding: 5px;
  /* background-color: #fff; */
}

.overflow-hidden {
  overflow: hidden;
}

.blog_img_adj {
  border-radius: 10px;
}

.blog-box img {
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 10px;
}

.img-fluid {
  max-width: 100%;
  max-height: 600px;
}

.blog-block:hover img {
  -webkit-transform: rotate(3deg) scale(1.15);
  transform: rotate(3deg) scale(1.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


/* ======== What We Can DO ================ */

.why-choose-slider-container {
  position: relative;
  overflow: hidden;
}

.what_we_can_do_main_wrapper {
  display: flex;
  gap: 30px;
  transition: 0.45s;
}

.why-choose__item.what_we_can_do_card {
  flex: 0 0 calc((100% - 60px)/3);
  box-sizing: border-box;
}

.what_we_do_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  cursor: pointer;
  border-radius: 30px;
  z-index: 99999;
  transition: .3s;
  width: 3.5rem;
  height: 3.5rem;
}

.what_we_do_arrow img {
  width: 0.6rem;
}

.what_we_do_arrow:hover {
  background: rgba(255, 255, 255, 0.45);
}

.what_we_do_arrow_arrow-left {
  left: 10px;
}

.what_we_do_arrow_arrow-right {
  right: 10px;
}

.what_we_do_arrow:disabled {
  opacity: .3;
  cursor: not-allowed;
}

.why-choose__item.what_we_can_do_card img,
.why-choose__item.what_we_can_do_card .why-choose__icon>* {
  transition: transform 0.4s, filter 0.4s;
  transform-origin: center center;
  filter: brightness(0.85);
}

.why-choose__item.what_we_can_do_card.center img,
.why-choose__item.what_we_can_do_card.center .why-choose__icon>* {
  transform: scale(1.12);
  filter: brightness(1);
  width: 2rem;
}

.why-choose__item.what_we_can_do_card {
  transform: scale(0.9);
}

.why-choose__item.what_we_can_do_card.center {
  transform: scale(1);
}

.what_we_can_do {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.preview_blog_page_layout {
  display: flex;
  gap: 2rem;
}

.flex_cen_cen {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width:900px) {
  .why-choose__item.what_we_can_do_card {
    flex: 0 0 calc((100% - 30px)/2);
  }

  .what_we_do_arrow {
    top: unset;
    bottom: 20px;
    transform: translateY(0);
  }

  .what_we_can_do_arrow_wrapper {
    margin-top: 3rem;
  }

  .why-choose-slider-container {
    padding-bottom: 6rem;
  }

  .what_we_can_do {
    padding-bottom: unset;
  }

}

@media(max-width:767px) {
  .why-choose__item.what_we_can_do_card {
    flex: 0 0 100%;
  }

  .what_we_do_arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .what_we_do_arrow img {
    width: 0.5rem;
  }
}