.logo {
  font-weight: bold;
  color: #4b0082;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  /* height: 100%; */
}

/* linkedin */
.social-icon {
  width: 25%;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.2s ease;
}

.fa-linkedin {
  color: #0077b5;
}

/* LinkedIn color */

/* end */

.btn-button {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-phonenumber {
  padding: 12px 14px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 650;
  color: aliceblue;
}


.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
}

.navbar-nav li {
  margin: 0 4px;
  /* Spacing between nav items */
}

.dropdown-menu {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.dropdown-item {
  color: #1a1a1a;
  font-weight: bold;
  /* font-family: "Poppins", sans-serif; */
  font-size: 15px;
  padding: 10px 20px;
  background-color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 180px;
}

.navbar-nav .nav-link {
  font-size: 17px;
  font-weight: 600;
  color: #2f2f93;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
  position: relative;

  font-family: "Poppins", sans-serif;

  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: #fc8939;
  /* Orange */
  text-decoration: none;
}

/* Force consistent color, remove hover effects */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
  background-color: #f9f9f9;
  color: #fc8939 !important;
  /* Orange text on hover */
  text-decoration: none;
}

.navbar-brand {
  margin-left: 0;
  padding-left: 0;
}

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

/* -------------------------- */
/* .sambhuti-text {
  text-align: center;
  margin-top: 30px;
}

.sambhuti-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.sambhuti-icon img {
  margin-left: 25px;
  width: 80%;
  height: auto;
  display: block;
} */

.banner-only-section {
  margin-top: 50px;
  background-image: url("../images/new-banner-sam.svg");
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* width: 100%; */
  /* height: 650px; */
  position: relative;
  aspect-ratio: 16/7;
}

/* Optional overlay text styling */
/* .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
} */

.sambhuti-learning-section {
  background: #fff;
  position: relative;
}

.banner-container {
  position: relative;
  display: inline-block;
}

.icon-container {
  position: absolute;
}

/* Circular icon style */
.icon-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  /* border: 4px solid #f57c00; */
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon-overlay img {
  width: 90px;
  height: 90px;
  transition: transform 0.3s ease;
}

/* Hover card */
.hover-card {
  font-weight: 700;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 350px;
  height: 150px;
  background: #ffffff;
  color: #2e3083;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hover effects */

.icon-overlay:hover img {
  transform: scale(1.2);
}

.icon-overlay:hover .hover-card {
  opacity: 1;
  transform: translateX(-50%) scale(1.05);
}

/* Positioning the 4 icons around the image (adjust according to banner size) */
.icon1 {
  top: 62%;
  left: 20%;
  /* width: 110px;
  height: 110px; */
}

.icon2 {
  top: 33%;
  left: 29%;
  /* width: 110px;
  height: 110px; */
}

.icon3 {
  top: 30%;
  left: 65%;
  /* width: 110px;
  height: 110px; */
}

.icon4 {
  top: 62%;
  left: 75%;
  /* width: 110px;
  height: 110px; */
}

@media (max-width: 1440px) {
  .icon1 {
    top: 64%;
    left: 19%;
  }

  .icon2 {
    top: 29%;
    left: 29%;
  }

  .icon3 {
    top: 23%;
    left: 63%;
  }

  .icon4 {
    top: 62%;
    left: 75%;
  }
}

/* For screens around 1366px */
@media (max-width: 1366px) {
  .icon1 {
    top: 62%;
    left: 19%;
  }

  .icon2 {
    top: 30%;
    left: 28%;
  }

  .icon3 {
    top: 24%;
    left: 64%;
  }

  .icon4 {
    top: 63%;
    left: 76%;
  }
}

@media (max-width: 1240px) {
  .icon1 {
    top: 61%;
    left: 19%;
  }

  .icon2 {
    top: 26%;
    left: 29%;
  }

  .icon3 {
    top: 24%;
    left: 64%;
  }

  .icon4 {
    top: 63%;
    left: 76%;
  }
}

@media (min-width:350px) and (max-width: 767px) {
  .banner-container {
    width: 100%;
  }

  .icon-overlay img {
    width: 40px;
    /* smaller than original 90px */
    height: 40px;
  }

  .hover-card {
    width: 300px;
    text-align: center;
    font-size: 8px;
    height: auto;
    padding: 6px 10px;
  }

  .icon-container {
    transform: scale(0.8);
    /* optional: to reduce icon size */
  }

  .icon1 {
    top: 62%;
    left: 22%;
  }

  .icon2 {
    top: 23%;
    left: 33%;
  }

  .icon3 {
    top: 22%;
    left: 66%;
  }

  .icon4 {
    top: 62%;
    left: 77%;
  }
  /* banner  */
  .banner-only-section{
 margin-top: 90px;
  }
}

/* mobile version */
/* Default: Show desktop elements, hide mobile */
.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

/* Mobile: Hide desktop image + icons, show mobile image */
@media (min-width:350px) and (max-width: 767px) {

  .desktop-banner,
  .icon-container {
    display: none !important;
  }

  .mobile-banner {
    display: block !important;
  }
}

/*  orange banner */
.container1 {
  background-image: url(../images/orange-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
}

/* Heading Text */
.stats-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
  margin-top: 100px
}

@media (min-width:350px) and (max-width: 767px) {
  .stats-heading {
    font-size: 20px;
    margin-top: 0px;
    /* color: black; */
  }
}

.stats-heading span {
  display: block;
}

/* Flex container for cards */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 32px;
}

@media (min-width:350px) and (max-width: 767px) {
  .stats-card-ceo {
    height: 890px !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
  }
}

/* Individual card */
.stats-card-ceo {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  background-color: #fff;
  flex: 1 1 22%;

  max-width: 500px;
  box-sizing: border-box;
  text-align: center;
  height: 600px;
}

/* for linkedin */
.stats-span-about {
  margin: 0px 60px 0 60px;
  display: flex;
  align-items: center;
  /* vertically center items */
  justify-content: space-around;
  /* add space between text and icon */
  gap: 10px;
  /* optional spacing between items */
}

/* this is differrnt card
 */
.stats-card {
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  background-color: #fff;
  flex: 1 1 22%;
  max-width: 300px;
  box-sizing: border-box;
  text-align: center;
  height: 210px;
}

/* aboutus card */

/* Main number */
.stats-number {
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #e15700;
}

.stats-number span {
  font-size: 18px;
  color: #222;
}

/* Text below number */
.stats-span {
  font-family: "Red Hat Display", sans-serif;
  font-weight: bold;
  font-size: 24px;
  /* color: #292e89; */
  margin-top: 10px;
}

/* Tablet and below */
@media (max-width: 992px) {
  .stats-row {
    justify-content: center;
  }

  .stats-card {
    flex: 1 1 45%;
    max-width: 90%;
  }
}



.traditional-approach,
.sambhuti-approach-box {
  padding: 30px;
  border-radius: 20px;
  position: relative;
}

.traditional-approach {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #5e5e5e;
}

.sambhuti-approach-box {
  background: linear-gradient(135deg, #ff6a00, #ffa94d);
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 10px solid #fbede2;
  /* Light grey or any color you want */
}

/* Headings */
.traditional-approach h3,
.sambhuti-approach-box h3 {
  font-weight: 700;
}

/* List Styling */
.traditional-approach ul,
.sambhuti-approach-box ul {
  list-style: none;
  padding-left: 0;
}

.traditional-approach li,
.sambhuti-approach-box li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 20px;
}

.traditional-approach li,
.sambhuti-approach-box li {
  position: relative;
  padding-left: 40px;
  /* space for small tick */
}

.traditional-approach li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 26px;
  /* small tick size */
  height: 26px;
  background-image: url(../images/tick.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sambhuti-approach-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 26px;
  /* small tick size */
  height: 26px;
  background-image: url(../images/tickwhite.svg);
  /* update path if needed */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Optional: Add a VS badge */
.row.align-items-center {
  position: relative;
  margin-left: 60px;
  margin-right: 60px;
}

.row.align-items-center::before {
  content: "vs";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 3px solid white;
  transform: translate(-50%, -50%);
  background: #2e2e2e;
  color: white;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  z-index: 10;
  font-size: 23px;
}

/* end */

/* card with hover */

/* for simvid temporary */

/* Wrapper positions tooltip */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

/* Tooltip text (hidden by default) */
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  background-color: #2e2eaa;
  color: #fff;
  text-align: center;
  border-radius: 16px;
  padding: 8px 12px;
  position: absolute;
  bottom: 125%;
  /* Show above button */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.3s;
  z-index: 10;
}

/* Show tooltip on hover */
.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.text-left {
  text-align: left !important;
}

.custom-gradient-btn {
  /* max-width: 300px; */
  background: white;
  color: #2e2eaa;
  /* Dark blue text */
  border: 2px solid;
  /* border-image-slice: 1; */
  padding: 12px 48px;
  font-weight: bold;
  border-radius: 999px;
  /* Fully rounded (pill-shaped) */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (min-width:350px) and (max-width: 767px) {

  .certified-group {
    margin-left: 40px;
  }
}

.certified-group {
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
  top: 0;
  transition: top ease 0.5s;
  width: 100%;
  border: 1px solid #e9ecef;
}

.certified-group:hover {
  top: -10px;
}

.solution-img {
  height: 20px !important;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: 0;
  /* Aligns to the left */
  margin-right: auto;
  /* Prevents centering */
}

.get-certified {
  /* background: #b7dde8; */
  padding: 20px;
  border-radius: 20px;
  border: 1.5px solid #eeeeee;
  /* Initially set to transparent */
}

.get-certified h5 {
  margin-bottom: 10px;
  font-size: 17px;
  height: 20px;
}

.get-certified p {
  height: 60px;
  margin-bottom: 20px;
  color: #685f78;
  font-size: 14px;
  font-weight: 500;
}

/* -------------------------------- */

.left-card:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: 20px;
  background: linear-gradient(45deg, #fd9a57, #6267ff);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* === LEFT CARD STYLING === */
.left-card {
  width: 100%;
  /* height: auto ; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 20px;
  position: relative;
  background: transparent;
  height: 300px;
}

.left-card img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
}

/* === RIGHT CARD STYLING === */
.right-card {
  width: 100px;
  /* Reduced size of the card */
  height: 100px !important;
  margin: 0 10px;
  /* Reduced margin between cards */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  background: transparent;
  border-radius: 20px;
}

/* Content inside right card */
.right-card .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 8px;
  background: transparent;
}

/* Text inside right card */
.right-card p {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  color: black;
}

/* === Gradient Border on Highlight/Active === */
.right-card.highlight,
.left-card.active {
  border-radius: 20px;
  padding: 16px;
  position: relative;
  z-index: 0;
}

.right-card.highlight::before,
.left-card.active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: 20px;
  background: linear-gradient(45deg, #fd9a57, #6267ff);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* Gradient Text on Right Card when Highlighted */
.right-card.highlight p {
  background: linear-gradient(45deg, #fd9a57, #6267ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* our impact
 */
.impact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.impact-img {
  width: 120px;
  height: 14px;
}

.card-title {
  margin-bottom: 0;
}

#our-impact {
  padding-top: 0 !important;
}

#our-impact .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#our-impact .card:hover {
  border: 1.5px solid #eeeeee !important;
}

.custom-border {
  border: 1.5px solid #eee !important;
  border-radius: 20px;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  max-height: 190px !important;
}

#our-impact .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  /* min-height: 400px; */
}

#our-impact .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 20px;
}

#our-impact .card-body img {
  width: 48px;
  height: auto;
}

#our-impact .card-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

#our-impact .card-text {
  font-size: 16px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 15px;
}

#our-impact .text-end {
  font-size: 2rem;
  color: #aaa;
  margin-top: auto;
}

/* endS */
/* courasol */

.testimonials-section {
  text-align: center;
  /* padding: 112px 64px; */
  width: 100%;
  /* max-width: 1920px; */
}

.testimonials-section h2 {
  /* font-family: Plus Jakarta Sans; */
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0%;
  text-align: center;
  color: #222222;
}

.carousel-item {
  height: 100%;
  padding: 20px;
}

.testimonial-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  /* Initially set to transparent */
  border-top: 3px solid #fd9a57;
  /* Top border with color FD9A57 */
  border-bottom: 3px solid #fd9a57;
  /* Bottom border with color FD9A57 */
  border-left: 3px solid #6267ff;
  /* Left border with color FD9A57 */
  border-right: 3px solid #6267ff;
  /* Right border with color 6267FF */
  margin: auto;
  width: 75%;
  height: 240px;
  gap: 20px;
}

.testimonial-logo {
  width: 100px;
  margin-bottom: 10px;
}

.testimonial-text {
  color: black;
  height: 100px;

  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.testimonial-person p {
  /* font-family: Roboto; */
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: black;
}

.testimonial-person img {
  width: 50px;
  border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
  filter: invert(1);
}

@media (min-width:350px) and (max-width: 767px) {
  .testimonials-section {
    padding: 48px 20px;
  }

  .testimonials-section h2 {
    font-size: 24px;
    line-height: 150%;
  }

  .testimonial-box {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  /* .testimonial-text {
    font-size: 18px;
    line-height: 140%;
  } */

  .carousel-control-next {
    right: -25px;
  }

  .carousel-control-prev {
    left: -25px;
  }
}

/* -------------------------- */
.classroom-to-career {
  text-align: center;
  padding: 4rem 1rem;
  background: #252774;
  color: white;
}

.ctc-content {
  max-width: 800px;
  margin: 0 auto;
}

.classroom-to-career h2 {
  font-size: 2.5rem;
  background: white;
  -webkit-background-clip: text;
}

.classroom-to-career .tagline {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 300;
  color: white;
}

.swipe-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
  animation: bounce 2s infinite;
}

.swipe-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@media (min-width:350px) and (max-width: 767px) {
  .classroom-to-career h2 {
    font-size: 2rem;
  }

  .classroom-to-career .tagline {
    font-size: 1.2rem;
  }
}

.gradient-text {
  background: linear-gradient(113.82deg,
      #fd812c 3%,
      #fd7920 36.75%,
      #df5a00 76.38%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(100.08deg,
      #9fa2e3 -35.1%,
      #5054c8 42.84%,
      #0e0f2c 162.24%);
  color: white;
  border-radius: 24px;
  padding: 12px 24px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
}

.btn-outline-dark {
  border-radius: 24px;
  border: 2px solid rgba(231, 98, 8, 1);
  color: rgba(231, 98, 8, 1);
  padding: 12px 24px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  background: white;
}

.videocontainer {
  margin-top: 96px;
  margin-bottom: 96px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-player {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.video-playbutton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
}

@media (min-width:350px) and (max-width: 767px) {
  .video-player {
    max-width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .videocontainer {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }
}

.ai-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  color: white;
}

.ai-underline {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}

.for-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: white;
}

.educational-institutions {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  color: white;
}

@media (min-width:350px) and (max-width: 767px) {
  .ai-heading {
    margin-top: 24px;
    font-size: 24px;
    line-height: 150%;
    text-shadow: #585151 1px 1px 3px;
  }

  .for-text {
    font-size: 14px;
    line-height: 120%;
  }

  .educational-institutions {
    font-size: 24px;
    line-height: 150%;
  }
}

.btn-light {
  background: white;
  color: rgba(231, 98, 8, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 1000px;
  border: none;
  padding: 12px 24px;
  margin-bottom: 50px;
}

@media (min-width:350px) and (max-width: 767px) {
  .btn-light {
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 0px;
  }
}

.btn-lightt {
  gap: 8px;
  border-radius: 1000px;
  border-width: 1px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  background-color: white;
  color: rgba(0, 0, 0, 1);
}

.btn-outline-light {
  gap: 8px;
  border-radius: 1000px;
  border-width: 1px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}

.stats-section {
  color: white;
  padding: 2rem 0;
  position: relative;
  margin-bottom: 100px;
}

table {
  border-left: 1px solid #ffffff;
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  table-layout: fixed;
  margin-left: 8px;
}

.audience-section {
  padding: 64px 112px;
  background-color: #ffffff;
  width: 100%;
}

.audience-section h1 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
}

.audience-section h2 {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 64px;
}

.audience-section .learningimg {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  max-height: 1080px;
}

.audience-section2 {
  padding: 48px 10px;
}

.audience-section2 h1 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #666666;
}

.audience-section2 h2 {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #222222;
  margin-bottom: 32px;
}

.d-flex {
  flex-wrap: wrap;
  gap: 16px;
}

.features-section {
  /* padding: 112px 64px; */
  background-color: white;
  width: 100%;
  height: 100%;
  margin-bottom: 0px;
}

.features-section h6 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
  color: rgba(102, 102, 102, 1);
}

.features-section h2 {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(34, 34, 34, 1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card {
  border: 1px dashed #252886;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card h3 {
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}

.services-container {
  padding-top: 64px;
  width: 100%;
  /* max-width: 1360px; */
}

.top-row,
.bottom-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.top-row>div {
  flex: 1;
  width: 33.333%;
}

.bottom-row>div {
  flex: 1;
  width: 50%;
}

@media (min-width:350px) and (max-width: 767px) {

  .top-row,
  .bottom-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .top-row>div,
  .bottom-row>div {
    width: 100%;
    flex: none;
  }

  .service-card {
    width: 100%;
    max-width: 400px;
    padding: 10px 20px;
  }

  .features-section h6 {
    font-size: 16px;
    line-height: 150%;
  }

  .features-section h2 {
    font-size: 20px;
    line-height: 150%;
  }

  .features-section {
    padding: 48px 20px;
  }

  .services-container {
    padding-top: 24px;
  }
}

.color-secondary {
  color: rgba(0, 116, 181, 1);
}

.color-tertiary {
  color: rgba(198, 0, 154, 1);
}

.ai-section {
  padding: 112px 64px;
  align-items: center;
  background-color: #fff3eb;
}

.containerrr {
  max-width: 1360px;
  margin: 0 auto;
}

.inner-c {
  padding-top: 96px;
  padding-left: 108px;
  padding-right: 108px;
  column-gap: 80px;
}

.containerrr h2 {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #000000;
}

.containerrr p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #666666;
}

.section-title p {
  font-family: Roboto;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
  color: #666666;
}

.section-title h1 {
  color: #222222;
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

@media (min-width:350px) and (max-width: 767px) {
  .ai-section {
    padding: 48px 20px;
  }

  .section-title p {
    font-size: 16px;
    line-height: 150%;
  }

  .section-title h1 {
    font-size: 20px;
    line-height: 150%;
  }

  .section-title h6 {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
  }

  .inner-c2 {
    margin-top: 48px;
  }

  .inner-c2 img {
    width: 100%;
    height: 100%;
  }

  .containerrr h2 {
    margin-top: 24px;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
  }

  .containerrr p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
  }
}

.faq-section {
  text-align: center;
  padding: 112px 64px;
  width: 100%;
  height: 100%;
  gap: 80px;
}

.faq-section h5 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 8%;
  text-align: center;
  color: #666666;
}

.faq-section h3 {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #222222;
  margin-bottom: 75px;
}

.accordion-item {
  border: 1px solid #aaaaaa;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  padding: 20px;
  color: #000000;
  font-family: Roboto;
  line-height: 150%;
  font-size: 18px;
  letter-spacing: 0%;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
  color: #000;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234f46e5' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3E%3C/svg%3E");
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234f46e5' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

@media (min-width:350px) and (max-width: 767px) {
  .faq-section {
    padding: 48px 20px;
  }

  .faq-section h5 {
    font-size: 16px;
    line-height: 120%;
  }

  .faq-section h3 {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 24px;
  }

  .accordion-button {
    font-size: 16px;
    line-height: 150%;
  }
}

.contact-section {
  text-align: center;
}

.contact-section h6 {
  font-family: Roboto;
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 8%;
  text-align: center;
  text-transform: uppercase;
  color: #666666;
}

.contact-section h2 {
  /* font-family: Plus Jakarta Sans; */
  font-weight: 700;
  font-size: 35px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #222222;
  margin-bottom: 32px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
  text-align: left;
  /* font-family: Plus Jakarta Sans; */
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #222222;
}

.btn-submit {
  width: 105px;
  background: #262a90;
  color: white;
  border: none;
  display: block;
  gap: 8px;
  border-radius: 1000px;
  /* font-family: Plus Jakarta Sans; */
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  /* box-shadow: 0px 4px 4px 0px #0000000d; */
  margin: auto;
}

.btn-submit:hover {
  background: #262a90;
  color: white;
  border: none;
  display: block;
  gap: 8px;
  border-radius: 1000px;

  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  box-shadow: 0px 4px 4px 0px #0000000d;
}

@media (min-width:350px) and (max-width: 767px) {
  .contact-section {
    padding: 48px 20px;
  }

  .contact-section h6 {
    font-size: 16px;
    line-height: 120%;
  }

  .contact-section h2 {
    font-size: 24px;
    line-height: 150%;
  }

  .contact-form {
    padding-top: 24px;
    color: #000000;
    font-size: 16px;
    line-height: 150%;
  }
}

.btn-ok {
  background: #aaaaaa;
  color: #000000;
  border-radius: 1000px;
  font-family: Arial, sans-serif;
  border: none;
}

.bg-dark-blue {
  background: linear-gradient(225.22deg, #262a90 53.87%, #577eb9 138.32%);
  color: white;
}

.footer p {
  font-size: 14.5px;
  font-family: "Poppinsmedium", sans-serif;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.divider {
  color: #fff;
  margin: 0 8px;
}

.text-pink {
  color: white;
}

.text-orange {
  color: white;
}

.error {
  color: red;
  font-size: 0.875rem;
  margin-top: 4px;
}

.Poppinsmedium {
  font-family: "Poppins", sans-serif;
  /* Make sure the correct font is being used */
  font-size: 22px;
  /* Increase the font size */
  letter-spacing: 0.5px;
  /* Slightly increase letter spacing for clarity */
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
  /* Center-align the text for a balanced look */
}

/* .custom-img {
  width: 120px;
  height: 14px;
  border: 1px solid green;

} */

/* animation */
/* .highlight-text {
  color: #000000;
  font-weight: bold;
}


.left-card {
  width: 180px;
  height: 100px !important;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.left-card img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
}

.right-card {
  width: 110px;
  height: 100px !important;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}


.right-card .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 16px;
  padding: 8px;
  background: transparent; 
}


.right-card p {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  color: black; 
}

.right-card.highlight,
.left-card.active {
  position: relative;
  border-radius: 20px;
  z-index: 0;
  padding: 16px; 
}


.right-card.highlight::before,
.left-card.active::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px; 
  border-radius: 20px;
  background: linear-gradient(45deg, #fd9a57, #6267ff);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  transition: all 3s ease;
}

.right-card.highlight .image-container {
  background: linear-gradient(45deg, #fd9a57, #6267ff); 
}


.right-card .image-container img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}


.right-card.highlight p {
  background: linear-gradient(45deg, #fd9a57, #6267ff);
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  color: transparent; 
  transition: background 0.5s ease;
} */

/* ----------------------------about us */
.section-heading {
  /* font-family: PT Sans; */
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;

  color: #34429b;
}

.left-content {
  font-size: 22px;
  line-height: 1.8;
  color: #34429b;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  min-height: 100%;
}

.right-content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  padding: 20px 30px;
}

.right-content ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
}

.right-content li {
  margin-bottom: 0.4rem;
  list-style-type: disc;
}

.row {
  align-items: center;
}

@media (min-width:350px) and (max-width: 767px) {

  .left-content,
  .right-content {
    text-align: center;
    padding: 20px 15px;
  }

  .right-content {
    padding-top: 0;
  }
}

.highlight {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Show small screen image by default */
.image-lg {
  display: none;
}
.image-sm {
  display: block;
}

/* On large screens (≥1024px), switch visibility */
@media (min-width: 1024px) {
  .image-lg {
    display: block;
  }
  .image-sm {
    display: none;
  }
}

/* Optional: fit image properly */
.img-fit {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.img-fluid {
  width: 95%;
  height: auto;
  margin-left: 30px;
  /* margin-bottom: 50px; */
  margin-right: 30px;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

/* about us page */

.our-inspiration {
  margin-top: 100px;
  padding: 0% 5% 0% 5%;
}

.image-two-con {
  width: 100%;
  padding: 0% 15% 0% 15%;
}

.image-three-con {
  width: 100%;
  padding: 0% 15% 0% 15%;
}

.image-four-con {
  width: 100%;
  padding: 0% 15% 0% 15%;
}

.image-five-con {
  width: 100%;
  padding: 0% 15% 0% 15%;
}

.left-content {
  font-size: 27px;
  line-height: 1.5;
  color: #34429b;
  font-weight: 600;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  min-height: 100%;
}

.promise-section {
  margin-top: 2rem;
  padding: 0 17% 0 17%;
}

.first-image-con {
  /* margin-top: 2rem; */
  padding: 0% 10% 0 10%;
}

.promise-section-paragraph {
  width: 100%;
}

.key-moment-heading {
  /* font-family: PT Sans; */
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

.key-moment {
  /* font-family: PT Sans; */
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
}

.promise-para-one {
  /* font-family: PT Sans; */
  font-weight: 600;
  font-size: 26px;
  line-height: 150%;
  letter-spacing: 0%;

  color: #222222;
}

.promise-para-two {
  /* font-family: PT Sans; */
  line-height: 150%;
  letter-spacing: 0%;
  color: #222222;

  font-style: italic;
}

.pillar-of-learning-section-heading {
  /* font-family: PT Sans; */
  font-weight: 700;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #2e3192;
}

.right-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px 30px;
}

.right-content ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
}

.right-content li {
  margin-bottom: 0.4rem;
  list-style-type: disc;
}

.row {
  align-items: center;
}

/* .learning-gap-heading {
  
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #222222;
} */
.learning-gap-passage-one {
  /* font-family: PT Sans; */
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #2e3192;
}

.learning-gap-passage-two {
  /* font-family: PT Sans; */
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #2e3192;
}

.vision-section {
  padding: 0 20% 0 20%;
  margin-top: 2rem;
}

/* .vision-heading {

  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #2e3192;
  text-align: center;
} */
.vison-paragraph {
  /* font-family: PT Sans; */
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #222222;
  /* margin-top: 2rem; */
}

.vision-sub-heading-one {
  /* font-family: PT Sans; */
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #e15b00;
  margin-top: 2rem;
}

.vision-sub-paragraph-one {
  /* font-family: PT Sans; */
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #222222;
}

.list-heading {
  color: #2e3192;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

/* our team style */
.team-section {
  /* padding: 0 10% 0 10%; */
  margin: 40px 32px 40px 32px;
}

.team-heading {
  /* font-family: PT Sans; */
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: #2e3192;
  margin-bottom: 2rem;
}

.pillar-of-learning-section {
  padding: 0 10% 0 10%;

  margin-top: 2rem;
}

.bannerTone2 {
  margin-top: 2rem;
}

@media (min-width:350px) and (max-width: 767px) {

  .left-content,
  .right-content {
    text-align: center;
    padding: 20px 15px;
  }

  .right-content {
    padding-top: 0;
  }
}

.cta-section {
  background-image: url(../images/bluebanner.png);
  color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding: 46px 0px;
  margin-top: 40px;
}

.cta-section h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 24px;
}

.cta-section p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 40px;
}

.background-work {
  margin-top: 2rem;
  padding: 0% 20% 0 20%;
}

.background-work p {
  font-size: 16px;
}

.timeline-line {
  width: 2px;
  min-height: calc(100% + 3rem);
  /* Adjust this value based on your spacing */
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.orange-line {
  background-color: #f47920;
}

.blue-line {
  background-color: #34429b;
}

.timeline-connector {
  position: absolute;
  left: calc(50% + 0.25rem);
  /* Adjust based on your column width */
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #f47920;
  /* Orange color */
  z-index: 0;
}

/* Timeline dots */
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.orange-dot {
  background-color: #f47920;
  border: 2px solid white;
}

.blue-dot {
  background-color: #34429b;
  border: 2px solid white;
}

/* Text styles */
.orange-text {
  color: #f47920;
  font-weight: 700;
}

.blue-text {
  color: #34429b;
  font-weight: 700;
}

/* Adjust column positioning */
.position-relative {
  position: relative;
}

/* Ensure content doesn't overlap with timeline */
.row {
  position: relative;
  z-index: 1;
}

.highlight {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.footer-menu-con {
  display: flex;
  flex-direction: column;
  color: white;
}

.footer-menu-con a {
  color: white;
  text-decoration: none;
}

/* mobile view */
@media (min-width:350px) and (max-width: 767px) {
  .navbar {
    background-color: #ffffff !important;
    height: auto !important;
    padding: 0.75rem 1rem;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .navbar-brand .logo {
    height: 35px !important;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 1rem;
  }

  .navbar-nav .nav-item {
    margin: 4px 0;
  }

  .navbar-nav .btn-phonenumber,
  .navbar-nav .btn-primary {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 30px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }

  .navbar-nav .btn-phonenumber {
    color: black;
  }

  .navbar-nav .btn-primary {
    background-color: #fc8939;
    border: none;
  }

  .navbar-right {
    display: none !important;
  }
}

/* testminoal */
@media (min-width:350px) and (max-width: 767px) {
  .testimonial-box {
    height: 400px;
    width: 280px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonial-text {
    margin: 0px, 10px, 0 10px;
    /* height: 30px; */
    color: #000;
    font-size: 13px;
    line-height: 1.0;
    text-align: center;

  }

  .testimonial-person p {
    font-size: 16px;
    text-align: center;
    margin-top: 100px;
  }

  .testimonial-logo {
    max-width: 80px;
    height: auto;
    margin: 0 auto 10px auto;
    /* centers horizontally */
    display: block;
    /* required for margin auto to work */
  }

  /* impact card */
  .card {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

}

/* blogs */

