/* ===============================
   Hero Section
================================= */
/* html {
  overflow-x: hidden;
} */

.hero-section {
  padding: 70px 0;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#ffffff),
      to(#e8eef7));
  background: -o-linear-gradient(top, #ffffff 0%, #e8eef7 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #e8eef7 100%);
  text-align: center;
}

.logo-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  padding: 130px 0 48px;
}

.logo-img {
  max-height: 80px;
  width: auto;
}

.logo-divider {
  width: 1px;
  height: 60px;
  background-color: var(--color-text);
}

.heading-text {
  font-size: 86px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 140%;
  max-width: 960px;
  margin: 0 auto;
}

.sub-text {
  font-size: 20px;
  color: var(--color-body);
  font-weight: 400;
  margin: var(--space-xl) 0 var(--space-xxxl);
  line-height: 140%;
}

/* ===============================
   Floating Cards
================================= */
.card-img {
  max-width: 300px;
  margin-top: -60px;
  -webkit-animation: bounce 2s ease-in-out infinite;
  animation: bounce 2s ease-in-out infinite;
}

@-webkit-keyframes bounce {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes bounce {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

.contact-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 101px;
  height: 36px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.custom-btn:hover,
.contact-us:hover {
  background-color: var(--color-hover-bg);
  color: var(--color-hover-text);
}

/* ===============================
   About Section (Video)
================================= */
.about-section {
  overflow: hidden;
  margin-top: -60px;
  border-radius: var(--space-md);
  background-color: var(--color-bg);
  width: 100%;
  height: 80vh;
}

.about-video {
  position: relative;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#aboutVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1;
}

.play-icon {
  display: none;
}

#myVideoPlayer {
  display: none;
}

.about-section.about-response {
  display: none;
}

/* ===============================
   meating-section
================================= */
.meating-section {
  padding-top: 250px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#ffffff),
      to(#e8eef7));
  background: -o-linear-gradient(top, #ffffff 0%, #e8eef7 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #e8eef7 100%);
  padding-bottom: 127px;
}

.meating-section p {
  color: var(--color-body);
  font-size: 28px;
  font-weight: 400;
  margin: var(--space-xl) 0 var(--space-xxxl);
  max-width: 1198px;
  margin: 0 auto;
  margin-bottom: 48px;
  margin-top: 28px;
  line-height: 140%;
}

.meating-section .btn.btn-primary.custom-btn {
  font-size: 22px;
  width: 222px;
  height: 56px;
  margin-bottom: 26px !important;
}

/* ===============================
   achieve-section
================================= */
.achieve-section {
  background: #13263F;
  padding: 140px 0;
}

.achieve-section .achieve-sub {
  padding: 28px 0 108px;
}

.achieve-section h2 {
  font-size: 68px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 140%;
  text-align: center;
}

.achieve-section p {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
  margin: var(--space-xl) 0 var(--space-xxxl);
  line-height: 40px;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 108px;
  padding: 0;
  margin: 0;
}

/* Feature Box Styles */
.features-section-2 .feature-box {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(rgba(255, 255, 255, 0.08)),
      to(rgba(124, 124, 124, 0.08)));
  background: -o-linear-gradient(top,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(124, 124, 124, 0.08) 100%);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(124, 124, 124, 0.08) 100%);
  -webkit-backdrop-filter: blur(3.5px);
  backdrop-filter: blur(3.5px);
  padding: 36px;
  position: relative;
  border: 1px solid #101c37;
  margin-bottom: 20px;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  z-index: 0;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}

/* On hover: inner background and border effect */
.features-section-2 .feature-box:hover::before {
  position: absolute;
  content: "";
  z-index: -1;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  top: 2px;
  left: 2px;
  background: rgb(16, 17, 40);
  /* match main bg */
  border-radius: 18px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* Animated border lines (rotating) */
.features-section-2 .feature-box:hover::after {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(110, 102, 255, 0)),
      color-stop(50%, rgb(40, 176, 255)),
      to(rgba(255, 255, 255, 0)));
  background-image: -o-linear-gradient(left,
      rgba(110, 102, 255, 0) 0%,
      rgb(40, 176, 255) 50%,
      rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(90deg,
      rgba(110, 102, 255, 0) 0%,
      rgb(40, 176, 255) 50%,
      rgba(255, 255, 255, 0) 100%);
  -webkit-animation: rotate 5s linear infinite;
  animation: rotate 5s linear infinite;
  border-radius: 20px;
}

/* Keyframes for rotating border effect */
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.features-section-2 .feature-box span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--mainColor2);
  font-weight: 500;
}

.features-section-2 .feature-box .icon {
  height: 100px;
  width: 100px;
  background: #2a3746;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.04);
}

.features-section-2 .feature-box h3 {
  color: var(--color-white);
  opacity: 0.9;
  font-size: 36px;
  font-weight: 600;
  line-height: 140%;
  text-align: left;
  margin-bottom: 16px;
}

.features-section-2 .col-12.col-xl-4.mb-3 {
  padding: 10px;
}

.features-section-2 .feature-box p {
  color: var(--color-white);
  /* corrected: same as above */
  opacity: 0.7;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 0;
}

.features-section-2 .col-xl-4.col-lg-6.mb-4 {
  padding: 10px;
}

/* ===============================
   achieve-end
================================= */

/* ===============================
   Organization
================================= */
.organization {
  padding: 240px 0px;
}

.organization.space {
  padding: 130px 0;
}

.organization.focused.case-studies {
  padding-top: 136px;
}

.show-tab {
  display: none;
}

.organization .content h1 {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-heading);
  line-height: 140%;
}

.organization .content p {
  font-size: 24px;
  color: var(--color-text);
  margin-bottom: 48px;
  line-height: 140%;
  font-weight: 400;
}

.organization .content .cta-btn {
  border: 1px solid var(--color-primary);
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#ffffff),
      to(#e8eef7));
  background: -o-linear-gradient(top, #ffffff 0%, #e8eef7 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #e8eef7 100%);
  color: var(--color-heading);
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  text-decoration: none;
  -webkit-transition: background 0.5s ease, color 0.5s ease,
    border-color 0.5s ease;
  -o-transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
  line-height: 140%;
}

.cta-btn:hover {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#e8eef7),
      to(#ffffff));
  background: -o-linear-gradient(top, #e8eef7 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #e8eef7 0%, #ffffff 100%);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.organization .image img {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
}

.organization .business-image img {
  max-width: 503px;
  margin-left: 0;
}

.focused {
  background: radial-gradient(114.81% 114.81% at 50% 4.72%,
      #fff 35%,
      #e8eef7 100%),
    #fff;
}

.org-focused {
  background: radial-gradient(114.81% 114.81% at 50% 4.72%,
      #e8eef7 0%,
      #fff 65%);
}

.focused .image img {
  margin-left: 0;
}

.business h1 {
  max-width: 750px;
}

/* ===============================
   Organization end
================================= */

/* ===============================
   Our Other Competencies Start
================================= */
.competencies {
  background: radial-gradient(114.81% 114.81% at 50% 4.72%,
      #e8eef7 0%,
      #fff 65%),
    #fff;
  padding: 218px 0;
}

.competencies-bg {
  border-radius: 20px;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#94d5f7),
      to(#acb5fe));
  background: -o-linear-gradient(top, #94d5f7 0%, #acb5fe 100%);
  background: linear-gradient(180deg, #94d5f7 0%, #acb5fe 100%);
  padding: 67px 0px 67px 67px;
  box-shadow: 0px 0px 80px 8px #0b122014;
}

.competencies h2 {
  color: var(--color-white);
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: 92px;
  margin-bottom: 15px;
}

.competencies p {
  color: var(--color-white);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 1160px;
  width: 100%;
}

.competencies-bg {
  padding: 67px 0 67px 67px;
}

.competencies-logos img {
    display: block;
    max-width: 100%;
    height: 100%;
}

.competencies-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  padding-top: 68px;
}


/* ===============================
   Our Other Competencies End
================================= */

/* ===============================
   Section Our Certifications Start
================================= */

.certifications-section {
  position: relative;
  text-align: center;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#0d1b2a),
      to(#1b263b));
  background: -o-linear-gradient(top, #0d1b2a, #1b263b);
  background: linear-gradient(to bottom, #0d1b2a, #1b263b);
  padding: 166px 0 234px;
}

.certifications-heading {
  position: relative;
}

.certifications-section h2 {
  height: 92px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 68px;
  line-height: 92px;
  margin-bottom: 28px;
  color: var(--color-white);
}

.certifications-section p {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0;
  height: 80px;
  color: var(--color-white);
  max-width: 864px;
  margin: 0 auto 40px;
  opacity: 0.7;
}

.certifications-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 48px;
  padding-top: 70px;
  position: relative;
  opacity: 1;
  -webkit-animation: slideLeft 30s ease-in-out infinite;
  animation: slideLeft 30s ease-in-out infinite;
}

.scroller-wrapper {
  position: relative;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}

.certification-badge {
  position: relative;
  width: 280px;
  opacity: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 24px;
  border-width: 1px;
}

.scroller-wrapper::-webkit-scrollbar {
  display: none;
}

.certification-badge:nth-child(even) {
  padding-top: 40px;
}

.certification-badge img {
  width: 100%;
  height: auto;
  display: block;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
}

@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
}

/* ===============================
   Section Our Certifications End
================================= */

/* ===============================
   Section Case Studies Start
================================= */
.studies {
  margin-bottom: 140px;
}

.studies .card-content {
  background: var(--color-bg);
  padding: 76px 48px;
  border-radius: 24px;
}

.studies .logo-btn {
  cursor: pointer;
}

.studies .card-content {
  opacity: 0;
  /* transform: translateY(40px); */
  /* transition: opacity 0.5s ease, transform 0.5s ease; */
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.studies .card-content.active {
  opacity: 1;
  /* transform: translateY(0); */
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.studies h1 {
  color: var(--color-heading);
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: 92px;
  text-align: center;
  margin-bottom: 100px;
}

.studies h3 {
  color: var(--color-heading);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
}

.studies p {
  color: var(--color-heading);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  padding: 16px 0 48px;
}

.studies .img-fluid {
  height: 486px;
  border-radius: 22px;
  object-fit: cover;
}

.col-md-1.space-holder {
  width: 80px;
}

.studies-logo {
  max-width: 1310px;
  margin: 0 auto;
}

.studies .logo-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.studies .logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  transform: scale(0.95);
  flex: 1;
  max-width: 315px;
}

.studies .logo-item.active {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1);
}

.studies .logo-item:hover {
  opacity: 0.8;
  transform: scale(1.02);
  filter: grayscale(50%);
}

.studies .logo-item.active:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.studies .logo-item .logo-btn {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 30px;
}

.studies .individual-progress-bar {
  width: 100%;
  margin-top: 8px;
}

.studies .individual-progress-bar .progress {
  height: 3px;
  background-color: rgba(66, 66, 66, 0.2);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: none;
}

.studies .individual-progress-bar .progress-bar {
  background: linear-gradient(90deg, #4f6bed 0%, #6b7fff 100%);
  height: 100%;
  transition: none;
  /* Remove transition to allow JavaScript animation */
  border-radius: 2px;
  width: 0%;
  /* Start at 0% */
}

.case-studies-mobile {
  display: none;
}
.btn-primary img, .send-request img, .btn-secondary img, .btn-primary-color img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* ===============================
   Section Case Studies End
================================= */

/* media-css */

@media (max-width: 1600px) {
  .competencies-logos {
    gap: 28px;
  }
}

/* @media (min-width: 1024px) and (max-width: 1440px) {
  .competencies-logos img {
    max-width: 31.5%;
  }

  .competencies-bg {
    overflow: hidden;
    padding: 67px 67px 67px 67px;
  }

} */

@media (max-width: 1490px) {
  .business-image {
    padding-right: 147px;
  }
}

@media (max-width: 1200px) {

  /* index-css */
  .organization .image img {
    margin: 30px auto 0;
  }

  .align-items-center {
    gap: 120px;
  }
}

/* ========= Styles for screens smaller than 1080px ========= */
@media (max-width: 1080px) {
  .competencies-logos {
    gap: 28px;
    margin-top: 0;
    width: 100%;
    display: flex;
  }

  /* ----------------------------------------
   Home Page Responsive Media Queries
---------------------------------------- */

  .competencies-logos img {
    max-width: 100%;
  }

  .align-items-center {
    gap: 0px;
  }

  .business-image {
    padding-right: 0;
  }

  .competencies-logos {
    flex-wrap: wrap !important;
  }

  section.about-section.container.video-full,
  .contact-us {
    display: none;
  }

  .organization .content.business h1 {
    margin-bottom: 108px;
  }

  /* Heading text styling */
  .heading-text {
    font-size: 58px;
    max-width: 760px;
    line-height: 140%;
  }

  /* Meeting section paragraph */
  .meating-section p {
    font-size: 24px;
  }

  /* Hide card images */
  .card-img {
    display: none;
  }

  /* Center alignment for contact response */
  .contact-response {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  /* Achieve section heading */
  .achieve-section h2 {
    font-size: 58px;
    line-height: 80px;
  }

  .features-section-2 .feature-box {
    padding: 40px;
  }

  /* Features section styles */
  .features-section-2 .feature-box h3 {
    font-size: 32px;
    line-height: 52px;
    margin-bottom: 12px;
  }

  .features-section-2 .feature-box p {
    font-size: 20px;
  }

  .features-section-2 .feature-box .icon {
    width: 84px;
    height: 84px;
    margin-bottom: 36px;
  }

  .features-section-2 .feature-box .icon img {
    width: 45px;
    height: 45px;
  }

  /* Organization section text */
  .organization .content h1 {
    font-size: 58px !important;
    margin-top: 120px;
    max-width: 100%;
  }

  .organization .content p {
    font-size: 24px;
  }

  .organization .image img {
    margin: 0 auto;
    max-width: 100%;
  }

  /* Fix typo: padding: 120x → 120px */
  .organization.space {
    padding: 120px 0px;
  }

  .send-request {
    margin-left: 0;
  }

  .contact-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 28px;
  }

  .contact-flex a {
    margin: 0 !important;
    width: 100%;
  }

  .about-response {
    height: auto;
    margin-top: -20px;
    width: 90%;
    margin: -30px auto;
  }

  .about-response .about-video {
    height: auto;
  }

  .about-response .video-wrapper {
    height: auto;
  }

  .meating-section {
    padding: 140px 0 60px;
  }

  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    display: block;
  }

  #myVideoPlayer {
    display: block;
  }

  .about-section.about-response {
    display: block;
    margin: 0 auto;
    position: relative;
    bottom: 40px;
    box-shadow: 0px 10.25px 29.83px 0px rgba(11, 18, 32, 0.12);
  }

  .competencies h2 {
    font-size: 58px;
    line-height: 74px;
    margin-bottom: 15px;
  }

  .competencies p {
    font-size: 24px;
  }

  .competencies-bg {
    padding: 48px;
  }

  .competencies-logos {
    gap: 28px;
    margin-top: 0;
  }

  .competencies-logos img {
    max-width: 100%;
    width: 100%;
  }

  .achieve-section {
    padding: 120px 0;
  }

  /* .organization .business-image {
    margin-bottom: 120px;
  } */

  .achieve-section p {
    margin-bottom: 80px;
  }

  .achieve-section .achieve-sub {
    padding: 28px 0 0px;
  }

  .competencies {
    padding: 120px 60px;
  }

  .none,
  .hide-tab {
    display: none;
  }

  .show-tab {
    display: block;
  }

  .certifications-section {
    padding: 120px 0 140px;
  }

  .certifications-section h2 {
    font-size: 58px;
  }

  .col-md-1.space-holder {
    width: 70px;
    height: 42px;
  }

  .studies .logo-btn {
    width: 117px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
  }

  .studies {
    margin-bottom: 120px;
  }

  .studies h1 {
    margin-bottom: 80px;
  }

  .certifications-section p {
    margin: 0 auto 0px;
  }

  .certifications-grid {
    margin-top: 80px;
    padding-top: 0;
  }

  .hero-section .position-relative {
    padding-bottom: 134px;
  }

  .organization.focused.case-studies {
    padding-top: 120px;
  }

  .studies .img-fluid {
    height: 390px;
  }

  .organization {
    padding: 80px 0;
  }

  .org-focused .row {
    padding: 0 60px;
  }

  .transform .align-items-center {
    gap: 0;
    /* or maybe something smaller like 20px */
  }
}

@media (max-width: 700px) {

  /* ----------------------------------------
   Home Page Responsive Media Queries
---------------------------------------- */
  /* Logo sizing and spacing */
  .logo-img {
    max-height: 75px;
    width: 120px;
  }

  /* Heading text responsive scale */
  .heading-text {
    font-size: 44px;
    max-width: 560px;
    margin-top: 0px;
    line-height: 140%;
  }

  /* Meeting section text and padding */
  .meating-section p {
    font-size: 20px;
  }

  .meating-section {
    padding: 62px 0 80px;
  }

  /* Hide additional content */
  .content-wrapper {
    display: none;
  }

  /* Achieve section padding */
  .achieve-section {
    padding: 80px 0;
  }

  /* Hide card images */
  .card-img {
    display: none;
  }

  /* Center contact responses */
  .contact-response {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  /* Achieve section heading and text */
  .achieve-section h2 {
    font-size: 36px;
    line-height: normal;
  }

  .achieve-section p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 60px;
  }

  /* Features section heading and paragraph */
  .features-section-2 .feature-box h3 {
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 8px;
  }

  .features-section-2 .feature-box p {
    font-size: 16px;
    margin-top: 8px;
  }

  .features-section-2 .feature-box .icon {
    width: 84px;
    height: 84px;
    margin-bottom: 28px;
  }

  .features-section-2 .feature-box .icon img {
    width: 45px;
    height: 45px;
  }

  /* Organization section text */
  .organization .content h1 {
    font-size: 36px;
    margin-top: 60px;
  }

  .organization .content p {
    font-size: 20px;
  }

  .organization.org-focused .content p {
    margin-bottom: 0px;
  }

  /* CTA Button sizing */
  .cta-btn {
    font-size: 12px;
    line-height: 140%;
  }

  /* Organization section spacing */
  .organization.space {
    padding: 80px 0px;
  }

  .competencies h2 {
    font-size: 36px;
    line-height: normal;
  }

  .competencies p {
    font-size: 20px;
    margin-top: 15px;
  }

  .competencies-bg {
    padding: 20px;
  }

  .competencies {
    padding: 80px 16px;
  }

  .organization .business-image img {
    max-width: 100%;
  }

  .org-focused .row {
    gap: 48px;
    padding: 0 16px;
  }

  .certification-badge {
    width: 120px;
    padding: 10px;
  }

  .certifications-section h2 {
    font-size: 1.7em;
    margin-bottom: 0;
  }

  .certifications-grid {
    gap: 25px;
  }

  .certifications-section {
    padding: 49px 0 98px;
  }

  .certifications-section p {
    font-size: 20px;
    padding: 0 16px;
    line-height: 30px;
  }

  .case-studies-title {
    font-size: 54px;
    line-height: 65px;
    max-width: 350px;
  }

  .case-studies-title {
    font-size: 42px;
    line-height: 50px;
    height: auto;
    max-width: 300px;
  }

  .logo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .logo-item {
    padding: 10px 15px;
    width: 100%;
    max-width: 200px;
  }

  .logo-item img {
    height: 35px;
  }

  .certification-badge {
    width: 120px;
    padding: 10px;
  }

  .certifications-section h2 {
    font-size: 1.7em;
    margin-bottom: 0;
    font-size: 36px;
  }

  .certifications-grid {
    gap: 25px;
  }

  .certifications-section {
    height: 669px;
  }

  .certifications-section p {
    font-size: 20px;
    padding: 0 16px;
    line-height: 30px;
  }

  .certification-badge {
    width: 140px;
  }

  .certifications-grid {
    gap: 25px;
  }

  .case-studies-title {
    font-size: 36px;
    line-height: 43px;
    max-width: 250px;
  }

  .certifications-grid {
    margin-top: 77px;
  }

  .features-section-2 .feature-box .icon {
    width: 60px;
    height: 60px;
  }

  .features-section-2 .feature-box .icon img {
    width: 36px;
    height: 36px;
  }

  .features-section-2 .feature-box h3 {
    margin-bottom: 8px;
  }

  .features-section-2 .feature-box {
    padding: 20px;
  }

  .hero-section .position-relative {
    padding-bottom: 41px;
  }

  .logo-row {
    padding: 60px 0 32px;
  }

  .sub-text {
    margin: 20px 0 48px;
  }

  .hero-section {
    padding-bottom: 58px;
  }

  .logo-wrapper.position-relative.studies-logo {
    display: none;
  }

  .studies .card-content {
    display: none;
  }

  .studies h1 {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .organization.focused.case-studies {
    padding-top: 80px;
  }

  .studies {
    margin-bottom: 48px;
  }

  .case-studies-mobile {
    display: block;
  }

  .mobile-case-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px 16px;
    background: rgba(232, 238, 247, 1);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 12px auto;
    max-width: 100%;
    text-align: center;
  }

  .case-studies-mobile {
    display: block;
    padding: 20px 10px;
    background: #f9f9f9;
  }

  .mobile-swiper {
    width: 100%;
    max-width: 380px;
    /* Slightly smaller to match the image */
    margin: 0 auto;
    padding: 0 0px;
    /* More padding for the peek effect */
  }

  .mobile-swiper .swiper-slide {
    background: radial-gradient(114.81% 114.81% at 50% 4.72%,
        #e8eef7 0%,
        #fff 65%);
    border-radius: 8px;
    overflow: hidden;
  }

  .mobile-case-card {
    box-sizing: border-box;
    padding: 20px 16px;
    background: rgba(232, 238, 247, 1);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 12px auto;
    text-align: center;
    max-width: 100%;
  }

  .company-logo {
    width: 100px;
    margin-bottom: 16px;
  }

  .mobile-case-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #242424;
  }

  .mobile-case-card p {
    font-size: 16px;
    color: #424242;
    margin-bottom: 40px;
  }

  .mobile-cta-btn {
    display: flex;
    padding: 10px 18px;
    background-color: #4f6bed;
    color: #fff;
    border-radius: 35.29px;
    text-decoration: none;
    font-weight: 600;
    width: 177px;
  }

  .mobile-card-heading {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    max-width: 280px;
    text-align: left;
  }

  .paragraph-font {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    vertical-align: middle;
    text-align: left;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .organization .content .cta-btn {
    font-size: 12px;
    line-height: 140%;
    margin-bottom: 0;
  }

  .transform {
    margin-top: 60px;
  }

  .custom-btn {
    width: 174px;
    font-size: 18px;
    height: 44px;
    padding: 0;
  }

  .meating-section .btn.btn-primary.custom-btn {
    font-size: 18px;
    width: 174px;
    margin-bottom: 0 !important;
  }

  .mobile-cta-btn {
    width: 194px;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .organization .content.business h1 {
    margin-bottom: 48px;
  }
  .case-studies-mobile .mobile-cta-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-top: 8px !important;
}
}

/* ----------------------------------------
   Home Page Responsive End Media Queries
---------------------------------------- */

@media (min-width: 1025px) and (max-width: 1280px) {
 .heading-text {
    font-size: 68px !important;
 }
 .sub-text {
    font-size: 18px;
}
.features-section-2 .feature-box h3 {
    font-size: 28px;
}
.competencies p {
      padding-right: 67px;
}
.studies p {
    font-size: 24px !important;
}
}

