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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.3rem;
  height: 0.5rem;
}
::-webkit-scrollbar-track {
  background: var(--color-primary-900, #1c1733);
}
::-webkit-scrollbar-thumb {
  background: #e3e3e3;
  border-radius: 10px;
}

/* Remove default focus style */
:focus {
  outline: 0;
}

:root {
  /* Color styles */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-primary-50: #f5f4fa;
  --color-primary-100: #e6e4f2;
  --color-primary-200: #ccc9e5;
  --color-primary-300: #ada6d2;
  --color-primary-400: #8a80bd;
  --color-primary-500: #5b4da0;
  --color-primary-600: #4d4189;
  --color-primary-700: #3e346d;
  --color-primary-800: #2d2650;
  --color-primary-900: #1c1733;
  --color-secondary-500: #6c757d;
  --color-success-500: #198754;
  --color-danger-500: #dc3545;
  --color-warning--500: #ffc107;
  --color-info-500: #0dcaf0;
  --color-neutral-50: #f8f9fa;
  --color-neutral-100: #f1f3f5;
  --color-neutral-200: #e9ecef;
  --color-neutral-300: #dee2e6;
  --color-neutral-400: #ced4da;
  --color-neutral-500: #adb5bd;
  --color-neutral-600: #6c757d;
  --color-neutral-700: #495057;
  --color-neutral-800: #343a40;
  --color-neutral-900: #212529;

  /* Text-size styles */
  --font-sizes-h1: 70px;
  --font-sizes-h2: 55px;
  --font-sizes-h3: 45px;
  --font-sizes-h4: 40px;
  --font-sizes-h5: 30px;
  --font-sizes-h6: 24px;
  --font-sizes-body: 24px;
  --font-sizes-small: 14px;
  --body-medium: 16px;
  --body----semi--bold: 16px;
  --body----bold: 16px;
  --small: 14px;
  --small----regular: 14px;
  --small----medium: 14px;
  --button--label: 16px;
  --small--button--label: 14px;
  --input--label: 16px;
  --display: 72px;

  /* Font Weight */
  --font-weights-bold: 700;
  --font-weights-regular: 400;
  --font-weights-medium: 500;

  /* Effect styles */
  --inner-shadow: inset 8px 8px 6px rgba(0, 0, 0, 0.25),
    inset -8px -8px 6px rgba(0, 0, 0, 0.25);

  /* Font Family */
  --font-families-base: Montserrat;

  /* Gradient */
  --Gradient-White-45deg: linear-gradient(
    112deg,
    var(--color-white, #fff) 0%,
    rgba(255, 255, 255, 0) 20.19%,
    rgba(255, 255, 255, 0) 77.88%,
    var(--color-white, #fff) 100%
  );
}

body {
  font-family: var(--font-families-base);
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
ol,
ul {
  font-family: var(--font-families-base);
  font-style: normal;
  margin: 0;
  color: inherit;
}

/* For All Buttons and Links */
.btn {
  all: unset;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  padding: var(--spacing-3, 16px) var(--spacing-4, 24px);
  border-radius: var(--border-radius-md, 4px);
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--body-medium, 16px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
  cursor: pointer;
  height: fit-content;
  transition: background-color 0.3s ease-in, color 0.3s ease-out;
}

/* Button Primary */
.btn-primary {
  background: var(--color-primary-500, #5b4da0);
  box-shadow: 0 1px 0 1px var(--color-primary-700, #3e346d);
  color: var(--color-primary-50, #f5f4fa);
}
.btn-primary:hover {
  background: var(--color-primary-600, #4d4189);
}
.btn-primary:hover:active {
  box-shadow: 0 1px 2px 1px var(--color-primary-700, #3e346d) inset;
  background: var(--color-primary-600, #4d4189);
  color: var(--color-primary-50, #f5f4fa);
}
.btn-primary.disable {
  color: var(--color-neutral-500, #adb5bd);
  background: var(--color-neutral-200, #e9ecef);
  box-shadow: 0 1px 0 1px var(--color-neutral-400, #ced4da);
}
/* Button Primary End */

/* Button Secondary */
.btn-secondary {
  border: var(--border-width-2, 2px) solid var(--color-primary-500, #5b4da0);
  background: var(--color-white, #fff);
  color: var(--color-primary-500, #5b4da0);
}

.categoriessection .btn-secondary:hover{
            background: var(--color-white, #fff);
  color: var(--color-primary-500, #5B4DA0);
        }

.btn-secondary:hover {
  background: var(--color-primary-500, #5b4da0);
  color: var(--color-primary-50, #f5f4fa);
  border-color: var(--color-primary-500, #5b4da0);
}
.btn-secondary:hover:active {
  box-shadow: 0 1px 2px 1px var(--color-primary-700, #3e346d) inset;
  background: var(--color-primary-500, #5b4da0);
  color: var(--color-primary-50, #f5f4fa);
  border-color: var(--color-primary-500, #5b4da0);
  box-shadow: 0 1px 2px 1px var(--color-primary-700, #3e346d) inset;
}
.btn-secondary.disable {
  color: var(--color-neutral-500, #adb5bd);
  border: var(--border-width-2, 2px) solid var(--color-neutral-400, #ced4da);
  background: var(--color-white, #fff);
}
/* Button Secondary End */

/* Button Link */
.btn-link {
  background: rgba(255, 255, 255, 0);
  color: var(--color-primary-500, #5b4da0);
}
.btn-link:hover {
  color: var(--color-primary-600, #4d4189);
}
.btn-link.disable {
  color: var(--color-neutral-500, #adb5bd);
}

/* for all buttons */
.btn-regular {
  padding: var(--spacing-2, 8px) var(--spacing-3, 16px);
}
.btn-small {
  padding: var(--spacing-1, 4px) var(--spacing-2, 8px);
  gap: var(--spacing-1, 4px);
  font-size: var(--font-sizes-small, 14px);
}
.btn-pills {
  border-radius: var(--border-radius-pill, 9999px);
}
/* End Buttons Style */
.a-link {
  color: inherit;
  font-size: var(--font-sizes-small, 16px);
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 50%;
  /* 8px */
  text-underline-position: from-font;
}

/* Text Styles */
.text-h1 {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* H1 */
  font-size: var(--font-sizes-h1, 70px);
  font-weight: var(--font-weights-bold, 700);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.text-h2 {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* H2 */
  font-size: var(--font-sizes-h2, 55px);
  font-weight: var(--font-weights-bold, 700);
  line-height: 130%; /* 52px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}
.text-h3 {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* H3 */
  font-size: var(--font-sizes-h3, 45px);
  font-weight: var(--font-weights-bold, 700);
  line-height: 130%; /* 41.6px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}
.text-h4 {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* H4 */
  font-size: var(--font-sizes-h4, 40px);
  font-weight: var(--font-weights-bold, 700);
  line-height: 130%; /* 31.2px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}
.text-h5 {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* H5 */
  font-size: var(--font-sizes-h5, 30px);
  font-weight: var(--font-weights-semibold, 600);
  line-height: 130%; /* 26px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}
.text-h6 {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* H6 */
  font-size: var(--font-sizes-h6, 24px);
  font-weight: var(--font-weights-semibold, 600);
  line-height: 130%; /* 20.8px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}
.text-para-lg {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* Body/Body - Regular */
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 24px);
  font-style: normal;
  font-weight: var(--font-weights-regular, 400);
  line-height: 150%;
}
.text-para {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* Body */
  font-size: var(--body-medium, 16px);
  font-weight: var(--font-weights-medium, 500);
  line-height: 150%; /* 32px */
  letter-spacing: var(--font-letterSpacing-body, 0);
}
.text-small {
  /* color: var(--color-primary-50, #f5f4fa); */
  /* Small */
  font-size: var(--font-sizes-small, 16px);
  font-weight: var(--font-weights-regular, 400);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-small, 0.16px);
  line-height: 150%; /* 24px */
}
.color-primary {
  color: var(--color-primary-500, #5b4da0);
}
.color-light {
  color: var(--color-primary-50, #f5f4fa);
}
.color-dark {
  color: var(--color-primary-900, #1c1733);
}
.bg-light {
  background-color: var(--color-primary-50, #f5f4fa) !important;
}
.bg-dark {
  background-color: var(--color-primary-900, #1c1733) !important;
  color: var(--color-primary-50, #f5f4fa) !important;
}
.lh-150 {
  line-height: 150%;
}
.img-100 {
  height: 100%;
  width: 100%;
}
/* Style */
.header .nav-bar {
  padding: 10px;
  background: var(--color-primary-900, #1c1733);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.nav-bar ul {
  list-style: none;
}
.nav-bar .dropdown-item {
  color: var(--color-primary-50, #f5f4fa);
  font-size: var(--body-medium, 16px);
  font-style: normal;
  font-weight: var(--font-weights-medium, 500);
  line-height: 200%; /* 32px */
  letter-spacing: var(--font-letterSpacing-body, 0);
}

.nav-bar .dropdown-menu .dropdown-item {
  color: var(--color-primary-900, #1c1733);
}
.nav-bar .dropdown-menu .dropdown-item:active {
  background: var(--color-primary-500, #6541d6);
  color: var(--color-primary-50, #f5f4fa);
}

.dropdown-menu {
  display: unset;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.dropdown-menu.show {
  display: unset;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-toggle::after {
  transition: rotate 0.7s ease;
}
.dropdown:hover .dropdown-toggle::after {
  rotate: 180deg;
}

/* Main Container*/
.content-wrapper {
  padding-top: 85px;
  background-color: var(--color-primary-900, #1c1733);
  color: var(--color-primary-50, #f5f4fa);
  overflow-x: clip;
}
/* .content-wrapper.homepage {
  background: var(--color-primary-900, #1c1733);
} */

/* M 08-10-25 */
.hero-section {
  padding: 80px 0;
  /* background: radial-gradient(50% 50% at 50% 50%, rgba(28, 23, 51, 0) 71.17%, #1c1733 100%),var(--color-primary-900, #1c1733); */
}

/* Logo Train */
/* .logo-train-wrapper:hover .logo-train {
  background: #f5f4fa;
} */

.logo-train-wrapper .logo:hover {                 /*1-1*/
  background: var(--color-primary-50, #f5f4fa);
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
}
.logo-train-wrapper .logo:hover img {                 /*1-1*/
  mix-blend-mode: unset;
}

.parent div {
  cursor: url("../images/icons/semiColon2.svg"), auto;
}

.logo-train {
  display: inline-flex;
  background: transparent;
  animation: scroll-left 30s linear infinite;
  transition: background 0.7s ease;
  align-items: center;
  height: 100%;
  overflow-x: hidden;
  /* width: 100vw; */
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-slide .logo {                          /*1-1*/
  margin-right: 85px;
  background: var(--color-primary-900, #1c1733);
  border-radius: var(--border-radius-xl, 16px);
  transition: background 0.7s ease;
  /* padding: 5px 25px; */
  width: 230px;
  height: 95px;
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  mix-blend-mode: luminosity;
  transition: mix-blend-mode 0.7s ease;
  max-width: 200px;
  height: 60px;
}
/*  */
.gallary-section .image-slide {
  border-radius: 16px;
  flex: 0 0 500px;
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallary-section .logo-train {
  animation: scroll-left 60s linear infinite;
}

.logo-train.second {
  animation: scroll-right 60s linear infinite;
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}
/**/
/*.stats-card {
  border-radius: var(--border-radius-lg, 8px);
  border: 1px solid;
  border-image: linear-gradient(112deg, var(--color-white, #FFF) 0%, rgba(255, 255, 255, 0.00) 20.19%, rgba(255, 255, 255, 0.00) 77.88%, var(--color-white, #FFF) 100%);
  border-image-slice: 1;
}*/

.stats-card {
  border-radius: var(--border-radius-lg, 8px);
  background: linear-gradient(
    132deg,
    var(--color-white, #fff) 0%,
    rgba(255, 255, 255, 0) 20.19%,
    rgba(255, 255, 255, 0) 77.88%,
    var(--color-white, #fff) 100%
  );
  position: relative;
  padding: 1px;
  height: 200px;
}

.stats-card-inner {
  height: 100%;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-primary-800, #2d2650);
  transform: translateY(0px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.stats-card:hover {
  background: linear-gradient(
    170deg,
    var(--color-white, #fff) 0%,
    rgba(255, 255, 255, 0) 20.19%,
    rgba(255, 255, 255, 0) 77.88%,
    var(--color-white, #fff) 100%
  );
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.stats-card:hover .stats-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/**/
.solution-section img {
  border-radius: var(--border-radius-xl, 16px);
}

.solution-section .right-column li {
  position: relative;
  transition: padding 0.4s ease;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid #47435b;
}

.solution-section .right-column li a{
	color: inherit;
}

.solution-section .right-column li:last-child {
  border-bottom: unset;
}

.solution-section .right-column li::before {
  position: absolute;
  content: "";
  left: -8px;
  top: 26px;
  opacity: 0;
  display: inline-block;
  transition: all 0.4s ease;
  background: url("../images/icons/arrow-right.svg") no-repeat center/cover;
  height: 24px;
  width: 28px;
}

.solution-section .right-column li.active::before {
  opacity: 1;
  left: 0px;
}

/* .solution-section .right-column li.active {
  padding-left: 32px !important;
}
 */
/**/
.img-container {
  border-radius: var(--border-radius-lg, 8px);
  overflow: hidden;
}

/*.growth-solutions .slides-wrapper {
  scroll-behavior: smooth;
}*/

.growth-solutions .growth-slide {
  flex: 0 0 500px;
  user-select: none;
}
.growth-slide a {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.growth-slide:hover a {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Success Stories */
.success-stories .story-slide {
  flex: 0 0 80%; /* 100% */
  user-select: none;
}

/**/

/**/
.industries-section ul li {
  flex: 0 0 50%;
  padding: 8px 25px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industries-section ul li a{
	color: inherit;
}

.industries-section ul li::before {
  position: absolute;
  content: "";
  left: -8px;
  top: 16px;
  display: inline-block;
  transition: all 0.4s ease;
  background: url("../images/icons/arrow-right.svg") no-repeat center/cover;
  height: 22px;
  width: 25px;
  filter: invert(1);
}

.industries-section ul li.active {
  color: var(--color-primary-500, #5b4da0);
  font-weight: 600;
}

.success-stories .img-container {
  height: 400px;
}

.success-stories .img-container img {
  object-fit: cover;
}

/* Grid */

.why-choose .parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.why-choose .div1 {
  grid-row: span 2 / span 2;
}

.why-choose .div2 {
  grid-row: span 2 / span 2;
}

.why-choose .div5 {
  grid-column: span 2 / span 2;
  grid-column-start: 3;
  border-radius: var(--border-radius-lg, 8px);
  background: var(--color-primary-400, #8a80bd);
  padding: 15px;
}

.why-choose .div1,
.why-choose .div3 {
  border-radius: var(--border-radius-lg, 8px);
  background: var(--color-primary-500, #5b4da0);
  padding: 15px;
}

.why-choose .div4 {
  border-radius: var(--border-radius-lg, 8px);
  background: var(--color-primary-200, #ccc9e5);
  padding: 15px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.parallax {
  background-image: url("../images/parallax-home.png");
  /* Set a specific height */
  min-height: 500px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax .transform-bussiness {
  border-radius: var(--border-radius-xl, 16px);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  text-align: center;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-primary-800, #2d2650);
  color: var(--color-primary-50, #f5f4fa);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn svg {
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(2px);
  }
}

/* 15-10-25
.nav-bar .nav-toggle-icon {
  display: none;
}*/

/* Pradnya */
.empowering-you {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.impact-growth li {
  color: #6c757d;
  cursor: pointer;
}

.impact-growth li.active {
  color: var(--color-primary-800, #2d2650);
  font-size: var(--font-sizes-h5, 38px);
  font-weight: var(--Weight-regular, 400);
}

.holds li,
.impact-growth li {
  color: #6c757d;
  cursor: pointer;
}

.holds li.active {
  color: var(--color-primary-500, #5b4da0);
  font-weight: var(--font-weights-semibold, 600);
}

/* End */

/* Smita */
.hero-section a,
.parallax a {
  font-size: var(--body-medium, 16px);
}

.gap-wrapper {
  align-items: stretch !important;
}

.gap-swiper .swiper-slide {
  height: unset !important;
}

.guided-steps {
  border-radius: 0px 16px 16px 0px;
  background: var(--color-primary-800, #2d2650);
  padding: 72px;
  padding-right: 115px;
}

.guided-steps-slide {
  border-radius: 16px;
  background: #f5f4fa;
  padding: 24px;
}

.guided-steps-slide h4 {
  color: var(--color-primary-500, #5b4da0);
  font-size: var(--font-sizes-h4, 47px);
  line-height: normal;
}

.guided-steps-slide p {
  color: var(--color-primary-900, #1c1733);
  line-height: 150%;
}

.guided-steps-slider-col {
  right: 0px;
}

.gap-button-next,
.gap-button-prev {
  height: 35px;
  width: 35px;
  padding: 5px;
  background-color: #f5f4fa;
  border-radius: 50%;
}

.gap-button-next,
.gap-button-prev {
  position: absolute;
  top: 102%;
}

.gap-button-next {
  left: 11%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.bullet {
  display: flex;
  width: 45px;
  height: 45px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-pill, 9999px);
  background: var(--color-primary-500, #5b4da0);
  font-family: var(--font-families-base, Montserrat);
  font-size: var(--font-sizes-body, 24px);
  font-weight: var(--font-weights-semibold, 600);
}

/* Mega Menu */
.dropdown.mega-menu {
  position: static;
}

.nav-bar .dropdown-menu.mega-menu {
  background: unset;
  border-top: unset;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px;
  width: max-content;
  height:100vh;
}

.nav-bar .dropdown-menu.mega-menu .container,
.nav-bar .dropdown-menu.mega-menu .container-fluid {
  padding: 40px 20px;
  background-color: var(--color-primary-900, #1c1733);
  color: var(--color-primary-50, #f5f4fa);
  height: 10vh;
  transition: height 0.8s ease;
}
.nav-bar .dropdown-menu.mega-menu .container-fluid {
  width: 100vw;
  padding: 20px 0;
}
.nav-bar .dropdown-menu.mega-menu.show .container,
.nav-bar .dropdown-menu.mega-menu.show .container-fluid {
  height: 100%;
  overflow-y:scroll;
}

.nav-bar .menu-card {
  border-radius: var(--border-radius-lg, 8px);
  background: var(--color-primary-800, #2d2650);
  color: inherit;
  padding: 15px 20px;
  transition: all 0.4s ease;
}

.nav-bar .menu-card:hover {
  /* transform: rotate(-1deg) scale(1.02); */
  box-shadow: 0 0 15px -6px #f5f4fa;
  background: var(--color-primary-700, #3e346d);
}

.nav-bar .menu-card .text-h6 {
  color: #f5f4fa;
  /* text-align: center; */
  font-size: 20px;
}
/* End */
/* New */
.large-menu {
  position: absolute;
  top: 100%;
  height: 80vh;
  z-index: 50;
  background-color: var(--color-primary-900, #1c1733);
  color: var(--color-primary-50, #f5f4fa);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1.2s ease;
  left: 50%;
  transform: translateX(100%); /* translateX(-50%) */
  opacity: 0;
  visibility: hidden;
  /*width: 20%;*/
}

.large-menu.active {
  left: 0;
  /*width: 100%;*/
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.large-menu .dropdown-item {
  font-size: var(--font-sizes-h4, 40px);
  font-weight: var(--font-weights-bold, 700);
  line-height: 130%;
  /* 31.2px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
}

.large-menu .dropdown-item:hover {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.large-menu .dropdown-item::after {
    position: absolute;
    content: "";
    background: #fff;
    height: 5px;
    width: 10px;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: width 0.8s ease, opacity 0.4s ease;
}
.large-menu .dropdown-item:hover::after {
    width: 200px;
    opacity: 1;
}


/* .tabs-menu {
  display: flex;
  align-items: start;
  flex-direction: column;
  height: 100%;
  padding-left: 50px;
  padding-top: 25px;
} */

.tabs-menu {
  background: var(--color-primary-800, #2d2650);
}
.tabs-menu button {
  color: var(--color-primary-50, #f5f4fa);
  font-size: var(--font-sizes-h6, 24px);
  font-weight: var(--font-weights-medium, 500);
  line-height: 130%; /* 20.8px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
  padding: 20px;
  text-align: start;
  border-radius: 12px;
  transition: all 0.8s ease;
  width: 100%;
  text-align: center;
}
.tabs-menu button:hover {
  color: var(--color-primary-50, #f5f4fa);
}
.tabs-menu button.active {
  background: var(--color-primary-900, #1c1733);
  color: var(--color-primary-50, #f5f4fa);
}
/* Menu Button Text */
.icon-wrapper {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  display: block;
}

#close,
#burger {
  position: absolute;
  top: 0;
  left: 0;
}

#close {
  opacity: 0;
  pointer-events: none;
}
#burger {
  visibility: visible;
  opacity: 1;
}
/* End */

/* Mobile Menu Code */
.mobile-menu .nav-link {
  color: var(--color-neutral-900, #212529);
  font-size: var(--body-medium, 16px);
  font-weight: 500;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: var(--font-letterSpacing-heading, -0.16px);
  padding: 15px 20px;
}
.mobile-menu .float-end {
  transition: all 0.4s ease;
}
.mobile-menu .nav-item[aria-expanded="true"] .float-end {
  transform: rotate(180deg);
}
.nav-item-wrapper.active {
  background-color: var(--color-primary-50, #f5f4fa);
  position: relative;
}
.mobile-menu ul {
  list-style: none;
}
.nav-item-wrapper.active .nav-link.outer {
  font-variation-settings: "wght" 700;
}
.mobile-menu .nav-link:hover {
  font-weight: 600;
}
/* End */

/* Map */
#DynamicMap {
  cursor: pointer;
  width: 100%;
  height: 80vh;
  max-height: 750px;
  min-height: 300px;
  position: relative;
}

#DynamicMap::before {
  content: "";
  height: 50px;
  width: 100px;
  background: var(--color-primary-900, #1c1733);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* End */

/* Ujwal Contact-Us */
p.ho-addres {
  max-width: 340px;
}

.form-container {
  padding: 1px 30px 20px 30px;
  border-radius: var(--spacing-2, 8px);
  background: var(--color-primary-900, #fff);
}

.styleinput {
  border-radius: var(--border-radius-md, 4px);
  border: 1px solid var(--color-neutral-600, #6c757d);
  background: var(--color-neutral-100, #f1f3f5);
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.form-control::placeholder {
  color: var(--color-neutral-600, #6c757d);
  font-size: 16px;
}

.level-brand {
  color: var(--color-primary-50, #f5f4fa);
  font-size: 32px;
}

.rounded.map-contactus {
  width: 100%;
  height: 300px;
}

/* Ujwal Case-Study */
/* Success stories section starts here  */
.search-input::placeholder {
  color: var(--color-neutral-600, #6c757d);
  font-family: var(--font-families-base, Montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weights-regular, 400);
  line-height: 200%;
  letter-spacing: var(--font-letterSpacing-body, 0);
}

.search-input {
  border-radius: var(--border-radius-md, 4px) 0 0 var(--border-radius-md, 4px);
  border: 1px solid var(--color-neutral-600, #6c757d);
  background: #fff;
  display: flex;
  /* padding: 8px var(--spacing-3, 16px); */
  align-items: center;
  gap: var(--spacing-2, 8px);
  flex: 1 0 0;
  align-self: stretch;
}

.categoriessection {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.searchbtn {
  box-shadow: none;
}

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

.industrybtn {
  border-radius: var(--border-radius-md, 4px);
  border: var(--border-width-2, 2px) solid var(--color-primary-500, #5b4da0);
  background: var(--color-white, #fff);
  display: flex;
  padding: var(--spacing-3, 16px) var(--spacing-4, 24px);
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2, 8px);
  color: var(--color-primary-500, #5b4da0);
  font-family: var(--font-families-base, Montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
}

  .dropmenuitems{
            margin-top: 10px;
            width:300px;
        }


.industrybtn.dropdown-toggle::after{
          content:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235B4DA0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
            border: unset !important;
            /* background-position: center center; */
            height: 22px;
        }

.btn-check:checked + .btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check) + .btn:active:focus-visible {
  box-shadow: none;
}

.btn-secondary {
  --bs-btn-active-bg: #5b4da0;
  --bs-btn-active-border-color: #5b4da0;
}

.itemsuccess-dropdown {
  cursor: pointer;
  text-decoration: none;
  background-color: #fff;
  color: var(--neutral-800, var(--color-neutral-800, #343a40));
  font-family: var(--font-families-base, Montserrat);
  font-size: 14px;
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
  border-radius: 0px;
  
  max-width: 300px;
  display: inline-block;
  white-space: normal;
  word-wrap: break-word;
}

.filter-container .dropdown-item.active,
.filter-container .dropdown-item:active {
  color: var(--Primary-500, var(--color-primary-500, #5b4da0));
  text-decoration: none;
  background-color: #fff;
}

 .form-check-input:checked[type=checkbox] {
			background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M16 0H2C1.46957 0 0.960859 0.210714 0.585786 0.585786C0.210714 0.960859 0 1.46957 0 2V16C0 16.5304 0.210714 17.0391 0.585786 17.4142C0.960859 17.7893 1.46957 18 2 18H16C16.5304 18 17.0391 17.7893 17.4142 17.4142C17.7893 17.0391 18 16.5304 18 16V2C18 1.46957 17.7893 0.960859 17.4142 0.585786C17.0391 0.210714 16.5304 0 16 0ZM16 2V16H2V2H16ZM7 14L3 10L4.41 8.58L7 11.17L13.59 4.58L15 6' fill='%235B4DA0'/%3E%3C/svg%3E");
			background-position: center;
			background-position: center;
			}

.form-check-input:checked ~ .itemsuccess-dropdown {
  color: #5b4da0;
}

.form-check-input {
  cursor: pointer;
  border: 2px solid #343a40 !important;
  border-radius: 0 !important;
  background-color: #fff !important;
}

.form-check-input:checked {
  border-color: #5b4da0 !important;
  background-color: #fff !important;
}

.form-check-input:focus {
  border-color: #343a40 !important;
  outline: 0;
  box-shadow: none !important;
}

.form-check-input:checked:focus {
  border-color: #5b4da0 !important;
}

.seacrhnav {
  padding: 0px;
}

.filter-container .dropdown-item {
  cursor: pointer;
  pointer-events: none;
}

.filter-container .dropdown-item .form-check {
  cursor: pointer;
  pointer-events: auto;
}

.btn:focus-visible {
  color: #fff;
  background-color: #5b4da0;
  border: none;
  outline: 0;
  box-shadow: none;
}

/* Search form ends here  */

/* Blogs section starts here */

.itemsection {
  margin-top: 72px;
}

.carditemcontainer {
  background: var(--color-primary-900, #1c1733);
}

.successblog-cardimg {
  height: 390px;
  border-radius: var(--border-radius-xl, 16px);
}

.blogcard-body {
  padding: 32px 32px;
}

.datetext {
  color: var(--color-primary-50, #f5f4fa);
  font-size: 16px;
}

.successhead-card {
  color: var(--color-primary-50, #f5f4fa);
  font-size: 24px;
  margin-top: 5px;
}

.card-readmore {
  color: var(--color-primary-50, #f5f4fa);
  margin-top: 10px;
  font-family: var(--font-families-base, Montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weights-semibold, 600);
  line-height: normal;
  letter-spacing: var(--font-letterSpacing-body, 0);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 50%;
  text-underline-position: from-font;
}

/* Blogs section ends here */

/* Pagination section starts here */

.paginationcard {
  background-color: #1c1733;
  border: none;
  color: var(--Primary-50, #f5f4fa);
}

a.page-link.paginationcard:hover {
  border-radius: var(--border-radius-md, 4px);
  background: var(--color-primary-500, #5b4da0);
  color: #f5f4fa;
}

a.page-link.paginationcard:focus {
  border-radius: var(--border-radius-md, 4px);
  background: var(--color-primary-500, #5b4da0);
  color: #f5f4fa;
  box-shadow: none;
}

.page-item.active > .page-link {
  border-radius: var(--border-radius-md, 4px);
  background: var(--color-primary-500, #5b4da0);
  color: #f5f4fa;
  box-shadow: none;
}

@media (max-width: 576px) {
  .successblog-cardimg {
    height: 250px;
  }
}

@media (max-width: 992px) {
  .itemsection {
    margin-top: 48px;
  }
}

.categoriessection.input-group.btn-secondary,
.categoriessection.input-group.btn-primary {
  padding: var(--spacing-2, 11px) var(--spacing-3, 16px);
}

/* Ujwal New */
.carousel-control-next,
.carousel-control-prev {
  width: auto;
}

img.craouselimg {
    max-height: 560px;
}

.carouselcontainer {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.carouselindicators {
  background-color: #5b4da0;
}
.carousel-indicators [data-bs-target] {
  background-color: #8a80bd;
  width: var(--spacing-2, 15px);
  height: 15px;
  border-radius: 100%;
  aspect-ratio: 1/1;
  margin-left: 6px;
  margin-right: 6px;
}
.carouselindicators.active {
  background-color: var(--color-primary-500, #5b4da0);
  transform: scale(1.4);
}
.carousel-control-next,
.carousel-control-prev {
  opacity: 1;
}

.ukusafield {
  padding: var(--spacing-4, 16px);
  border-radius: var(--border-radius-xl, 16px);
  background: var(--color-primary-800, #2d2650);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.nav-link.projectactivitytabs {
  background-color: unset;
  border: none;
  color: #6c757d;
}

.challengesukusacontainer {
  top: 59px;
  z-index: 2;
}

.challengestabs {
  color: var(--color-neutral-600, #6C757D);
  border-radius: none;
  box-shadow: 0 1px 0px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-neutral-600, #6c757d);
  border-radius: var(--border-radius-xl, 16px);
  text-align: start;
  border-bottom: 0.7px solid #DEE2E6;
  border-radius: 0 !important;
}


.challengestabs.active {
  color: var(--color-primary-500, #5b4da0);
  background: none;
}

.nav-link.challengestabs.active {
  color: var(--color-primary-500, #5b4da0);
  background: none;
  font-weight: var(--font-weights-semibold, 600);
}

.nav-link.challengestabs:hover {
  color: var(--color-primary-500, #5b4da0);
}

.nav-link.challengestabs:focus-visible {
  outline: 0;
  box-shadow: none;
}

.challengestabscontent {
  /* till here */
  color: var(--color-primary-500, #5b4da0);
  font-weight: var(--font-weights-semibold, 600);
}

.porlobapproach {
  background: var(--color-primary-50, #f5f4fa);
  padding-top: 64px;
  padding-bottom: 64px;
}

.approachstrategy {
  display: flex;
  padding: var(--spacing-4, 24px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-2, 8px);
  flex: 1 0 0;
  border-radius: var(--border-radius-xl, 16px);
  background: var(--Primary-100, #e6e4f2);
}

.keysolutions {
  padding-top: 64px;
  padding-bottom: 64px;
}

.keysoluhead {
  color: var(--neutral-50, var(--color-neutral-50, #f8f9fa));
  font-weight: var(--font-weights-bold, 700);
}

.keysolutionscontainer {
  margin-top: 72px;
}

.drivingimpaccontainer {
  margin-top: 72px;
}

.nav-link.driimapttab {
  color: var(--neutral-600, var(--color-neutral-600, #6c757d));
  font-weight: var(--font-weights-regular, 400);
  margin-top: 22px;
  margin-bottom: 22px;
}

.nav-link.driimapttab.active {
  color: var(--neutral-50, var(--color-neutral-50, #f8f9fa));
  font-weight: var(--font-weights-semibold, 600);
  font-size: 20px;
  background: none;
}

.solution-section .right-column li.active {
  padding-left: 0px;
  color: #f8f9fa !important;
}

.padding-left li.active {
	 padding-left: 32px !important;
}

.solution-section .right-column li.driimpact::before {
  content: none;
}

.solution-section .right-column.li.driimpact:hover {
  content: none;
}

.solution-section .right-column li.driimpact {
  border-bottom: 0px;
  color: #6c757d;
}

.technology {
  display: flex;
  width: 120px;
  height: 120px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: var(--spacing-3, 16px);
  background: var(--color-white, #fff);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) and (max-width: 820px) {
  .technology {
    width: 110px;
    height: 110px;
  }
}

.daburukdescrp {
  top: 175px;
}

.daburukusa {
  top: 60px;
}

.swiper-button-prev:after {
  content: none;
}

.swiper-button-next:after {
  content: none;
}

.swiper-pagination {
  text-align: initial !important;
}

.trusteddots {
  width: initial !important;
}

span.swiper-pagination-bullet {
  background: var(--color-primary-400, #8a80bd);
  width: 16px;
  height: 16px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-radius: var(--spacing-5, 32px);
  background: var(--color-primary-500, #5b4da0);
}

.quoteimg {
  margin-top: -5px;
}

.sepprson {
  color: var(--color-primary-50, #f5f4fa);
  font-weight: var(--font-weights-bold, 700);
}

.prsnpostion {
  color: var(--neutral-600, var(--color-neutral-600, #6c757d));
  font-weight: var(--font-weights-semibold, 600);
}

.chalgtansbtn {
  text-decoration: none;
}

#challengestabs,
#approachtabs,
#solutiontabs,
#techstacktabs,
#kpisachievedtabs {
  scroll-margin-top: 80px;
}

#contenttabs {
  scroll-margin-top: 90px;
}

#impacttabs {
  scroll-margin-top: 110px;
}

.chalgtansbtn.active button {
  background-color: unset;
  font-weight: var(--font-weights-bold, 700);
  border: none;
  color: #f8f9fa;
}
/* End */

/* Akshata */
.teamSwiper {
  width: 100%;
  padding: 40px 0;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: linear-gradient(178deg, rgba(45, 38, 80, 0) 37.87%, var(--color-primary-800, #2d2650) 98.71%);
}

.team-card img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.team-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-left: 20px;
  text-align: left;

  padding-bottom: 20px;
  padding-top: 60px;
  background: linear-gradient(
    178deg,
    rgba(45, 38, 80, 0) 37.87%,
    var(--color-primary-800, #2d2650) 98.71%
  );
  color: #fff;
}

.team-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.team-info p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
}

.swiper-pagination-bullet {
  background: #7b61ff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #5036e6;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* spacing between prev, dots, and next */
  margin-top: 30px;
}

.swiper-controls .swiper-button-prev,
.swiper-controls .swiper-button-next {
  position: static !important;
  /* background: #fff;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0px;
  color: #fff;
}

.swiper-controls .swiper-button-prev::after,
.swiper-controls .swiper-button-next::after {
  display: none;
}

.swiper-controls .swiper-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: unset;
  /* gap: 8px; */
}

/* --- Base Layout --- */
.scrollable-tabs {
  padding: 60px 0;
}

.custom-tabs {
  gap: 40px;
}

.custom-tabs-nav {
  gap: 10px;
  border-radius: none;
}

.custom-tab-btn {
  /* background-color: #F5F4FA; */
  color: rgba(245, 244, 250, 0.2);
  border-radius: 0px !important;
  padding: 10px 20px;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  text-align: start;
  font-size: 40px;
  border-bottom: 1px solid #f5f4fa;
}

.custom-tab-btn:hover {
  color: unset !important;
}

.custom-tab-btn.active {
  background-color: unset !important;
  /* remove bg */
  font-weight: 700;
  color: #f5f4fa;
}

/* --- Tab Content --- */
.custom-tabs-content {
  flex: 1;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* expertice Section */
.specialized-expertise .d-flex > .se-logo{
            flex: 0 0 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .specialized-expertise .se-logo .logo{
            height: 130px;
            width: 130px;
        }
        .specialized-expertise .se-logo img{
            object-fit: contain;
        }
        @media (max-width:768px){
            .specialized-expertise .d-flex > .se-logo{
                flex: 0 0 120px;
            }
            .specialized-expertise .se-logo .logo{
                height: 100px;
                width: 100px;
            }
        }

/*Cursor*/
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--color-primary-500, #6541d6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  z-index: 9999;
  mix-blend-mode: lighten;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .custom-tabs {
    flex-direction: column;
  }

  .custom-tabs-nav {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
  }

  .custom-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
/* End */

.blog-section .blog-card{
  border-radius: 8px;
  overflow: clip;
  height: 330px;
}
.content-blog {
  height: calc(100% - 200px);
  transition: height 0.6s ease;
  background: var(--color-primary-50, #F5F4FA);
  color: #2D2650;
}
.blog-section .blog-card:hover .content-blog{
  height: 100%;
}
.blog-section .blog-card .blog-img{
  height: 200px;
}
.blog-section .blog-card .blog-desc,
.blog-section .blog-card:hover .blog-img{
  display: none;
}
.blog-section .blog-card:hover .blog-desc{
  display: block;
}

/* 15-10-25
@media (max-width: 1212px) {
  .nav-bar .nav-btn,
  .nav-bar .nav-bar-links {
    display: none;
  }
  .nav-bar .nav-toggle-icon {
    display: block;
  }
}*/

@media (max-width: 1024px) {
  .why-choose .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .why-choose .div1,
  .why-choose .div2 {
    grid-row: auto;
  }

  .why-choose .div5 {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .w-xl-75 {
    width: 75%;
    margin: auto;
  }
}

@media (min-width: 992px) {
  .formaddresssection {
    margin-top: 80px;
  }
  .w-md-50{
	width: 50%;
  }
}
@media (max-width: 992px) {
  :root {
    /* Text-size styles */
    --font-sizes-h1: 48px;
    --font-sizes-h2: 40px;
    --font-sizes-h3: 36px;
    --font-sizes-h4: 30px;
    --font-sizes-h5: 26px;
    --font-sizes-h6: 20px;
  }

  .steps-section .steps svg{           /*1-1*/
    height:36px;
    width:28px;
  }

  .guided-steps-row {
    position: relative !important;
  }

  .guided-steps-slider-col {
    position: relative !important;
  }

  .guided-steps {
    padding: 20px;
  }

  .gap-button-next {
    left: 56%;
  }

  .gap-button-prev {
    position: absolute;
    top: 102%;
    left: 42%;
  }

  #DynamicMap {
    height: 60vh;
  }

  .form-container {
    padding: 1px 0px 20px 0px !important;
  }

  /* Ujwal */
  .porlobapproach {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .navchallengestabs {
    display: none;
  }

  .keysolutions {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .keysolutionscontainer {
    margin-top: 48px !important;
  }
}

@media (min-width: 768px) {
}
@media (max-width: 768px) {
  /* Buttons */
  .btn-secondary,
  .btn-primary {
    padding: var(--spacing-2, 8px) var(--spacing-3, 16px);
  }
  .parallax {
    padding: 50px;
  }
  .growth-solutions .growth-slide {
    flex: 0 0 310px;
    user-select: none;
  }
  .success-stories .img-container {
    height: 300px;
  }
}

/* Small screens (mobile, ≤600px) */
@media (max-width: 576px) {
  .why-choose .parent {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .why-choose .div1,
  .why-choose .div2,
  .why-choose .div3,
  .why-choose .div4,
  .why-choose .div5 {
    grid-column: auto;
    grid-row: auto;
  }

  .why-choose .div5 {
    grid-column: 1 / -1;
    /* full width */
  }
  .parallax {
    padding: 20px;
  }
  .hero-section {
    padding: 40px 0;
  }
  #DynamicMap {
    height: 40vh;
  }
  .rounded.map-contactus {
    height: 280px;
  }
  .steps-section .steps svg{           /*1-1*/
    height:25px;
    width:20px;
  }
}

@media (max-width: 468px) {
  :root {
    /* Text-size styles */
    --font-sizes-h1: 34px;
    --font-sizes-h2: 30px;
    --font-sizes-h3: 28px;
    --font-sizes-h4: 24px;
    --font-sizes-h5: 20px;
    --font-sizes-h6: 18px;
    --font-sizes-body: 16px;
    --font-sizes-small: 12px;
    --body-medium: 14px;
  }
  /* Buttons */
  /*.btn-secondary,
  .btn-primary {
    padding: var(--spacing-1, 4px) var(--spacing-2, 8px);
    gap: var(--spacing-1, 4px);
    font-size: var(--font-sizes-small, 14px);
  }*/

  .text-h1 {
    font-size: var(--font-sizes-h1, 32px);
  }
}


.dryimpimg{
            height: 450px;
        }
        @media screen and (min-width:768px) and (max-width:992px){
            .dryimpimg{
            height: 400px;
        }
        }
        @media(max-width:768px){
            .dryimpimg{
            height: 320px;
        }
        }

/* Footer CSS Start */
/* ===== Footer ===== */
.site-footer {
  background: var(--color-primary-900, #1c1733);
  /* deep indigo */
  color: var(--color-primary-50, #f5f4fa);
}

.site-footer .footer-title {
  margin: 0 0 0.5rem 0;
  border-bottom: 2px solid var(--color-primary-300, #ada6d2);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.footer-link {
  color: var(--color-primary-50, #f5f4fa);
  text-decoration: none;
  transition: padding 0.4s ease;
}

.footer-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-menu li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
.footer-menu li:hover .footer-link {
  padding-left: 5px;
  color: var(--color-white, #ffffff);
}

.footer-menu li::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"><path d="M3.75 9H14.25" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 3.75L14.25 9L9 14.25" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  font-size: 0.9rem;
  line-height: 1;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}
.footer-menu li:hover::before {
  transform: rotate(0deg);
}

.footer-contact {
  gap: 0.75rem;
}

.footer-contact li {
  margin: 15px 0;
  color: var(--color-primary-50, #f5f4fa);
}

.footer-map img {
  display: block;
  width: 100%;
  border-radius: 14px;
}

.footer-bottom {
  background: var(--primary, #5b4da0);
}
/* Footer CSS End */
.name-box {
	border-radius: var(- -Radius-sm, 4px);
	border: 1px solid var(- -Neutral-200, #D3D3D3);
	background: var(- -Neutral-100, #E2E2E2);
	padding: var(- -Spacing-XS, 4px) var(- -Spacing-SM, 8px);
	text-align: center;
	color: var(- -Color-Neutral-800, var(- -Neutral-800, #585858));
	/* Small/SemiBold */
	font-size: var(- -Font-Size-Small, 14px);
	font-style: normal;
	font-weight: var(- -Font-Weight-Semi-Bold, 600);
	line-height: 16px; /* 114.286% */
}

.steps-section .steps h1 {
	color: #5D596F;
}

.team-meta {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	padding: 12px 14px;
	border-radius: 12px;
	border-radius: var(- -spacing-2, 8px);
	text-align: start;
	transition: height 0.8s ease;
	height: 25%;
	color: var(- -color-primary-50, #f5f4fa);
}

.team-meta:hover {
	height: 93%;
	background-color: var(- -color-primary-50, #f5f4fa);
	color: var(- -color-primary-900, #1c1733);
	box-shadow: unset;
}

.team-meta .second-div, .team-meta:hover .first-div {
	display: none;
}

.team-meta .first-div, .team-meta:hover .second-div {
	display: block;
}

.fix-size-icons {
	width: 60px; /* adjust size as needed */
	height: 60px; /* adjust size as needed */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden; /* hide overflow */
}


.solution-card {
	border-radius: 16px;
	min-height: 300px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: start;
	padding-bottom: 60px;
	padding-top: 50px;
}

.solution-card .a-link {
	position: absolute;
	bottom: 20px;
}

.solution-card .a-link::after {
	content: "";
	height: 1.2px;
	width: 10px;
	background: transparent;
	bottom: 12px;
	left: 0;
	position: absolute;
	transition: width 0.8s ease;
}

.solution-card .a-link:hover::after {
	width: 78px;
	background: var(- -color-primary-50, #f5f4fa);
}

.solution-card::after {
	content: "";
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='43' height='126' viewBox='0 0 43 126' fill='none'%3E%3Cpath opacity='0.4' d='M42.5 83.0962C42.5 100.454 32.7614 114.258 13.2841 124.5L5.97888 116.604C9.1743 115.18 12.8293 112.62 16.9366 108.92C21.5012 104.508 23.7847 101.025 23.7847 98.4611C23.7847 97.467 23.2489 96.9661 22.1869 96.9661C16.1009 96.9661 10.922 95.3309 6.66702 92.0593C2.55964 88.7844 0.5 84.5199 0.5 79.2535C0.5 73.9928 2.2501 69.5079 5.75268 65.8089C9.55289 62.1087 14.277 60.2587 19.9059 60.2587C26.9015 60.2587 32.459 62.3915 36.5687 66.6615C40.5213 71.0741 42.5 76.553 42.5 83.0962ZM41.3618 19.0652C41.3618 24.1891 39.3808 28.5326 35.4282 32.088C31.6208 35.7893 26.9801 37.6349 21.5012 37.6349C16.0223 37.6349 11.3816 35.7893 7.57659 32.088C3.61922 28.5326 1.64292 24.1891 1.64292 19.0652C1.64292 13.9458 3.61922 9.60673 7.57659 6.0502C11.3816 2.34895 16.0223 0.5 21.5012 0.5C26.9801 0.5 31.6208 2.34895 35.4282 6.0502C39.3808 9.60673 41.3618 13.9458 41.3618 19.0652Z' fill='%236541D6' stroke='%236541D6'/%3E%3C/svg%3E")
		no-repeat center/contain;
	height: 120px;
	width: 40px;
	position: absolute;
	bottom: 20px;
	right: 30px;
}

.text-block {
	position: relative;
	z-index: 1;
	width: 100%;
}

.solution-card .text-h4, .solution-card p {
	transition: opacity 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.solution-card p, .solution-card:hover .text-h4 {
	opacity: 0;
	pointer-events: none;
}

.solution-card .text-h4, .solution-card:hover p {
	opacity: 1;
	pointer-events: auto;
}

.btn-primary:hover:active svg {
	transform: scale(0.8);
}

@media ( max-width :568px) {
	.solution-card {
		min-height: 180px;
		padding-bottom: 50px;
		padding-top: 30px;
	}
}

.impact-accordion .accordion-button:focus{
            border:unset;
            box-shadow: unset;
        }
        .impact-accordion .accordion-button:not(.collapsed){
            border-radius: var(--border-radius-xl, 16px);
            background: var(--color-primary-100, #E6E4F2);
            border-radius: 16px !important;
        }
        .impact-accordion .accordion-item{
            background-color: transparent;
            padding-left: 10px;
            border-left: 2px solid var(--color-primary-400, #8A80BD);
            border-bottom: 0;
        }
        .impact-accordion .accordion-button.collapsed{
            background: transparent;
        }
        .impact-accordion .accordion-button{
            color: inherit;
            font-family: var(--font-families-base, Montserrat);
            font-size: var(--font-sizes-h5, 38px);
            font-style: normal;
            font-weight: var(--font-weights-semibold, 600);
            line-height: normal;
        }
        .accordion-section >div{
            max-height: 550px;
        }
        .accordion-section .impact-accordion{
            overflow-y:auto;
        }
        
         .footer-bottom {
            border-top: 1px solid var(--color-primary-500, #5B4DA0);
            background: var(--color-primary-900, #1C1733);
        }

        .footer-top .border-bottom {
            border-bottom-color: var(--color-primary-500, #5B4DA0) !important;
        }
        .footer-middle{background: #141024;}
