/* FONT DEFINITION */
/* DEFINE FONT-FACE */
@font-face {
  font-family: 'Aptos';
  src: url('/static/fonts/Aptos.ttf') format('opentype');
  font-weight: 400; /* Adjust weight if needed */
  font-style: normal;
}

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('/static/fonts/Avenir-Next-LT-Pro-Demi.otf') format('opentype');
  font-weight: 900; /* Demi is semi-bold */
  font-style: normal;
}
@font-face {
  font-family: 'Avenir Next LT Pro Bold';
  src: url('/static/fonts/Avenir-Next-LT-Pro-bold.otf') format('opentype');
  font-weight: 900; /* Demi is semi-bold */
  font-style: normal;
}
/* ---------- FONT FACE DEFINITION ------------------- */

:root {
  --primary-color: rgb(141, 53, 148); /* R141 G53 B148 */
  --secondary-color: rgb(27, 26, 84); /* R27 G26 B84 */
  --coordinating-color: rgb(36, 86, 222); /* R36 G86 B222 */
}
.primary {
  color: var(--primary-color);
}
.secondary {
  color: var(--secondary-color);
}
.white-text {
  color: white;
}
body {
  font-family: 'Aptos', serif !important;
  line-height: 1.4;
  background: rgb(228, 226, 230) !important;
  /* min-height: 200vh; */
  min-height: 100vh;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: scroll;
}
h1,
h2,
h3 {
  font-family: 'Avenir Next LT Pro', sans-serif !important;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.page-heading {
  font-size: 50px;
  font-weight: 700;
}
.heading1 {
  font-size: 40px !important;
  font-weight: 700;
}
.heading2 {
  font-size: 30px !important;
}
.heading3 {
  font-size: 24px !important;
}
.paragraph {
  font-size: 18px !important;
}
.paragraph-small {
  font-size: 14px !important;
}
.paragraph-big {
  font-size: 22px !important;
}
.video-section-title {
  font-size: 80px;
  font-family: 'Avenir Next LT Pro Bold', sans-serif !important;
}
@media (max-width: 420px) {
  .video-section-title {
    font-size: 40px !important;
  }
}
/* NAVBAR CSS */
.navbar-custom {
  width: 90%;
  position: fixed;
  margin-top: 2%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  z-index: 1030;
  padding: 5px 2.5%;
  background: rgba(27, 27, 27, 0.7);
  /* padding-left: 2.5%; */
}

.navbar,
.navbar .dropdown-menu {
  color: white;
  font-family: 'Avenir Next LT Pro', sans-serif !important;
}
.dropdown-menu {
  background: rgba(27, 27, 27, 1) !important;
}
.nav-link {
  color: white;
}
nav .dropdown-menu li a {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
  font-weight: 600;
}
.navbar.sticky {
  margin-top: 0;
  background: rgba(27, 27, 27, 1) !important;
}
.nav-link:focus {
  color: inherit; /* Keeps the color consistent */
  background-color: transparent; /* Removes any unwanted background */
  text-decoration: none; /* Avoids underlines if added */
}
.navbar-brand img {
  width: 200px;
  display: block;
  height: auto;
}
.navbar-nav {
  gap: 1rem;
}
@media (min-width: 1400px) {
  .navbar-nav {
    gap: 3rem;
  }
}
.navbar-nav .nav-link:hover {
  color: var(--coordinating-color);
  background-color: unset;
}
.dropdown-toggle i {
  transition: transform 0.3s ease;
}

/* .nav-item a:visited,
.nav-item a:active,
.nav-item a:focus {
  color: white !important;
} */
/* Rotate the icon on hover */

.dropdown-item:hover,
.nav-item.active,
.navbar-nav .nav-link.show {
  color: var(--coordinating-color) !important;
  background-color: unset;
}
.dropdown-menu {
  padding-bottom: 0;
}

.dropdown-toggle::after {
  display: none !important;
}
.navbar-toggler {
  border-color: rgba(
    255,
    255,
    255,
    0.7
  ); /* Make the border semi-transparent white */
}
.w-90-wrapper {
  width: 90%;
  margin: 0 auto;
}
.w-75-wrapper {
  width: 75%;
  margin: 0 auto;
}
.w-80-wrapper {
  width: 80%;
  margin: 0 auto;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* White toggle icon */
}
.container-fluid {
  padding: 0px !important;
}

.section-100vh {
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
}
.section-70vh {
  height: 70vh;
  min-height: 600px;
  max-height: 1000px;
}
/* HOMEPAGE HEADER */
.homepage-header {
  display: flex;
  /* background-image: url('/images/banner-image.png'); */
  background-image: url('/images/index-banner.jpg');
  /* background-image: url('/images/index-preview-banner.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Optional for parallax effect */
  transition: background-size 1s cubic-bezier(0.4, 0, 0.2, 1),
    background-position 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-attachment {
  background-attachment: fixed; /* Optional for parallax effect */
  transition: background-size 1s cubic-bezier(0.4, 0, 0.2, 1),
    background-position 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.homepage-header .content-wrapper {
  display: flex;
  height: 100%;
  /* justify-content: space-between; */
  /* justify-content: space-around; */
  /* justify-content: center; */
  flex-direction: column;
  align-items: flex-start;
  /* padding-top: 11%; */
  padding-top: 30vh;
}
.pr-5 {
  padding-right: 2rem;
}
.mt-standard {
  margin-top: 2rem;
}
.mb-standard {
  margin-bottom: 2rem;
}
.pt-standard {
  padding-top: 2rem;
}
.pb-standard {
  padding-bottom: 2rem;
}
.homepage-header p {
  width: 60%;
}
/* LEFT FLOATING MENU CSS */

.left-menu {
  position: fixed;
  top: 50%; /* Center the menu vertically */
  left: 0px; /* Visible from the left */
  transform: translateY(-50%);
  /* background: rgba(0, 0, 0, 0.7); */
  color: white;
  border-radius: 8px;
  padding: 1rem;
  z-index: 1000;
  /* margin-left: 5%; */
  transition: all 0.2s ease-in;
  /* display: none; */
  opacity: 0;
}
.attach {
  margin-left: 0;
  opacity: 1;
}

.menu-item {
  position: relative;
  margin-bottom: 2px;
}

.progress-line {
  position: absolute;
  top: 0;
  left: -8px;
  width: 4px;
  height: 0; /* Initial height */
  background: var(--primary-color); /* Use your primary color */
  transition: height 0.3s ease; /* Smooth transition */
}

.left-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0 0.5rem; /* Spacing to align with progress line */
  transition: color 0.3s ease;
}

.left-menu a:hover {
  color: var(--primary-color); /* Highlight color */
}
.left-menu a.active {
  color: var(--primary-color); /* Replace with your primary color */
  font-weight: bold;
  border-left: 2px solid var(--primary-color); /* Optional visual indicator */
  padding-left: 0.5rem; /* Adjust for the border spacing */
}

.background-video {
  position: relative;
  overflow: hidden;
  width: 100vw;
}
.background-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the section */
  transform: translate(-50%, -50%) scale(1.01);
  /* transform: scale(1.01); */
  z-index: -1; /* Places the video behind content */
  will-change: transform;
  backface-visibility: hidden; /* Prevents rendering glitches */
  -webkit-backface-visibility: hidden;
}
.video-section .video-section-para {
  /* width: 100vw;
  max-width: 100vw; */
  background: rgba(10, 10, 10, 0.6);
}
.video-section h2 {
  margin-bottom: 3rem;
}
.video-section-para p {
  /* width: 80%; */
  width: 60%;
  margin: 0 auto;
}
.center-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.section-gap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.section {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.hidden {
  display: none;
}

.service-cards-wrapper {
  display: grid;
  gap: 1rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 2rem 2.5% 2rem 5%;
  /* background-color: black; */
  color: black;
  /* background: white; */
  background: linear-gradient(135deg, #eae8f9, #ffffff);
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  border-top: 8px solid var(--primary-color);

  /* border-left: 5px solid var(--primary-color);  */
}
.service-card .heading2 {
  padding-bottom: 10px;
}
.service-card .image-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.service-card:hover {
  box-shadow: 0px 0px 25px rgba(27, 26, 84, 0.5);
  transform: scale(1.1);
  /* border-left: 5px solid var(--primary-color); */
  cursor: pointer;
  /* padding-top: 2rem; */
}
.service-card:hover h3 {
  color: var(--primary-color);
}
.service-card.style2:hover h3 {
  color: white;
}
.service-card img {
  height: 100px;
  width: auto;
  display: block;
}
.splide {
  width: calc(100% - 100px);
  margin-right: auto;
  margin-left: auto;
}

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

.image-container {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.image-container:hover {
  background-color: rgb(228, 226, 230);
  transform: scale(1.1);
}
.image-container img {
  width: 100%;
  height: auto;
  display: block;
}
.splide__arrow {
  background-color: transparent;
}
.splide__pagination {
  display: none;
}
.splide__arrow svg {
  /* fill: var(--coordinating-color); once moved to common.css we can remove the hardcoding of the color*/
  fill: rgb(36, 86, 222);
}
.splide__arrow:hover svg {
  /* fill: var(--secondary-color); once moved to common.css we can remove the hardcoding of the color*/
  fill: rgb(27, 26, 84);
}
/* @media screen and (min-width: 400px){ */
.splide__arrow--prev {
  left: -50px;
}
.splide__arrow--next {
  right: -50px;
}
@media (min-width: 1025px) {
  .service-cards-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service-cards-wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    grid-template-rows: auto auto auto; /* 2-2-1 layout */
  }

  /* Styling the last card to occupy the entire row */
  .odd-service-cards .service-card:last-child {
    grid-column: span 2; /* Last card spans 2 columns */
  }
}


.service-tile {
	display: flex;
	margin: 0;
	font-size: 16px;
	color: #4a5260;
}	

.feature-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin-top: 22px;
}
.feature-card {
	background: rgba(255,255,255,0.06);
	border-left: 3px solid rgb(141, 53, 148);
	padding: 18px 20px;
}
.feature-card strong { color: rgb(141, 53, 148); display: block; margin-bottom: 4px; font-size: 20px; }
.feature-card span { color: #000000; font-size: 18px; }





/* @media (max-width: 767px) {
  .service-cards-wrapper {
    grid-template-columns: 1fr; 1 card per row
  }
  .left-menu-wrapper li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    flex-direction: column;
  }
  .left-menu-wrapper li i {
    display: none;
  }
} */
.tech-sec-text {
  width: 35%;
}

.row {
  display: flex;
  flex-direction: row;
}
.tech-grid {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.tech-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #dcdcdc;
  padding: 10px 6px;
  transition: background-color 0.2s ease;
  min-height: 100px;
  box-sizing: border-box;
}

.tech-item:hover {
  background-color: #e4e2e6;
}

@media (max-width: 900px) {
  .tech-grid {
    width: 100%;
  }
  .tech-sec-text {
    width: 100%;
  }
}
.tech-item img {
  width: 90%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

/* NUMBER HIGHLIGHTS CSS */
.your-partner-bg {
  /* background-image: url('/images/partner-image.jpg'); */
  background-image: url('/images/Your-Partner.jpg');
}
.your-partner-section .heading-wrapper {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.your-partner-section .heading-wrapper {
  text-align: left;
}
.your-partner-section {
  padding-top: 2rem;
}
.highlight {
  text-align: center; /* Center align content */
  margin-bottom: 1.5rem; /* Add spacing between rows on small screens */
  padding: 1rem 5%; /* Add padding to individual highlights */
  border-radius: 8px; /* Rounded corners for individual blocks */

  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth hover effects */
}

.highlight:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.number-wrapper {
  /* background-color: black; */
  /* Center horizontally */
  display: flex; /* Align number and text side by side */
  align-items: center; /* Center vertically */
  justify-content: center;
}

.number-wrapper .number {
  width: 130px;
  height: 130px;
  display: flex; /* Align number and text side by side */
  align-items: center; /* Center vertically */
  justify-content: center;
  color: white; /* Bootstrap primary color for emphasis */
  margin-bottom: 0.5rem; /* Spacing below the number */
  /* padding: 1rem; */
  border-radius: 50%; /* Circle shape for the number */
  background: black;
  box-shadow: 0px 0px 110px rgba(204, 189, 219, 0.5);
}

.text-wrapper {
  padding-top: 0.5rem; /* Add spacing above the text */
}

.zoom-background {
  background-size: cover; /* Ensures it always covers the viewport */
  background-position: center; /* Center the image */
  animation: zoomInOut 10s infinite alternate ease-in-out; /* Smooth zoom animation */
}

@keyframes zoomInOut {
  0% {
    background-size: 100% 100%; /* Start at normal size */
  }
  100% {
    background-size: 115% 115%; /* Zoom in */
  }
}
/* insights and impact section */
.insight-impacts-section {
  background-image: url('/images/impact-bg-image.png');
}
#insights-impacts {
  background-image: url('/images/impact-bg-image.png');
  color: white;
  text-align: center;
}
.insight-impacts-wrapper {
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.insight-impacts-wrapper .heading-wrapper {
  text-align: left;
}
.links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Button Styling */
.custom-button {
  display: flex;
  align-items: center;
  width: 25vw;
  gap: 0.5rem;
  background: linear-gradient(180deg, #f1f0f3, #d9d1d9); /* Light background */
  color: #1b1a54; /* Dark text color */
  font-weight: bold;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-button:hover {
  background: linear-gradient(135deg, #d9d1d9, #e4e2e6);
}
.custom-button i {
  color: #2456de; /* Blue icon color */
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.custom-button:hover i {
  color: #1b1a54; /* Darker blue on hover */
  transform: translateX(5px); /* Slide animation */
}
.custom-button:hover .icon {
  color: #1b1a54; /* Darker blue on hover */
}

footer {
  background-color: #161616;
}
footer .footer-logo img {
  max-width: 165px;
}
.footer-logo p {
  width: 80%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}
.footer-links ul {
  list-style-type: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  text-decoration: none;
  list-style-type: none;
  padding: 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
.linkedin-icon {
  font-size: 2rem; /* Adjust size */
  color: white; /* LinkedIn brand color */
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}
.your-partner-section h2 {
  text-align: center;
  width: 100%;
}
@media (min-width: 1201px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown:hover .dropdown-toggle i {
    transform: rotate(90deg) !important;
  }
}

@media (max-width: 1199px) {
  .navbar-custom {
    margin-top: 0%;
    width: 100%;
    border-radius: 0;
    padding-right: 0 !important;
    padding-left: 0 !important;
    background: rgba(27, 27, 27, 1);
  }
  .navbar-toggler {
    margin-right: 5%;
  }
  .navbar-brand {
    margin-left: 5%;
  }
  .dropdown-menu {
    background: rgba(27, 27, 27, 1) !important;
  }
  .navbar-nav {
    margin-top: 2rem;
    gap: 1rem;
  }
  .dropdown:hover .dropdown {
    display: none;
  }
  .navbar-nav .nav-item {
    padding: 5px 5%;
  }
  .dropdown {
    display: unset;
  }
  .dropdown .dropdown-menu.show {
    display: block;
  }
  .navbar-collapse {
    height: calc(100vh - 85px);
    overflow-y: auto;
  }

  .dropdown-menu {
    position: static; /* Prevent positioning issues on mobile */
    max-height: 70vh; /* Adjust dropdown height */
    overflow-y: auto;
  }
}
@media (max-width: 1024px) {
  .mt-standard {
    margin-top: 1rem;
  }
  .mb-standard {
    margin-bottom: 1rem;
  }
  .section-100vh {
    height: auto;
    max-height: unset;
    min-height: 100vh;
  }
  .section-70vh {
    height: 70vh;
    min-height: 600px;
    max-height: 1000px;
  }
  .left-menu {
    display: none;
  }
  .video-section {
    display: flex;
    align-items: center;
  }
  .video-section-para p {
    width: 90%;
  }
  .video-section h2 {
    margin-bottom: 1rem;
  }
  .homepage-header p {
    width: 75%;
  }
  .highlight:hover {
    cursor: pointer;
    transform: scale(1);
  }

  .custom-button {
    width: 40vw; /* Mobile width */
    min-width: 260px;
  }
}
@media (max-width: 768px) {
  .homepage-header .content-wrapper {
    padding: 20% 0;
    justify-content: center;
  }
  .highlight {
    margin: 10px auto;
  }
  .custom-button {
    width: 60vw; /* Mobile width */
    min-width: 260px;
  }
  .service-card:hover {
    transform: scale(1);
  }
  .homepage-header p {
    width: 100%;
  }
  .navbar-brand {
    width: 150px;
  }
  .blog-w-wrapper {
    background-color: #fff !important;
  }
}
@media (max-width: 992px) {
  .Related-blogs-div {
    padding-top: 2rem;
    background: rgb(228, 226, 230) !important;
  }
  .homepage-header .content-wrapper {
    padding: 20% 0;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .section,
  .section-100vh {
    width: 100vw;
  }
  .section-70vh {
    width: 100vw;
  }
  .page-heading {
    font-size: 40px !important;
  }
}

.bold {
  font-weight: bold;
}
/* digital services section */
.digital-services-banner {
  background-image: url('/images/digital-services-banner.jpg');
}

.Transform-the-Digital-section {
  margin-left: auto;
  display: flex;
  justify-content: end;
  align-items: end;
  padding-bottom: 10%;
}

.content-wrapper-end {
  display: flex;
  justify-content: end;
}

.main-accordion .accordion-button:not(.collapsed) {
  color: unset;
  background-color: unset;
  box-shadow: unset;
}

.my-accordion .accordion-item:not(:last-child) {
  margin-bottom: 10px;
}

.accordion {
  --bs-accordion-btn-focus-box-shadow: unset !important;
  --bs-accordion-btn-icon-width: 2rem !important;
  --bs-accordion-btn-padding-x: 0px !important;
}
/* Apply the custom SVG icon for both collapsed and expanded states */
.accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232456DE' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e"); /* Default color for collapsed state */
}

/* Set the icon for the collapsed state */
.accordion-button::after {
  background-image: var(--bs-accordion-btn-icon);
  transform: rotate(0deg);
  transition: transform 0.3s ease, background-image 0.3s ease;
}

/* Set the icon for the expanded (non-collapsed) state */
.accordion-button:not(.collapsed)::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%238D3594' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e"); /* Color for expanded state */
  background-image: var(--bs-accordion-btn-icon);
  transform: rotate(180deg);
}

.main-accordion .accordion-body {
  --bs-accordion-body-padding-x: 0px !important;
}

.main-accordion .accordion-button::after {
  margin-left: 10px !important;
}

.main-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(23%) sepia(74%) saturate(2451%)
    hue-rotate(205deg) brightness(92%) contrast(95%);
}

.main-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(32%) saturate(2171%)
    hue-rotate(286deg) brightness(90%) contrast(92%);
}

.main-accordion .accordion-item .accordion-button[aria-expanded='true'] {
  background-color: #b0acb5 !important;
}

.main-accordion .accordion-item .accordion-button[aria-expanded='false'] {
  background-color: #e4e2e6 !important;
}

.voilet-bule-div {
  background-color: var(--secondary-color);
}

.Digital-services-sub-section {
  display: flex;
  flex-direction: column;
}

.digital-services-links {
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

.digital-services-links:hover {
  color: var(--primary-color);
}
.Digital-services-image {
  vertical-align: middle;
  justify-content: center;
  display: flex;
}

.Digital-services-image img {
  max-width: 300px;
}

@media (min-width: 768px) {
  .digital-service-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .Digital-services-image img {
    max-width: 380px;
  }
}

.grey-bg {
  background-color: #e4e2e6;
}

.white-bg {
  background-color: #fff !important;
}

.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .accordion-button {
  width: fit-content;
}

.custom-accordion .accordion-button .toggle-icon {
  transition: transform 0.3s ease;
  /* Smooth rotation */
}

.custom-accordion .accordion-button[aria-expanded='true'] .toggle-icon {
  transform: rotate(90deg);
  /* Rotate custom icon to point downward */
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: unset;
  background-color: unset;
  box-shadow: unset;
}

.custom-accordion .accordion {
  --bs-accordion-btn-focus-box-shadow: unset !important;
  --bs-accordion-btn-icon-width: 2rem !important;
  --bs-accordion-btn-padding-x: 0px !important;
}

.custom-accordion .accordion-body {
  --bs-accordion-body-padding-x: 0px !important;
}

.custom-accordion .accordion-button {
  border: none;
  border-radius: 0;
  --bs-accordion-btn-padding-y: 5px !important;
}

.custom-accordion .accordion-header {
  border: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-button {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--primary-color) !important;
}

.custom-accordion .accordion-header {
  border: none !important;
}

.custom-accordion .accordion-item {
  border: none !important;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none !important;
}

.custom-accordion .accordion-item .accordion-button[aria-expanded='true'] {
  background-color: rgb(255, 255, 255) !important;
}

.custom-accordion .accordion-item .accordion-button[aria-expanded='false'] {
  background-color: #fff !important;
}

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

.info-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: white;
  position: relative;
  padding-top: 10px;
}

.info-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background-color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.info-box:hover .info-text::before {
  background-color: var(--coordinating-color);
}

.info-box {
  transition: transform 0.3s ease;
  padding-left: 15px;
  padding-right: 15px;
}

/* .info-box:hover {
  transform: scale(1.1);
} */

@media (max-width: 767px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.px-5-percent {
  padding-left: 5%;
  padding-right: 5%;
}

.accordion-title {
  width: 100%;
  max-width: 270px;
  color: var(--secondary-color);
}
.banner-section {
  position: relative;
}
.banner-image {
  width: 100%;
  object-fit: cover;
}

.text-container {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.text-container-inner {
  display: flex;
  align-items: end;
  justify-content: end;
}
.section-digital-services {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.ptb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.services-grid {
  display: grid;
  gap: 10px;
}

.service-item {
  display: flex;
  align-items: center;
}

/* .service-item i {
  margin-right: 8px;
} */

@media (min-width: 1024px) {
  #digital-services-banner-section-mobile {
    display: none;
  }
  #digital-services-banner-section-desktop {
    display: block;
  }
}
@media (max-width: 1025px) {
  #digital-services-banner-section-desktop {
    display: none;
  }
  #digital-services-banner-section-mobile {
    display: flex;
  }
}
@media (min-width: 1100px) {
  .text-container {
    bottom: 70px;
  }
}
.accordion-header .accordion-button {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.accordion-button::after {
  font-weight: 900; /* Ensure the icon is bold */
  font-size: 1.25rem;
}
.bg-dark-blue {
  background-color: #030112;
}
.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 1020px) {
  .digital-services-links:hover {
    transform: scale(1.1);
  }
  .info-box:hover {
    transform: scale(1.1);
  }
}
.section-digital-services-accordion {
  padding-bottom: 0.5rem !important;
}
.accordion {
  --bs-accordion-border-radius: 0px !important;
  --bs-accordion-inner-border-radius: 0px !important;
}
.black-div {
  background-color: #1b1b1b;
}
.accordion-title-2 {
  width: 100%;
  max-width: 380px;
  color: var(--secondary-color);
}
.accordion ul {
  padding-left: 1.2rem !important;
}
.data-and-ai-banner {
  background-image: url('/images/Data-and-Artificial-Intelligence-banner-2.jpg');
}
.Consulting-banner {
  background-image: url('/images/consulting-banner.jpg');
}
.cyber-resilience-banner {
  background-image: url('/images/cyber-resilience-banner.jpg');
}
.cloud-solutions-banner {
  background-image: url('/images/cloud-solutions-banner.jpg');
}
.about-us-banner {
  background-image: url('/images/about-page-banner.jpg');
}
.iLabs-banner {
  background-image: url('/images/ilabs-banner.jpg');
}
.oracle-banner {
  background-image: url('/images/oracle-solutions-optimized.jpg');
}
.Contract-Vehicles-banner {
  background-image: url('/images/Your-Partner.jpg');
}
.careers-banner {
  background-image: url('/images/careers-banner.jpg');
}
@media (min-width: 1024px) {
  #Consulting-banner-section-mobile,
  #data-and-ai-banner-section-mobile,
  #cyber-resilience-section-mobile,
  #cloud-solutions-banner-section-mobile,
  #about-us-banner-section-mobile,
  #our-leadership-banner-section-mobile,
  #iLabs-banner-section-mobile,
  #oracle-banner-section-mobile,
  #Contract-Vehicles-banner-section-mobile,
  #careers-banner-section-mobile {
    display: none;
  }
  #Consulting-banner-section-desktop,
  #data-and-ai-banner-section-desktop,
  #cyber-resilience-section-desktop,
  #cloud-solutions-banner-section-desktop,
  #about-us-banner-section-desktop,
  #our-leadership-banner-section-desktop,
  #iLabs-banner-section-desktop,
  #oracle-banner-section-desktop,
  #Contract-Vehicles-banner-section-desktop,
  #careers-banner-section-desktop {
    display: block;
  }
}

@media (max-width: 1024px) {
  #Consulting-banner-section-desktop,
  #data-and-ai-banner-section-desktop,
  #cyber-resilience-section-desktop,
  #cloud-solutions-banner-section-desktop,
  #about-us-banner-section-desktop,
  #our-leadership-banner-section-desktop,
  #iLabs-banner-section-desktop,
  #oracle-banner-section-desktop,
  #Contract-Vehicles-banner-section-desktop,
  #careers-banner-section-desktop {
    display: none;
  }
  #Consulting-banner-section-mobile,
  #data-and-ai-banner-section-mobile,
  #cyber-resilience-section-mobile,
  #cloud-solutions-banner-section-mobile,
  #about-us-banner-section-mobile,
  #our-leadership-banner-section-mobile,
  #iLabs-banner-section-mobile,
  #Contract-Vehicles-banner-section-mobile,
  #oracle-banner-section-mobile,
  #careers-banner-section-mobile {
    display: flex;
  }

  #section-custom-navbar {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
.primary-text {
  color: var(--primary-color);
}
.coordinating-text {
  color: var(--coordinating-color);
}
/* .core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.core-value-tile {
  text-align: center;
  border-left: 2px solid #ccc;
  padding: 10px;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.core-value-tile img {
  max-width: 100%;
  border-radius: 10px;
} */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
}
.core-value-tile {
  text-align: center;
  border-left: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
  width: auto;
}

.core-value-tile img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.core-value-content {
  padding: 10px;
  flex-grow: 1;
}

.border-left {
  border-left: 5px solid rgb(141, 53, 148);
}

.empowering-communities-div {
  width: 100%;
  margin-right: auto;
  word-wrap: break-word;
  hyphens: auto;
}
.empowering-communities-div-2 {
  width: 100%;
  margin-left: auto;
  display: flex;
  justify-content: end;
  text-align: end;
  word-wrap: break-word;
  hyphens: auto;
}
.grid-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 2rem;
  align-items: center;
  /* margin: 2rem 0; */
  text-align: justify;
}

.grid-item img {
  width: 100%;
  height: auto;
  /* border-radius: 12px; */
}

@media (max-width: 768px) {
  .grid-layout {
    grid-template-columns: 1fr;
  }
  .grid-item.img-right {
    order: 1;
  }

  .img-left,
  .img-right,
  .text-left,
  .text-right {
    order: 0;
  }
}

@media (max-width: 992px) {
  .core-values-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .core-value-tile {
    height: 650px;
  }
}

.certifications-wrapper {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1025px) {
  .certifications-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .certifications-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
  }
  .Certifications-wrapper .Certifications-card:nth-child(5) {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .certifications-wrapper {
    grid-template-columns: 1fr;
    align-items: center;
  }
  .empowering-communities-div,
  .empowering-communities-div-2 {
    width: 100%;
    margin: 0px;
    text-align: start;
  }
}
.custom-nav-wrapper {
  padding: 12px 0;
}
.changes-dropdown-sections {
  background: #e4e2e6;
}
.custom-nav-links {
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-nav-item {
  list-style: none;
}
.custom-nav-item.active a {
  color: var(--coordinating-color);
  font-weight: bold;
  border-bottom: 2px solid var(--coordinating-color);
}
.custom-nav-link {
  text-decoration: none;
  transition: color 0.3s ease;
  color: black;
}
.sticky-custom-navbar {
  position: fixed;
  width: 90%;
  padding-top: 20px;
  border-radius: 15px;
  left: 5%;
  /* left: 0; */

  z-index: 1000 !important;
}
.custom-nav-link:hover {
  color: var(--coordinating-color);
  border-bottom: 2px solid var(--coordinating-color);
}
.our-accelerators-wrapper {
  /* background-color: white; */
  border-radius: 15px;
}

.left-menu-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  /* padding-top: 20px; */
}
.left-menu-wrapper i {
  margin-right: 5px;
}

.left-menu-wrapper ul li {
  padding: 15px;
  /* background: #f5f5f5; */
  margin-bottom: 5px;
  /* padding-right: 4rem; */
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  transition: background 0.3s ease;
  border-radius: 5px;
  text-align: left;
}

.left-menu-wrapper ul li.active {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1) translateX(25px);
  transition: all 0.3s ease;
  /* text-align: center; */
}
.right-content-wrapper {
  display: flex;
  justify-content: flex-end !important;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  border-radius: 5px;
  border-top: solid 5px var(--primary-color);
  /* min-height: 75vh; */
  background: #fff;
  background: linear-gradient(140deg, #eae8f9, #ffffff);
}
.right-content-wrapper h3 {
  text-align: left;
}
@media (min-width: 1024px) {
  .right-content-wrapper {
    min-height: 75vh;
  }
}
@media (max-width: 1023px) {
  .right-content-wrapper {
    min-height: 100vh;
  }
}
.content {
  display: none;
  /* padding: 20px; */
  position: relative;
  z-index: 0;
  padding: 5% 10%;
  opacity: 0;
  /* transform: translateY(500px); */
  width: 95%;
  transition: all 2s ease;
}

.right-content-wrapper .active {
  /* transform: translateY(0); */

  display: flex;
  flex-direction: column;
  opacity: 1;
  /* justify-content: center; */
  height: 100%;
}

.accelerator-card {
  background: linear-gradient(140deg, #eae8f9, #ffffff);
  /* border-top: solid 10px var(--primary-color); */
  padding: 0 5%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accelerator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 8px; /* Adjust thickness */
  background-color: var(--primary-color);
  transition: width 0.5s cubic-bezier(0.5, 0.8, 0.6, 1.2);
}

.accelerator-card:hover::before {
  width: 100%;
}
.accelerator-card:hover {
  background: linear-gradient(120deg, #ffffff, #eae8f9);
  /* scale: 1.2; */
  z-index: 10;

  box-shadow: 0px 0px 0px rgba(0, 0, 15, 0.25);
}
.accelerator-card h3 {
  transition: all 0.3s ease-in;
}
.accelerator-card:hover h3 {
  color: var(--primary-color);
  /* transform: scale(1.025); */
  /* transform:; */
}
@media (max-width: 976px) {
  .left-menu-wrapper ul li.active {
    background: var(--primary-color);
    transform: scale(1) translateX(0px);
    transition: all 0.3s ease;
    /* text-align: center; */
  }
  .right-content-wrapper {
    min-height: auto;
  }
}
.our-digital-services {
  color: var(--secondary-color);
}
.solutions-cards-wrapper .service-card {
  align-items: center;
  justify-content: center;
  border-top: solid 5px var(--primary-color);
  border-radius: 5px;
  background: linear-gradient(135deg, #f5e8f9, #ffffff);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 5% 2rem 5%;
}
.solutions-cards-wrapper .service-card.style2 {
  background: linear-gradient(135deg, #0e0c25, #000000);
  color: rgba(255, 255, 255, 0.9);
  /* color: #e4e7ec; */
  border-top: 4px solid #a1a1aa;

  /* transition: background 0.5s ease-in; */
}
.our-digital-services {
  background-color: white;
}
.solutions-cards-wrapper {
  gap: 3rem;
}
.solutions-cards-wrapper .service-card.style2:hover {
  color: white !important;
  background: linear-gradient(135deg, #000000, #1e1b4b);
}
.solutions-cards-wrapper .service-card:hover {
  color: var(--primary-color);
  /* background: linear-gradient(135deg, #ffffff, #f5e8f9); */
}

.solutions-cards-wrapper i {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .card-6-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.use-case-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}
.border-left-5 {
  border-left-width: 5px;
  border-left-style: solid;
  padding-left: 20px;
  border-color: var(--primary-color);
}
.pl-3-percent {
  padding-left: 3%;
}

/* @media (max-width: 767px) {
  .service-cards-wrapper {
    grid-template-columns: 1fr; 1 card per row
  }
  .left-menu-wrapper-ilabs li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    flex-direction: column;
  }
  .left-menu-wrapper-ilabs li i {
    display: none;
  }
} */
.left-menu-wrapper-ilabs ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  /* padding-top: 20px; */
}
.left-menu-wrapper-ilabs i {
  margin-right: 5px;
}

.left-menu-wrapper-ilabs ul li {
  padding: 15px;
  /* background: #f5f5f5; */
  margin-bottom: 5px;
  /* padding-right: 4rem; */
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: var(--coordinating-color);
  transition: background 0.3s ease;
  border-radius: 5px;
}

.left-menu-wrapper-ilabs ul li.active {
  background: var(--coordinating-color);
  color: #fff;
  transform: scale(1.1) translateX(25px);
  transition: all 0.3s ease;
  /* text-align: center; */
}
@media (max-width: 976px) {
  .left-menu-wrapper-ilabs ul li.active {
    background: var(--coordinating-color);
    transform: scale(1) translateX(0px);
    transition: all 0.3s ease;
    /* text-align: center; */
  }
  .right-content-wrapper-ilabs {
    min-height: auto;
  }
}
.right-content-wrapper-ilabs {
  display: flex;
  justify-content: flex-end !important;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  border-radius: 5px;
  border-top: solid 5px var(--coordinating-color);
  /* min-height: 75vh; */
  background: #fff;
  background: linear-gradient(140deg, #eae8f9, #ffffff);
}
@media (min-width: 1024px) {
  .right-content-wrapper-ilabs {
    min-height: 75vh;
  }
}
@media (max-width: 1023px) {
  .right-content-wrapper-ilabs {
    min-height: 100vh;
  }
}
.right-content-wrapper-ilabs .active {
  /* transform: translateY(0); */

  display: flex;
  flex-direction: column;
  opacity: 1;
  /* justify-content: center; */
  height: 100%;
}
.section-4-rem {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 1440px) {
  .core-value-tile {
    height: 400px;
  }
  .homepage-header .content-wrapper {
    justify-content: center;
    padding-top: 0px;
  }
}
.challenge-section {
  background-color: white;
}
.section-ilab-video {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .justify-text {
  text-align: justify;
  word-break: break-word;
  hyphens: auto;
} */
.justify-text {
  text-align: justify;
  word-break: break-word;
  hyphens: auto;
  word-wrap: break-word; /* Ensures words can break if needed */
  text-justify: inter-word; /* Helps in reducing gaps between words */
}
ul {
  margin: 0px;
}
.blue-arrow ul {
  list-style: none;
  padding-left: 0;
}

.blue-arrow ul li {
  position: relative;
  padding-left: 25px;
  /* margin-bottom: 10px; */
}

.blue-arrow ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.purple-arrow ul {
  list-style: none;
  padding-left: 0;
}

.purple-arrow ul li {
  position: relative;
  padding-left: 25px;
  /* margin-bottom: 10px; */
}

.purple-arrow ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.primary-arrow ul {
  list-style: none;
  padding-left: 0;
}

.primary-arrow ul li {
  position: relative;
  padding-left: 25px;
  /* margin-bottom: 10px; */
}

.primary-arrow ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
.primary-arrow ul li:hover::before {
  color: var(--coordinating-color);
}
.apply-button {
  padding: 10px 15px;
  border-radius: 50px;
  background-color: #0c64c5;
  color: #fff;
  border: 1px solid transparent;
  letter-spacing: 1.5px;
}
.apply-button:hover {
  background-color: transparent;
  color: #0c64c5;
  border: 1px solid #0c64c5;
}
.accordion-item {
  background-color: #ffffff;
  border-radius: 0.4rem;
  border-left: none;
  border-right: none;
  transition: background-color 0.5s ease; /* Transition only background color */
}

.accordion-link {
  font-size: 1.6rem;
  color: var(--secondary-color);
  text-decoration: none;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-left: none;
  border-right: none;
  padding-right: 10%;
  padding-left: 10%;
  transition: color 0.3s ease; /* Transition color on active state */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.accordion-link h3 {
  font-weight: 500;
  font-size: 20px;
}

.accordion-link i {
  padding: 0.5rem;
  transition: transform 0.3s ease; /* Smooth rotation of the icon */
}

.accordion-link ul {
  display: flex;
  align-items: flex-end;
  list-style-type: none;
  margin-left: 25px;
}

.accordion-link li {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 1px 5px;
}

.accordion-link div {
  display: flex;
}

.accordion-link .ion-md-arrow-down {
  display: none;
}

.answer {
  max-height: 0; /* Initially collapsed */
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.3s ease,
    visibility 0s ease 0.5s; /* Consistent transition for opacity and visibility */
  background-color: rgb(228, 226, 230) !important;
  padding: 0px 10%;
  opacity: 0;
  visibility: hidden; /* Ensure it’s not interactive when collapsed */
}

.answer p {
  color: #000;
  transition: opacity 0.5s ease; /* Same timing for opacity on open and close */
}
.answer-li {
  width: fit-content;
  list-style-type: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--primary-color);
}
.answer-li:hover {
  transform: scale(1.05);
  color: var(--coordinating-color);
}
/* Active State for Accordion Item */
.accordion-item.active {
  background-color: rgb(228, 226, 230) !important; /* Active background color */
}

.accordion-item.active .accordion-link .ion-md-arrow-forward {
  display: none;
}

.accordion-item.active .accordion-link .ion-md-arrow-down {
  display: block;
}

.accordion-item.active .answer {
  max-height: 100vh; /* Remove hard limit to allow smooth transition */
  padding: 30px 10%;
  opacity: 1; /* Fade in the content */
  visibility: visible; /* Make it visible when active */
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.3s ease,
    visibility 0s ease 0s; /* Ensure the visibility transition occurs at the right time */
}

.accordion-item.active .accordion-link {
  color: #fff;
  background-color: var(--primary-color);
}
@media (min-width: 1200px) {
  .accordion-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    transform: scale(1.05);
  }
}
.center-img {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.text-decoration-none {
  text-decoration: none;
}
/* Mobile styles: Make the tabs scrollable horizontally */
@media (max-width: 768px) {
  .left-menu-wrapper-desktop {
    display: none;
  }
  .left-menu-wrapper-mobile {
    display: flex;
  }
  .mobile-tabs-scroll {
    overflow-x: auto;
    white-space: nowrap;
  }

  .mobile-tabs-scroll .tab {
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    width: fit-content;
  }
  .justify-text-heading {
    text-align: justify;
    word-break: break-word;
    hyphens: auto;
    word-wrap: break-word;
    text-justify: inter-word;
  }
}

@media (min-width: 768px) {
  .left-menu-wrapper-mobile {
    display: none;
  }
  .left-menu-wrapper-desktop {
    display: block;
  }
  .justify-text-heading {
    text-align: left;
  }
  .left-menu-wrapper ul {
    padding-top: 20px;
  }
  .left-menu-wrapper-ilabs ul {
    padding-top: 20px;
  }
}
.tab-arrow {
  border: none;
  background-color: transparent;
}
@media (max-width: 1199px) {
  .accordion-link {
    padding: 0px 5%;
  }
  .answer {
    padding: 0px 5%;
  }
  .w-80-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .accordion-item.active .answer {
    padding: 30px 5%;
  }
}
.bg-dark-gray {
  background-color: rgb(197 196 198) !important;
}
.isight-header-banner {
  width: 100vw;
  height: 800px;
  max-height: 60vh;
  background-color: black;
  background-image: url('/images/isight-banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.wrapper-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.main-button-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
}
/* d-md-flex gap-4 w-100 */
@media (max-width: 768px) {
  .main-button-wrapper {
    display: block;
  }
  .links-wrapper-2 {
    padding-top: 1rem;
  }
}
.service-cards-wrapper-contract {
  display: grid;
  gap: 1rem;
}
.grey-text {
  color: #b0acb5;
}
.service-card-contract {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  color: black;
  background: linear-gradient(135deg, #eae8f9, #ffffff);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  border-top: 8px solid var(--primary-color);
}
.service-card-contract:hover {
  box-shadow: 0px 0px 25px rgba(27, 26, 84, 0.5);
  transform: scale(1.1);
  cursor: pointer;
}
.service-card-contract p {
  margin-bottom: 10px;
}
.flex-wrapper-contract {
  display: flex;
  flex-direction: row;
}

@media (max-width: 1024px) {
  .service-card-contract {
    width: 100%;
  }
  .flex-wrapper-contract {
    display: flex;
    flex-direction: column;
  }
}

/* client success */
.blog-banner img {
  width: 100vw;
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .blog-banner img {
    min-height: 50vh;
    width: auto;
    overflow: hidden;
    object-fit: cover;
  }
}
.blog-banner {
  max-width: 100vw;
  max-height: 60vh;
  overflow: hidden;
}
.blog-banner:hover img {
  transform: scale(1.1);
}
/* body {
  min-height: 100vh;
} */
.blog-banner-w-wrapper {
  width: 80%;
  margin: 0 auto;
}
.blog-w-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .blog-w-wrapper {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .blog-banner-w-wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
.heading-container {
  min-height: 230px;
  background-color: rgb(228, 226, 230);
  transform: translateY(-200px);
  /* width: 75%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .heading-container {
    transform: translateY(0px);
    margin-bottom: 200px;
    width: 100%;
  }
  .blog-banner-heading {
    margin-bottom: +200px;
  }
  .blog-banner img {
    width: 100vw;
    height: auto;
  }
  .blog-banner {
    max-height: unset;
  }
}
@media (max-width: 767px) {
  .blog-banner-heading {
    padding: 0px 10px;
  }
}
.blog-banner-heading {
  margin-bottom: -200px;
}
@media (max-width: 425px) {
  .heading-container {
    width: 90%;
  }
}
.category-pill {
  padding: 5px 10px;
  border-radius: 15px;
  color: #fff;
  /* background-color: rgb(141, 53, 148); */
  background-color: var(--primary-color);
}
.blog-small-card a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
.blog-small-card a:hover {
  color: var(--primary-color);
}
@media (min-width: 768px) and (max-width: 992px) {
  .blog-banner-heading {
    margin-bottom: -100px;
  }
  .heading-container {
    transform: translateY(-100px);
  }
}

/* isights */
/* body {
  background: #fff !important;
} */
.isights-blog-banner img {
  width: 100vw;
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .isights-blog-banner img {
    min-height: 50vh;
    width: auto;
    overflow: hidden;
    object-fit: cover;
  }
}
.isights-blog-banner {
  max-width: 100vw;
  max-height: 60vh;
  overflow: hidden;
}
.isights-blog-banner:hover img {
  transform: scale(1.1);
}
/* body {
  min-height: 100vh;
} */
.isights-blog-banner-w-wrapper {
  width: 80%;
  margin: 0 auto;
}
.isights-blog-w-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .isights-blog-w-wrapper {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .isights-blog-banner-w-wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
.isights-heading-container {
  min-height: 230px;
  background-color: #fff;
  transform: translateY(-200px);
  /* width: 75%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .isights-heading-container {
    transform: translateY(0px);
    /* margin-bottom: 200px; */
    width: 100%;
  }
  .isights-blog-banner-heading {
    margin-bottom: +200px;
  }
  .isights-blog-banner img {
    width: 100vw;
    height: auto;
  }
  .isights-blog-banner {
    max-height: unset;
  }
}
@media (max-width: 767px) {
  .isights-heading-container {
    margin-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .isights-blog-banner-heading {
    padding: 0px 10px;
  }
}
.isights-blog-banner-heading {
  margin-bottom: -200px;
}
@media (max-width: 425px) {
  .isights-heading-container {
    width: 90%;
  }
}
.isights-category-pill {
  padding: 5px 10px;
  border-radius: 15px;
  color: #fff;
  /* background-color: rgb(141, 53, 148); */
  background-color: var(--coordinating-color);
}
.isights-blog-small-card a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
.isights-blog-small-card a:hover {
  color: var(--primary-color);
}
@media (max-width: 992px) {
  .isights-Related-blogs-div {
    padding-top: 2rem;
    background-color: #fff !important;
  }
}
.isights-badge-img {
  width: 20%;
}
@media (max-width: 500px) {
  .isights-badge-img {
    width: 30%;
  }
}
.isights-body {
  background-color: #fff !important;
}
@media (min-width: 768px) and (max-width: 992px) {
  .isights-blog-banner-heading {
    margin-bottom: -100px;
  }
  .isights-heading-container {
    transform: translateY(-100px);
  }
}
/* about us */
.core-values-grid {
  gap: 5px;
  padding-right: 0px;
}

.core-value-tile {
  position: relative;
  overflow: hidden;
  padding: 0px;
  border-radius: 0;
  width: 100%;
  transition: height 0.3s ease;
}

.core-value-tile img {
  border-radius: 0;
  display: block;
  transition: transform 0.3s ease;
}

.core-value-tile .blank-card {
  height: 100%;
  aspect-ratio: 9/4;
  background-color: rgb(27, 26, 84);
  display: block;
  transition: transform 0.3s ease;
}

.core-value-tile .core-value-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* Keep content vertically and horizontally centered */
  color: white;
  text-align: center;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically align */
  align-items: center;
  /* Horizontally align */
  opacity: 1;
  transition: opacity 0.5s ease, top 0.5s ease;
}

.core-value-tile h2 {
  font-size: 24px;
  margin: 0;
  opacity: 1;
  transition: opacity 0.5s ease, top 0.5s ease;
  position: relative;
  top: 0;
  /* Set initial position */
}

.core-value-tile p {
  font-size: 14px;
  width: 100%;
  padding: 10px 5%;
  opacity: 0;
  max-height: 0;
  /* Initially collapsed */
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  /* Smooth transition for opacity and height */
}

.core-value-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.core-value-tile:hover img {
  transform: scale(1.1);
}

.core-value-tile:hover .core-value-content {
  opacity: 1;
}

.core-value-tile:hover h2 {
  opacity: 1;
  top: -10px;
  /* Move h2 slightly up */
}

.core-value-tile:hover p {
  opacity: 1;
  max-height: 1000px;
  /* Expand to a large value (adjust as needed) */
  transition: opacity 0.5s ease, max-height 0.5s ease;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 5%;
}

.core-value-tile:hover::before {
  opacity: 1;
}

.heading-border-left {
  padding-left: 20px;
  border-left: 5px solid rgb(36, 86, 222);
  /* Corrected shorthand */
}

.heading-pad-border-left::before {
  content: '';
  position: absolute;
  height: 50%;
  /* Covers 50% of the element's height */
  width: 5px;
  /* Border thickness */
  background-color: rgb(36, 86, 222);
  /* Border color */
}

.heading-pad-border-left,
.heading-pad-border-right {
  position: relative;
  padding: 0 20px;
  /* Space for borders */
  display: inline-block;
}

.heading-pad-border-left::before,
.heading-pad-border-right::after {
  content: '';
  position: absolute;
  height: 50%;
  /* Covers 50% of the element's height */
  width: 5px;
  /* Border thickness */
  background-color: rgb(36, 86, 222);
  /* Border color */
}

.heading-pad-border-left::before {
  left: 0;
}

.heading-pad-border-right::after {
  right: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .heading-pad-border-right {
    padding: 0 0 0 20px;
    /* Match padding-left like .heading-pad-border-left */
  }

  .heading-pad-border-right::after {
    left: 0;
    /* Move the border to the left */
    right: auto;
    /* Remove right positioning */
  }
}

@media screen and (max-width: 540px) {
  .heading-pad-border-left,
  .heading-pad-border-right {
    padding: 0 0 0 20px;
    /* Apply padding only on the left */
  }

  .heading-pad-border-right::after {
    left: 0;
    /* Move the border to the left */
    right: auto;
  }
}

@media (max-width: 540px) {
  .core-value-tile .blank-card {
    min-height: 350px;
  }
}

.core-value-content {
  padding: 10px 0px !important;
}

.core-value-content h2 {
  width: 100%;
  background-color: rgb(0, 0, 0, 0.4);
}

.core-value-content p {
  margin: 0px;
}

.core-values-grid {
  padding-top: 0px;
  padding-bottom: 0px;
}

#community .grid-layout {
  align-items: start;
  margin-top: 0;
}

.certifications-wrapper {
  background-color: rgb(228, 226, 230);
  padding: 0px 5%;
  width: fit-content;
}
.center-certification-div {
  display: flex;
  justify-content: center;
}
/* .service-card {
  max-width: 250px;
} */

@media (max-width: 768px) {
  .service-card {
    width: 100%;
    max-width: 100%;
  }
}

.gray-div {
  background-color: rgb(228, 226, 230);
}

.main-accordion .accordion-button::after {
  margin-left: 10px !important;
}

.icon-container::after {
  filter: brightness(0) saturate(100%) invert(23%) sepia(74%) saturate(2451%)
    hue-rotate(205deg) brightness(92%) contrast(95%);
}

.purple-icon {
  width: 32px;
  height: auto;
  margin-left: 25px;
  margin-top: auto;
  margin-bottom: auto;
}

.heading-icon-wrapper {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 1023px) {
  .core-value-tile img {
    transform: scale(1.1); /* Apply scaling on all mobile screens */
  }

  .core-value-tile .core-value-content {
    opacity: 1; /* Ensure content is visible on mobile */
  }

  .core-value-tile h2 {
    opacity: 1;
    top: -10px; /* Slightly adjust the position of the header */
  }

  .core-value-tile p {
    opacity: 1;
    max-height: 1000px; /* Expand paragraph to show content */
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 5%;
  }

  .core-value-tile::before {
    opacity: 1; /* Show the overlay */
  }
}
/* careers */
.team-banner-container {
  width: 100%;
}
.team-banner-container img {
  max-width: 100%;
}
/* client success  */
.client-blog-header-banner {
  width: 100vw;
  height: 800px;
  max-height: 60vh;
  background-color: black;
  background-image: url('/images/client-success-banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
/* body {
  min-height: 100vh;
} */
.client-blog-card {
  margin-bottom: -100px;
}
.client-blog-card-img {
  max-height: 260px;
  overflow: hidden;
  height: 190px;
}
.client-blog-card-img img {
  max-width: 100%;
  min-height: 100%;
}
.client-blog-card-content {
  width: 95%;
  background-color: #e4e2e6;
  transform: translateY(-100px);
  min-height: 150px;
  padding: 25px 10px;
}
.client-blog-card-content a {
  all: unset;
  transition: color 0.3s ease-in-out;
}
.client-blog-card-content a:hover {
  color: rgb(141, 53, 148);
  cursor: pointer;
}
.client-blog-card-content h2 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.client-blog-card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.client-category-pill {
  padding: 5px 10px;
  border-radius: 15px;
  color: #fff;
  /* background-color: rgb(141, 53, 148); */
  background-color: var(--primary-color);
}
/* solutions  */
/* Tab Navigation */
.menu-tabs {
  display: flex;
  gap: 8px;
  position: relative;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  padding: 0px;
}
.menu-item {
  justify-content: center;
  display: flex;
}
@media (max-width: 768px) {
  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 10px;
  }
}

.menu-tabs::-webkit-scrollbar {
  height: 4px;
}

.menu-tabs::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

.menu-tabs .menu-link.active {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.tab-content-1 {
  background-color: rgba(27, 26, 84, 0.05);
  border-top: 5px solid var(--secondary-color);
  padding: 24px;
  margin-top: -1px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.menu-tabs .menu-link {
  color: var(--secondary-color);
  padding: 12px 25px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
  border: none;
  position: relative;
  white-space: normal;
  text-align: center;
  min-width: 100px;
  overflow-wrap: break-word;
  word-break: break-word;
  height: 100%;
  background-color: transparent;
}
/* contract  */
.cont-vehicle-banner {
  background: linear-gradient(
    to right,
    rgb(228, 226, 230),
    rgba(141, 53, 148, 0.9)
  );
  max-height: 50vh;
  height: 700px;
  width: 100vw;
  display: flex;
  flex-direction: row-reverse;
  padding: 3%;
}
.contract-img img {
  height: auto;
}
.cust-nav-wrapper-btn {
  background-color: rgb(27, 26, 84);
  transition: color 0.3s ease, background-color 0.3s ease; /* Corrected */
  border: 2px solid rgb(27, 26, 84);
  width: fit-content;
  height: fit-content;
  padding: 5px 25px;
}
.cust-nav-wrapper-btn:hover {
  color: rgb(27, 26, 84); /* Slightly darker shade on hover */
  background-color: white;
}
.cust-nav-btn {
  margin-top: 10px;
  color: white;
}
.cust-nav-wrapper-btn:hover a {
  color: rgb(27, 26, 84); /* Slightly darker shade on hover */
}
.cust-nav-btn .arrow {
  display: inline-block; /* Required for transform */
  transition: transform 0.3s ease; /* Ensures smooth rotation */
}
.cust-nav-btn:hover .arrow {
  transform: rotate(+45deg);
}
.contract-details {
  justify-content: start;
}
.contract-details a {
  text-decoration: none;
}
/* isight  */
/* body {
        background-color: #fff !important;
      } */
.blog-header-banner {
  width: 100vw;
  height: 800px;
  max-height: 60vh;
  background-color: black;
  background-image: url('/images/client-success-banner.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
/* body {
        min-height: 100vh;
      } */
.isight-blog-card {
  margin-bottom: -100px;
}
.isight-blog-card-img {
  max-height: 260px;
  overflow: hidden;
  height: 190px;
}
.isight-blog-card-img img {
  max-width: 100%;
  min-height: 100%;
}
.isight-blog-card-content {
  width: 95%;
  /* background-color: rgb(228, 226, 230); */
  background-color: #fff;
  transform: translateY(-100px);
  min-height: 150px;
  padding: 25px 10px;
}
.isight-blog-card-content a {
  all: unset;
  transition: color 0.3s ease-in-out;
}
.isight-blog-card-content a:hover {
  color: var(--coordinating-color);
  cursor: pointer;
}
.isight-blog-card-content h2 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.isight-blog-card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.isight-category-pill {
  padding: 5px 10px;
  border-radius: 15px;
  color: #fff;
  /* background-color: rgb(141, 53, 148); */
  background-color: var(--coordinating-color);
}

/* our leadership  */
.center-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  height: 100%;
}
.grid-item {
  height: 100%;
  width: 100%;
}

.prof-card {
  position: relative;
  padding: 15px;
  cursor: pointer;
  box-sizing: border-box;
  background: var(--default-bg-color, white);
  border: 3px solid transparent;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Bottom gradient border */
.prof-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  width: calc(100% - 20px);
  height: 4px;
  background: linear-gradient(
    to right,
    var(--coordinating-color),
    var(--primary-color)
  );
  opacity: 0.7;
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out,
    left 0.3s ease-in-out, height 0.3s ease-in-out;
}

.prof-card:hover::after {
  width: calc(100% - 40px);
  left: 20px;
  opacity: 1;
}

/* Active class for larger gradient border */
.prof-card.active::after {
  width: calc(100% - 10px); /* Increase width to make it larger */
  left: 5px; /* Adjust left position to center it */
  height: 7px; /* Increase height to make the gradient more prominent */
  opacity: 1; /* Full opacity for the active state */
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out,
    left 0.3s ease-in-out, height 0.3s ease-in-out; /* Smooth transition for all properties */
}

.prof-card .triangle {
  position: absolute;
  bottom: -4rem; /* Moves the triangle 2rem below */
  left: 50%; /* Centers the triangle horizontally */
  transform: translateX(-50%); /* Ensures the triangle is perfectly centered */
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent; /* Adjusted for width of the left side */
  border-right: 1.5rem solid transparent; /* Adjusted for width of the right side */
  border-bottom: 3rem solid #f1f4f9; /* Reversed the triangle by using border-bottom and increased the size */
}

.prof-detail-card {
  position: relative;
  padding: 0 15px; /* Only horizontal padding, vertical padding will expand */
  cursor: pointer;
  box-sizing: border-box;
  background-color: #f1f4f9;
  /* transition: max-height 0.5s ease-out, padding 0.5s ease-in, border-color 0.5s ease-in-out; */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
}
.prof-detail-card.ease-out {
  transition: max-height 0.5s ease-out, padding 0.5s ease-in,
    border-color 0.5s ease-in-out;
  opacity: 1;
}
.prof-detail-card.show {
  max-height: 1000vh; /* Set this to a high enough value */
  padding: 15px; /* Restore padding when shown */
  opacity: 1;
  transition: max-height 0.5s ease-out, padding 0.5s ease-in,
    border-color 0.5s ease-in-out;
}

.prof-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 3px; /* Thickness of the border */
  background: #f1f4f9; /* Default color when collapsed */
}

.prof-detail-card.show::after {
  background: linear-gradient(
    to right,
    var(--coordinating-color),
    var(--primary-color)
  ); /* The border color when the card is shown */
}

.prof-img {
  min-width: 150px;
  max-width: 150px;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: start;
  margin-bottom: auto;
}

.prof-img img {
  min-width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.icon-div {
  display: flex;
  justify-content: space-between;
}
.prof-details {
  padding-top: 15px;
  flex: auto;
}
@media (max-width: 1024px) {
  .prof-details .paragraph-big {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .prof-details {
    height: 100% !important;
    align-items: start !important;
  }
  .icon-div {
    display: block;
  }
}
.gradient-icon {
  font-size: 30px; /* Adjust as needed */
  background: linear-gradient(
    to right,
    var(--coordinating-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  -webkit-text-stroke: 0.2px;
}
.linkedin-icon {
  font-size: 30px; /* Adjust as needed */
  background: #0077b5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.2s ease-in-out;
  height: 100%;
}
.icon-div .linkedin-icon:hover {
  transform: scale(1.1);
}
.d-triangle-none {
  display: none;
}
.d-triangle-block {
  display: block;
}
.prof-det-left {
  display: flex;
  flex-direction: column;
}
.prof-det-left .prof-img {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .prof-det-left {
    text-align: center;
  }
}
#our-leadership-banner-section-mobile {
  background-image: url('/images/our-leadership-banner.jpg');
}
@media (min-width: 1200px) {
  .address-div-footer {
    max-width: 320px !important;
  }
}

@media (min-width: 1025px) {
  .card-3-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.oracle-red-text {
  color: #da1413;
}
.coordinating-arrow ul {
  list-style: none;
  padding-left: 0;
}

.coordinating-arrow ul li {
  position: relative;
  padding-left: 25px;
  /* margin-bottom: 10px; */
}

.coordinating-arrow ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--coordinating-color);
  font-weight: bold;
}
.stats-box {
  /* border: 2px solid var(--primary-color); */
  padding: 40px;
  border-radius: 14px;
  margin: 0 auto;
  text-align: center;
  max-width: 1300px;
}

.stats-title {
  margin: 0;
  color: var(--primary-color);
}

.stats-subtitle {
  margin: 15px 0 35px;
  color: var(--text-light);
}

/* .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  margin-top: 30px;
} */

/* .stats-item {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  border: 2px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.stats-item:hover {
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, #6a1b9a, #da1413);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: scale(1.05);
  border: 2.5px solid transparent;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
} */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  grid-auto-rows: 1fr; /* ⬅️ ensures all rows have equal height */
}

.stats-item {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  color: black;
  height: 100%; /* stretch within grid row */
}

.stats-item:hover {
  background: linear-gradient(117deg, #8d3594, #da1413);
  color: white;
  transform: scale(1.05);
  /* border: 2.5px solid transparent; */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.stats-item:hover .stats-desc p {
  color: #6a1b9a;
}

.stats-counter {
  color: var(--primary-color);
  margin: 0;
}
.stats-item:hover .count-heading,
.stats-item:hover .stats-counter,
.stats-item:hover .stats-desc p {
  color: #fff;
  transition: color 0.3s ease;
}

.stats-desc {
  text-align: center;
}

.stats-desc p {
  margin: 6px 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.coordinating-text-imp {
  color: var(--coordinating-color) !important;
}
.purple-opacity-bg {
  background: rgb(141, 53, 148, 0.3);
}

.dropdown-submenu {
  position: relative;
}
@media (min-width: 992px) {
  .dropdown-submenu .nested-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    margin-left: -1px;
    border-radius: 0 6px 6px 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .dropdown-submenu:hover .nested-dropdown {
    display: block;
    opacity: 1;
  }

  .chevron-down-icon {
    display: none;
  }
  .chevron-right-icon {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .dropdown-submenu .nested-dropdown {
    display: none;
    position: static;
    width: 100%;
    margin-left: 15px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: none;
    border-radius: 0;
  }

  .dropdown-submenu.show .nested-dropdown {
    display: block;
  }

  .chevron-right-icon {
    display: none;
  }
  .chevron-down-icon {
    display: inline-block;
  }
}

.dropdown-item-main {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.isight-heading-wrapper {
  min-height: 140px;
}

.wrapped-image {
  float: right;
}

@media (min-width: 528px) and (max-width: 768px) {
  .award-image {
    height: 500px;
    margin: 10px;
  }
}

@media (min-width: 768px) and (max-width: 2170px) {
  .award-image {
    height: 500px;
    margin: 12px;
  }
}

@media (min-width: 2170px) {
  .award-image {
    height: 400px;
    margin: 12px;
  }
}

@media (min-width: 528px) and (max-width: 768px) {
  .govclon-flyer {
    height: 200px;
    margin-left: 12px;
  }
}

@media (min-width: 768px) and (max-width: 820px) {
  .govclon-flyer {
    height: 200px;
    margin-left: 12px;
  }
}

@media (min-width: 820px) and (max-width: 1200px) {
  .govclon-flyer {
    height: 200px;
    margin-left: 12px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .govclon-flyer {
    height: 215px;
    margin-left: 12px;
  }
}

@media (min-width: 1300px) and (max-width: 1500px) {
  .govclon-flyer {
    height: 250px;
    margin-left: 12px;
  }
}

@media (min-width: 1500px) and (max-width: 2170px) {
  .govclon-flyer {
    height: 250px;
    margin-left: 12px;
  }
}

@media (min-width: 2170px) {
  .govclon-flyer {
    height: 300px;
    margin-left: 12px;
  }
}
