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

body {
  font-size: clamp(14px, 1.8vw, 16px);
  font-family: "General Sans", sans-serif;
  font-weight: 400;
  background-color: #0c0c10;
  color: #ffffff;
  overflow-x: hidden;
}

.layout {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* Global Container Sizing */
.container {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------
   STIKY HEADER SECTION
---------------------------------------------------- */
.latestHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.latestHeader.scrolled {
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.latestHeader .inner_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
  width: 100%;
}

.latestHeader .inner_part .wrap_menu_btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
  width: calc(100% - 200px);
  height: 100%;
}

/* Logo parent-scoped styling */
.latestHeader .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.latestHeader .logo .color_logo {
  display: none;
  width: auto;
}

.latestHeader .logo .white_logo {
  display: block;
  width: auto;
}

.latestHeader .logo:hover {
  transform: scale(1.02);
}

.latestHeader .logo-icon {
  display: block;
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
  /* Point top-right to match the image exactly */
}

.latestHeader .logo-text {
  color: #ffffff;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* Navigation parent-scoped styling */
.latestHeader .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(60% - 20px);
  flex-shrink: 0;
  height: 100%;
}

.latestHeader .nav-menu .right-actions {
  display: none;
}

.latestHeader .nav-item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.latestHeader .nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 500;
  letter-spacing: 0.8px;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

.latestHeader .nav-link:hover {
  color: #5519c2;
}

.latestHeader .arrow-plus img {
  transition:
    transform 0.25s ease,
    color 0.25s ease;
  width: 14px;
  margin-top: 5px;
}

.latestHeader .arrow-plus img:nth-child(1) {
  display: inline-block;
}

.latestHeader .arrow-plus img:nth-child(2) {
  display: none;
}

.latestHeader .nav-link:hover .arrow-plus {
  color: #905cf7;
}

/* Right CTA Button parent-scoped styling */
.latestHeader .right-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.latestHeader .contact-btn {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 14px 28px;
  border-radius: 30px;
  background:
    linear-gradient(#5519c2, #5519c2) padding-box,
    linear-gradient(
        180deg,
        rgba(119, 5, 180, 0.3) 0%,
        rgba(169, 59, 228, 0.3) 100%
      )
      border-box;
  border: 1px solid transparent;
  box-shadow:
    0px 42px 107px 0px #6b46c157,
    0px 1px 4px -1px #ffffff inset,
    0px 1px 18px -1px #8f68ea inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.latestHeader .contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.latestHeader .contact-btn:hover {
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.latestHeader .contact-btn:hover::before {
  left: 100%;
}

/* Hamburger button hidden by default */
.latestHeader .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.latestHeader .hamburger .bar {
  width: 100%;
  height: calc(2px);
  background-color: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

/* ----------------------------------------------------
   HERO BANNER SECTION
---------------------------------------------------- */
.heroBannerNew {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      180deg,
      rgba(12, 12, 16, 0.4) 0%,
      rgba(12, 12, 16, 0.8) 100%
    ),
    url("../images/landing_bg.webp") no-repeat center center / cover;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Subtle glow behind the banner title */
.heroBannerNew::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.heroBannerNew .container {
  position: relative;
  z-index: 2;
}

.heroBannerNew .inner_part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: calc(100vh - 200px);
}

/* Main Text Box */
.heroBannerNew .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 100px;
}

.heroBannerNew .title {
  font-size: clamp(34px, 5.8vw, 66px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 1200px;
  margin-bottom: 20px;
  text-transform: none;
}

.heroBannerNew .subtitle {
  font-size: clamp(14px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Bottom Split Layout */
.heroBannerNew .hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

/* Left Column Sizing & CTAs */
.heroBannerNew .bottom-left {
  width: calc(52% - 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heroBannerNew .desc-text {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 400px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: unset;
  width: max-content;
}

.cta-group.mobile-only {
  display: none !important;
}

.cta-group .cta-btn {
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 500;
  letter-spacing: 0.8px;
  height: 48px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background:
    linear-gradient(#5519c2, #5519c2) padding-box,
    linear-gradient(
        180deg,
        rgba(119, 5, 180, 0.3) 0%,
        rgba(169, 59, 228, 0.3) 100%
      )
      border-box;
  border: 1px solid transparent;
  box-shadow:
    0px 20px 40px 0px #6b46c12c,
    0px 1px 4px -1px #ffffff inset,
    0px 1px 18px -1px #8f68ea inset;
  position: relative;
  overflow: hidden;
}

.cta-group .cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-group:hover .cta-btn {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.cta-group .cta-btn:hover::before {
  left: 100%;
}

.cta-group .arrow-btn {
  text-decoration: none;
  color: #ffffff;
  min-width: 48px;
  height: 48px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background:
    linear-gradient(#5519c2, #5519c2) padding-box,
    linear-gradient(
        180deg,
        rgba(119, 5, 180, 0.3) 0%,
        rgba(169, 59, 228, 0.3) 100%
      )
      border-box;
  border: 1px solid transparent;
  box-shadow:
    0px 42px 107px 0px #6b46c157,
    0px 1px 4px -1px #ffffff inset,
    0px 1px 18px -1px #8f68ea inset;
}

.cta-group:hover .arrow-btn {
  transform: translateY(-2px) rotate(45deg);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.cta-group .arrow-btn img{
  width: 21px;
  height: 21px;
}

/* Right Column: Statistics Sizing */
.heroBannerNew .bottom-right {
  width: calc(44% - 20px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 48px;
}

.heroBannerNew .stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s ease;
}

.heroBannerNew .stat-box:hover {
  transform: translateY(-4px);
}

.heroBannerNew .stat-num {
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}

.heroBannerNew .stat-label {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
  text-transform: none;
  white-space: nowrap;
}

/* ----------------------------------------------------
   SERVICES ECOSYSTEM SECTION
---------------------------------------------------- */
.servicesEcosystem {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.servicesEcosystem .container {
  position: relative;
  z-index: 2;
}

.servicesEcosystem .section-header {
  text-align: center;
  margin-bottom: 56px;
  width: 100%;
}

.servicesEcosystem .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.servicesEcosystem .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #0c0c10;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.servicesEcosystem .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.servicesEcosystem .content-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 40px;
}

/* Sidebar Column */
.servicesEcosystem .sidebar {
  width: calc(38% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.servicesEcosystem .tab-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border-top: 1px solid #e2e8f0;
}

.servicesEcosystem .service-tab {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  outline: none;
}

.servicesEcosystem .service-tab:hover {
  background: rgba(139, 92, 246, 0.02);
  padding-left: 24px;
}

.servicesEcosystem .service-tab.active {
  background: #f1eff9;
  border-bottom: 1.5px solid #8b5cf6;
}

.servicesEcosystem .tab-num {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600;
  color: #0c0c10;
  margin-right: 18px;
  width: 24px;
  display: inline-block;
}

.servicesEcosystem .tab-name {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600;
  color: #0c0c10;
  transition: color 0.3s ease;
}

.servicesEcosystem .view-all-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.servicesEcosystem .view-all-btn {
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: 0.8px;
  height: 48px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.servicesEcosystem .view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.servicesEcosystem .view-all-arrow {
  text-decoration: none;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.servicesEcosystem .view-all-arrow:hover {
  transform: translateY(-2px) rotate(45deg);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

/* Details Panel & Card Column */
.servicesEcosystem .details-panel {
  width: calc(62% - 20px);
  display: grid;
  grid-template-columns: 100%;
  align-items: start;
  flex-shrink: 0;
  background-color: #f1eff9;
  padding: 32px;
  border-radius: 24px;
}

.servicesEcosystem .service-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 48px;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 440px;
  box-shadow:
    2px 14px 32px 0px #cfbde51a,
    8px 58px 59px 0px #cfbde517,
    18px 130px 79px 0px #cfbde50d,
    32px 232px 94px 0px #cfbde503,
    51px 362px 102px 0px #cfbde500;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(15px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.servicesEcosystem .service-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.servicesEcosystem .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.servicesEcosystem .card-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #0c0c10;
}

.servicesEcosystem .card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  color: #0c0c10;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.servicesEcosystem .card-arrow img {
  width: 22px;
  height: 22px;  
}

.servicesEcosystem .card-arrow:hover {
  background: #8b5cf6;
  color: #ffffff;
  border-color: #8b5cf6;
  transform: rotate(45deg);
}
.servicesEcosystem .card-arrow:hover img {
  filter: invert(1) brightness(100);
}

.servicesEcosystem .card-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 90%;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.servicesEcosystem .card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 85%;
  position: relative;
  z-index: 2;
  width: 100%;
}

.servicesEcosystem .pill {
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 500;
  color: #0c0c10;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #0c0c10;
  background: #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
}

.servicesEcosystem .pill:hover {
  border-color: #8b5cf6;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.02);
  transform: translateY(-1px);
}

.servicesEcosystem .card-graphic {
  position: absolute;
  bottom: 20px;
  right: 60px;
  z-index: 1;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.servicesEcosystem .service-card:hover .card-graphic {
  transform: translateY(-5px);
}

.services-slider-controls,
.industries-slider-controls {
  display: none;
}

/* ----------------------------------------------------
   THE REALITY GAP SECTION
---------------------------------------------------- */
.realityGap {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.realityGap .container {
  position: relative;
  z-index: 2;
}

.realityGap .section-header {
  text-align: center;
  margin-bottom: 56px;
  width: 100%;
}

.realityGap .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.realityGap .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #0c0c10;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.realityGap .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.realityGap .content-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 40px;
}

/* Base Card Styling */
.realityGap .card {
  width: calc(50% - 20px);
  border-radius: 24px;
  padding: 18px;
  background: #f8f9fa;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.realityGap .card .card-fix-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.realityGap .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.realityGap .card-label {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #64748b;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.realityGap .card-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: #0c0c10;
  margin-bottom: 32px;
  line-height: 1.25;
}

/* Card Lists */
.realityGap .card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin-bottom: 32px;
  width: 100%;
}

.realityGap .list-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.realityGap .item-text {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #0c0c10;
}

/* Circular Icons */
.realityGap .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.realityGap .icon-circle img {
  width: 100%;
  height: 100%;
  
}


/* Right Card: RipenApps Solution (Highlight / Glow) */
.realityGap .card-fix {
  background: #ffffff;
  /* border: 2px solid transparent; */
  /* background: repeating-conic-gradient(#F4F4F4 0 0.0001%, #5519c2 0 0.0002%); */
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
  padding: 18px;
  background: linear-gradient(225.42deg, #f4f4f4 29.94%, #5519c2 98.98%);
}

.realityGap .card-fix:hover {
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.18);
}

.realityGap .card-fix .card-label {
  color: #8b5cf6;
}


/* Right Card Call to Actions */
.realityGap .card-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.realityGap .cta-link {
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: 0.8px;
  height: 48px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.realityGap .cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.realityGap .cta-arrow {
  text-decoration: none;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.realityGap .cta-arrow:hover {
  transform: translateY(-2px) rotate(45deg);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

/* ----------------------------------------------------
   OUR PROCESS SECTION
---------------------------------------------------- */
.ourProcess {
  /* position: relative; */
  width: 100%;
  background-color: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
  /* overflow: hidden; */
}

.ourProcess .container {
  position: relative;
  z-index: 2;
}

.ourProcess .section-header {
  text-align: center;
  margin-bottom: 64px;
  width: 100%;
}

.ourProcess .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ourProcess .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #0c0c10;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ourProcess .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ourProcess .content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 50px;
}

/* Timeline Container */
.ourProcess .timeline-container {
  position: relative;
  width: calc(45% - 25px);
  height: 480px;
  /* Fixed height matching the illustration panel */
  overflow-y: scroll;
  scroll-behavior: auto !important;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ourProcess .timeline-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

@media (min-width: 991px) {
  .ourProcess {
    height: 250vh;
    overflow: visible !important;
    position: relative;
  }

  .ourProcess .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
  }

  .ourProcess .sticky-row {
    position: sticky;
    top: 220px;
    height: calc(100vh - 260px);
    z-index: 999;
    box-sizing: border-box;
  }

  .ourProcess .timeline-container {
    overflow-y: hidden !important;
  }
}

.ourProcess .timeline-step {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
  padding-bottom: 48px;
  opacity: 0.35;
}

.ourProcess .timeline-step.active {
  opacity: 1;
}

/* Timeline Node Sidebar */
.ourProcess .step-sidebar {
  width: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 20px;
  margin-right: 32px;
  position: relative;
  align-self: stretch;
  /* spans the full height of the step */
  flex-shrink: 0;
}

.ourProcess .step-sidebar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #cbd5e1;
  transition: background-color 0.3s ease;
}

.ourProcess .step-num {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.ourProcess .timeline-step.active .step-num {
  color: #0c0c10;
}

.ourProcess .timeline-step.active .step-sidebar::after {
  background-color: #8b5cf6;
}

.ourProcess .timeline-step:last-child .step-sidebar::after {
  bottom: auto;
  height: 100%;
}

/* Timeline Body */
.ourProcess .step-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(100% - 92px);
}

.ourProcess .step-icon {
  color: #94a3b8;
  transition: color 0.3s ease;
  display: inline-flex;
}

.ourProcess .timeline-step.active .step-icon {
  color: #0c0c10;
}

.ourProcess .process-icon {
  width: 54px;
  height: 54px;
}

.ourProcess .step-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.ourProcess .timeline-step.active .step-title {
  color: #0c0c10;
}

.ourProcess .step-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #666072;
  line-height: 1.6;
  max-width: 440px;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* Illustration Showcase Panel */
.ourProcess .illustration-panel {
  width: calc(55% - 25px);
  height: 480px;
  /* Match the timeline container height */
  flex-shrink: 0;
}

.ourProcess .process-showcase {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.ourProcess .process-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.04);
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
  will-change: opacity, transform, filter;
}

.ourProcess .process-img.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
  pointer-events: auto;
  z-index: 2;
}

/* ----------------------------------------------------
   FEATURED CASE STUDIES SECTION
---------------------------------------------------- */
.featuredCaseStudies {
  position: relative;
  width: 100%;
  background-color: #0c0126;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}

.featuredCaseStudies .container {
  position: relative;
  z-index: 2;
}

.featuredCaseStudies .section-header {
  text-align: center;
  margin-bottom: 56px;
  width: 100%;
}

.featuredCaseStudies .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #ffffffc7;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.featuredCaseStudies .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.featuredCaseStudies .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #ffffffc7;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Case Study Primary Card */

.featuredCaseStudies .case_study_card_wrapper {
  background-color: #ffffff;
  padding: 30px 30px;
  border-radius: 32px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 100%;
  align-items: stretch;
}

.featuredCaseStudies .case-study-card {
  display: flex;
  /* justify-content: space-between; */
  align-items: stretch;
  background: #f5f5f7;
  border-radius: 32px;
  padding: 0px 0px 0px 40px;
  border: none;
  width: 100%;
  min-height: 480px;
  position: relative;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.featuredCaseStudies .case-study-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Card Content (Left) */
.featuredCaseStudies .card-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}

.featuredCaseStudies .card-content.slide-out {
  opacity: 0;
  transform: translateX(-20px);
}

.featuredCaseStudies .case-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #0c0c10;
  margin-bottom: 18px;
  line-height: 1.2;
}

.featuredCaseStudies .case-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Technical pills */
.featuredCaseStudies .case-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.featuredCaseStudies .pill {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #000000;
  background: #ffffff;
  transition: all 0.25s ease;
}

.featuredCaseStudies .pill:hover {
  border-color: #0c0c10;
  color: #0c0c10;
}

/* Card Mockup Media (Right) */
.featuredCaseStudies .card-media {
  width: 50%;
}

.featuredCaseStudies .card-media.slide-out {
  opacity: 0;
  transform: translateX(20px);
}

.featuredCaseStudies .laptop-img {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  display: block;
}

/* Logos Slider Selector */
.featuredCaseStudies .logos-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0px;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
}

.featuredCaseStudies .logos-carousel::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

.featuredCaseStudies .logo-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 32px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  flex-shrink: 0;
  text-align: center;
}

.featuredCaseStudies .logo-tab:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.featuredCaseStudies .logo-tab.active {
  background: #5519c2;
  border-color: transparent;
}

.featuredCaseStudies .brand-text {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.featuredCaseStudies .brand-text sup {
  font-size: clamp(9px, 1.2vw, 10px);
  margin-left: 2px;
}

/* Bottom Progress Timeline Tracker */
.featuredCaseStudies .progress-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}

.featuredCaseStudies .progress-segments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featuredCaseStudies .segment {
  display: block;
  height: 4px;
  width: 24px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition:
    width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease;
  cursor: pointer;
}

.featuredCaseStudies .segment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #7730f7;
  border-radius: 3px;
}

.featuredCaseStudies .segment.active {
  width: 80px;
  background-color: rgba(255, 255, 255, 0.15);
}

.featuredCaseStudies .segment.active::after {
  background-color: #7730f7;
  width: 100%;
}

/* @keyframes fillProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
} */

/* ----------------------------------------------------
   TOP INTERNATIONAL BRANDS SECTION
---------------------------------------------------- */
.topBrands {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(90px);
  padding-bottom: calc(90px);
  overflow: hidden;
}

.topBrands .container {
  position: relative;
  z-index: 2;
}

.topBrands .section-header {
  text-align: center;
  margin-bottom: calc(64px);
  width: 100%;
}

.topBrands .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.topBrands .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: calc(16px);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.topBrands .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Marquee Infinite Scrolling Setup */
.topBrands .marquee-group {
  display: flex;
  flex-direction: column;
  gap: calc(44px);
  width: 100%;
  margin-top: calc(20px);
  overflow: hidden;
}

.topBrands .marquee-row {
  width: 100%;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 15%,
    #000 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 15%,
    #000 85%,
    transparent 100%
  );
}

.topBrands .marquee-track {
  display: flex;
  align-items: center;
  gap: calc(90px);
  width: max-content;
}

/* Row 1 scrolls to the Left */
.topBrands .row-left .marquee-track {
  animation: scrollLeft 40s linear infinite;
}

/* Row 2 scrolls to the Right */
.topBrands .row-right .marquee-track {
  animation: scrollRight 40s linear infinite;
}

/* Marquee Scrolling Keyframes */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

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

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Individual Brand Logos Styling (Typography-Based Logo Marks) */
.topBrands .brand-item {
  font-size: clamp(20px, 3vw, 26px);
  color: #0f172a;
  flex-shrink: 0;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  max-width: 160px;
  width: 100%;
}
.topBrands .brand-item img {
  width: 100%;
}

.topBrands .brand-item.brand-seeq {
  max-width: 100px;
}

.topBrands .brand-item:hover {
  color: #8b5cf6;
  transform: scale(1.05);
}

/* ----------------------------------------------------
   TESTIMONIALS SLIDER SECTION
---------------------------------------------------- */
.testimonialsSection {
  position: relative;
  width: 100%;
  background-color: #f8fafc;
  padding-top: calc(120px);
  padding-bottom: calc(120px);
  overflow: hidden;
}

.testimonialsSection .container {
  position: relative;
  z-index: 2;
}

.testimonialsSection .slider-row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

/* Navigation buttons (Prev/Next) */
.testimonialsSection .nav-col {
  width: calc(12%);
  flex-shrink: 0;
}

.testimonialsSection .nav-col-prev {
  text-align: left;
}

.testimonialsSection .nav-col-next {
  text-align: right;
}

.testimonialsSection .nav-btn {
  background: transparent;
  border: none;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: calc(8px);
  padding: calc(12px) 0;
  outline: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  font-family: "General Sans", sans-serif;
}

.testimonialsSection .nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.testimonialsSection .nav-btn:hover {
  color: #0f172a;
}

.testimonialsSection .btn-prev:hover .btn-arrow {
  transform: translateX(-4px);
}

.testimonialsSection .btn-next:hover .btn-arrow {
  transform: translateX(4px);
}

.testimonialsSection .btn-arrow {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Central Testimonial Content Block */
.testimonialsSection .testimonial-wrapper {
  width: calc(76%);
  padding-left: calc(40px);
  padding-right: calc(40px);
  display: grid;
  grid-template-columns: 100%;
}

.testimonialsSection .testimonial-card {
  grid-area: 1 / 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.5s;
  transform: translateY(12px);
}

.testimonialsSection .testimonial-card .wrap_link_author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.testimonialsSection .testimonial-card .wrap_link_author a.wrap-link {
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.testimonialsSection .testimonial-card .wrap_link_author a.wrap-link:hover {
  text-decoration: underline;
  color: #5519c2;
}

.testimonialsSection .testimonial-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.testimonialsSection .testimonials-tag {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  margin-bottom: calc(24px);
  text-transform: uppercase;
}

.testimonialsSection .quote-container {
  width: 100%;
  margin-bottom: calc(36px);
}

.testimonialsSection .quote-text {
  font-size: clamp(22px, 3.2vw, 26px);
  font-weight: 500;
  color: #0c0126;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-family: "General Sans", sans-serif;
  letter-spacing: -0.5px;
}

/* Author Profile Block */
.testimonialsSection .author-block {
  display: flex;
  align-items: center;
  gap: calc(16px);
}

.testimonialsSection .author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.testimonialsSection .author-info {
  display: flex;
  flex-direction: column;
  gap: calc(3px);
}

.testimonialsSection .author-name {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  color: #0f172a;
  font-style: normal;
}

.testimonialsSection .author-role {
  font-size: clamp(12px, 1.8vw, 14px);
  color: #475569;
  font-weight: 500;
}

/* ----------------------------------------------------
   AWARDS CAROUSEL SECTION
---------------------------------------------------- */
.awardsSection {
  position: relative;
  width: 100%;
  background-color: #0c0126;
  padding-top: calc(100px);
  padding-bottom: calc(100px);
  overflow: hidden;
}

.awardsSection .container {
  position: relative;
  z-index: 2;
}

.awardsSection .section-header {
  text-align: center;
  margin-bottom: calc(56px);
  width: 100%;
}

.awardsSection .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #ffffffc7;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.awardsSection .title-with-laurels {
  display: flex;
  /* align-items: baseline; */
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  margin-bottom: calc(16px);
}

.awardsSection .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -1px;
}

.awardsSection .laurel-wreath {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.awardsSection .laurel-wreath img {
  width: 50px;
  height: auto;
  display: block;
}

.awardsSection .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(20px);
}

/* Awards Grid Layout */
.awardsSection .awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}

/* Individual Card Styling */
.awardsSection .award-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: calc(25px) calc(16px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  /* min-height: calc(320px); */
  box-sizing: border-box;
}

.awardsSection .award-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.awardsSection .badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 160px; */
  margin-bottom: calc(24px);
  transition: transform 0.3s ease;
}
.awardsSection .badge-container img {
  max-width: 60%;
  width: 100%;
}

.awardsSection .award-card:hover .badge-container {
  transform: scale(1.04);
}

.awardsSection .award-title {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.awardsSection .award-card:hover .award-title {
  color: #ffffff;
}

/* ----------------------------------------------------
   INDUSTRIES WE SERVE SECTION
---------------------------------------------------- */
.industriesServe {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(90px);
  padding-bottom: calc(90px);
  overflow: hidden;
}

.industriesServe .container {
  position: relative;
  z-index: 2;
}

.industriesServe .section-header {
  text-align: center;
  margin-bottom: calc(44px);
  width: 100%;
}

.industriesServe .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(12px);
  text-transform: uppercase;
}

.industriesServe .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin-bottom: calc(16px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -1px;
}

.industriesServe .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Horizontal Tabs Bar */
.industriesServe .tabs-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: calc(48px);
  overflow-x: auto;
  padding-bottom: calc(10px);
  gap: calc(12px);
}

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

.industriesServe .tabs-bar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}

.industriesServe .tabs-bar::-webkit-scrollbar-thumb {
  background: rgba(96, 37, 230, 0.15);
  border-radius: 2px;
}

.industriesServe .tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(14px) calc(28px);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  color: #0c0126;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
  flex-shrink: 0;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) ease;
  text-transform: uppercase;
}

.industriesServe .tab-btn:hover {
  background:
    linear-gradient(#5519c2, #5519c2) padding-box,
    linear-gradient(
        180deg,
        rgba(119, 5, 180, 0.3) 0%,
        rgba(169, 59, 228, 0.3) 100%
      )
      border-box;
  border: 1px solid transparent;
  color: #ffffff;
  box-shadow:
    0px 1px 4px 0px #ffffff inset,
    0px 1px 18px 0px #8f68ea inset;
}

.industriesServe .tab-btn.active {
  background:
    linear-gradient(#5519c2, #5519c2) padding-box,
    linear-gradient(
        180deg,
        rgba(119, 5, 180, 0.3) 0%,
        rgba(169, 59, 228, 0.3) 100%
      )
      border-box;
  border: 1px solid transparent;
  color: #ffffff;
  box-shadow:
    0px 1px 4px 0px #ffffff inset,
    0px 1px 18px 0px #8f68ea inset;
}

/* Details Row Layout */
.industriesServe .content-row {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  align-items: stretch;
}

.industriesServe .industry-panel {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: calc(50px);
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.industriesServe .industry-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Media panel (Left Column) */
.industriesServe .panel-media {
  width: calc(45% - 25px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.industriesServe .phone-showcase {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border: 1.5px solid rgba(139, 92, 246, 0.05);
  min-height: calc(460px);
  display: flex;
  align-items: stretch;
  background-color: #121214;
}

.industriesServe .phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.industriesServe .phone-img.fade-out {
  opacity: 0;
  transform: scale(0.98);
}

/* Bottom Text Overlay */
.industriesServe .phone-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(18, 18, 20, 0.95) 0%,
    rgba(18, 18, 20, 0.8) 70%,
    transparent 100%
  );
  padding: calc(32px) calc(28px) calc(28px);
  z-index: 5;
  text-align: left;
}

.industriesServe .overlay-text {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.industriesServe .overlay-text.fade-out {
  opacity: 0;
}

/* Details Panel (Right Column) */
.industriesServe .panel-details {
  width: calc(55% - 25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.industriesServe .panel-details.slide-out {
  opacity: 0;
  transform: translateY(15px);
}

.industriesServe .panel-heading {
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin-bottom: calc(36px);
  letter-spacing: -0.5px;
}

/* Challenges vs Solutions grid */
.industriesServe .lists-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  margin-bottom: calc(40px);
  position: relative;
  padding-top: 24px;
}

.industriesServe .lists-flex::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
}

.industriesServe .details-list-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: calc(16px);
  box-sizing: border-box;
  padding-top: 20px;
}

.industriesServe .details-list-col:first-child {
  border-right: 1px solid #e5e7eb;
  padding-right: calc(32px);
}

.industriesServe .details-list-col:last-child {
  padding-left: calc(32px);
}

.industriesServe .list-title {
  position: absolute;
  top: 0;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: #0c0126;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.industriesServe .details-list-col:first-child .list-title {
  left: 0;
}

.industriesServe .details-list-col:last-child .list-title {
  left: calc(50% + 32px);
}

.industriesServe .details-list {
  display: flex;
  flex-direction: column;
  gap: calc(10px);
  list-style: none;
}

.industriesServe .list-item {
  display: flex;
  align-items: flex-start;
  gap: calc(12px);
}

/* Asterisks icons */
.industriesServe .orange-asterisk {
  margin-top: calc(3px);
}

.industriesServe .item-text {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #0c0126;
  line-height: 1.45;
}

/* Call to action */
.industriesServe .panel-cta {
  display: flex;
  align-items: center;
  gap: calc(12px);
  margin-top: auto;
}

.industriesServe .viewall-btn {
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: calc(14px) calc(36px);
  border-radius: 50px;
  background: linear-gradient(135deg, #6a35db, #4c1d95);
  box-shadow: 0 4px 15px rgba(96, 37, 230, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
}

.industriesServe .viewall-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 37, 230, 0.4);
  filter: brightness(1.1);
}

/* ----------------------------------------------------
   TECHNOLOGY ECOSYSTEM SECTION
---------------------------------------------------- */
.techEcosystem {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(90px);
  padding-bottom: calc(90px);
  overflow: hidden;
}

.techEcosystem .container {
  position: relative;
  z-index: 2;
}

.techEcosystem .section-header {
  text-align: center;
  margin-bottom: calc(56px);
  width: 100%;
}

.techEcosystem .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.techEcosystem .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin-bottom: calc(16px);
  letter-spacing: -1px;
}

.techEcosystem .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Row Layout */
.techEcosystem .content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: calc(50px);
}

/* Left Sidebar Panel */
.techEcosystem .panel-sidebar {
  width: calc(25% - 25px);
  display: flex;
  flex-direction: column;
  border-right: none;
  padding-right: 0;
}

.techEcosystem .ecosystem-tab {
  width: 100%;
  text-align: left;
  padding: calc(18px) calc(24px);
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
  color: #0c0126;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

.techEcosystem .ecosystem-tab:hover {
  background-color: #5519c20f;
}

.techEcosystem .ecosystem-tab.active {
  background-color: #5519c20f;
  border-bottom-color: #5519c2;
  font-weight: 500;
}

/* Right Showcase Panel */
.techEcosystem .panel-showcase {
  width: calc(75% - 25px);
  background-color: #5519c20f;
  border-radius: 32px;
  padding: calc(24px);
  display: block;
}

.techEcosystem .tech-panel {
  display: none;
  width: 100%;
  background-color: #ffffff;
  border-radius: 24px;
  padding: calc(48px) calc(44px);
  box-shadow: 0 4px 20px rgba(96, 37, 230, 0.04);
}

.techEcosystem .tech-panel.active {
  display: flex;
  flex-direction: column;
  animation: serviceFadeIn 0.4s ease forwards;
}

.techEcosystem .showcase-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #0c0c1e;
  margin-bottom: calc(32px);
  letter-spacing: -0.5px;
}

/* Technology Cards Grid */
.techEcosystem .tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px);
  width: 100%;
}

.techEcosystem .tech-card {
  width: calc(20% - 13px);
  min-width: 130px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.techEcosystem .tech-card:hover {
  border-color: #6a35db;
  box-shadow: 0 8px 24px rgba(96, 37, 230, 0.08);
}

.techEcosystem .tech-card .tech-logo {
  height: 50px !important;
  width: 50px !important;
  display: block;
  margin-bottom: 15px;
}

.techEcosystem .tech-logo svg,
.techEcosystem .tech-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.techEcosystem .tech-name {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #0c0c1e;
  text-align: center;
}

/* ----------------------------------------------------
   AI TRANSFORMATION SECTION
---------------------------------------------------- */
.aiTransformation {
  position: relative;
  width: 100%;
  background-color: #0c0126;
  padding-top: calc(100px);
  padding-bottom: calc(100px);
  overflow: hidden;
}

.aiTransformation .container {
  position: relative;
  z-index: 2;
}

.aiTransformation .section-header {
  text-align: center;
  margin-bottom: calc(56px);
  width: 100%;
}

.aiTransformation .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #ffffffc7;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.aiTransformation .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: calc(16px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -1px;
}

.aiTransformation .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #ffffffc7;
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards Row */
.aiTransformation .cards-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 0;
  position: relative;
  margin-top: calc(56px);
}

/* AI Card */
.aiTransformation .ai-card {
  width: 25%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #2d2149;
  border-bottom: none;
  padding: calc(36px) calc(28px) calc(56px);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.aiTransformation .ai-card:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.aiTransformation .card-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #6a35db30;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(28px);
  position: relative;
}

.aiTransformation .card-icon-container::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
}

.aiTransformation .card-icon-container img {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
}

.aiTransformation .card-title {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: calc(16px);
  line-height: 1.35;
}

.aiTransformation .card-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #ffffffc7;
  line-height: 1.6;
  margin-bottom: auto;
}

/* Pulsing timeline dots animation (always animated) */
@keyframes pulseSonar {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(139, 92, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

.aiTransformation .timeline-dot-wrap {
  position: absolute;
  bottom: -6.5px;
  right: 0;
  transform: translateX(50%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aiTransformation .pulse-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8b5cf6;
  border: 3px solid #ffffff;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

.aiTransformation .pulse-dot::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.6);
  animation: pulseSonar 2s infinite;
}

/* Continuous Horizontal Timeline Line */
.aiTransformation .horizontal-timeline-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #6a35db;
  z-index: 0;
}

/* ----------------------------------------------------
   ENGAGEMENT MODELS SECTION
---------------------------------------------------- */
.engagementModels {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(90px);
  padding-bottom: calc(90px);
  overflow: hidden;
}

.engagementModels .container {
  position: relative;
  z-index: 2;
}

.engagementModels .section-header {
  text-align: center;
  margin-bottom: calc(56px);
  width: 100%;
}

.engagementModels .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.engagementModels .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin-bottom: calc(16px);
  letter-spacing: -1px;
}

.engagementModels .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards Row */
.engagementModels .cards-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: calc(24px);
  position: relative;
  margin-top: calc(48px);
  /* align-items: center; */
}

/* Card base styling */
.engagementModels .engagement-card {
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 380px;
  /* Fixed height to prevent vertical page layout jerks */
}

/* Collapsed/Inactive state */
.engagementModels .engagement-card:not(.active) {
  width: calc(25% - 16px);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: calc(20px) calc(20px);
  color: #0c0c1e;
}

/* Expanded/Active state */
.engagementModels .engagement-card.active {
  width: calc(50% - 16px);
  background: #6a35db;
  border: 1px solid #6a35db;
  padding: calc(30px) calc(30px);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(96, 37, 230, 0.25);
}

.engagementModels .card-inner {
  display: flex;
  /* gap: calc(36px); */
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
}

.engagementModels .left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  height: 100%;
  border-right: 1.5px solid rgba(255, 255, 255, 0);
  padding-right: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.engagementModels .engagement-card:not(.active) .left-col {
  width: 100%;
  align-items: center;
  text-align: center;
  border-right-color: rgba(255, 255, 255, 0);
  padding-right: 0;
  justify-content: center;
}

.engagementModels .engagement-card.active .left-col {
  width: calc(48% - 0px);
  border-right-color: rgba(255, 255, 255, 0.15);
  padding-right: calc(36px);
}

/* Right column Details list */
.engagementModels .right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically centered */
  align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.engagementModels .engagement-card:not(.active) .right-col {
  width: 0;
  opacity: 0;
  transform: translateX(20px);
  overflow: hidden;
  pointer-events: none;
}

.engagementModels .engagement-card.active .right-col {
  width: calc(48% - 0px);
  opacity: 1;
  transform: translateX(0);
  text-align: left;
}

/* Icon box */
.engagementModels .card-icon-container {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: calc(28px);
  flex-shrink: 0;
}

.engagementModels .card-icon-container img {
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .engagementModels .engagement-card:not(.active) .card-icon-container {
    background: transparent;
    color: #0c0c1e;
    border: 1.5px solid #0c0c1e;
} */

.engagementModels .engagement-card.active .card-icon-container img {
  filter: invert(1) brightness(100);
}

/* Titles and Descs */
.engagementModels .card-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  margin-bottom: calc(16px);
  line-height: 1.25;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.engagementModels .engagement-card:not(.active) .card-title {
  color: #0c0c1e;
}

.engagementModels .engagement-card.active .card-title {
  color: #ffffff;
}

.engagementModels .card-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.55;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
}

.engagementModels .engagement-card:not(.active) .card-desc {
  color: #475569;
}

.engagementModels .engagement-card.active .card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.engagementModels .engagement-card.active .ideal-title {
  display: block;
}

/* Ideal checklist styles */
.engagementModels .ideal-title {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: calc(18px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: calc(8px);
  display: none;
}

.engagementModels .ideal-list {
  /* list-style: none; */
  display: flex;
  flex-direction: column;
  gap: calc(6px);
  margin-bottom: 10px;
}

.engagementModels .ideal-list li {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-left: 0;
}

/* ----------------------------------------------------
   INSIGHTS HUB SECTION
---------------------------------------------------- */
.insightsHub {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(100px);
  padding-bottom: calc(100px);
  overflow: hidden;
}

.insightsHub .container {
  position: relative;
  z-index: 2;
}

/* Header layout spaced between */
.insightsHub .insights-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: calc(56px);
}

.insightsHub .insights-title-block {
  text-align: left;
}

.insightsHub .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.insightsHub .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -1px;
}

/* View all blogs button */
.insightsHub .view-all-blogs-btn {
  display: inline-flex;
  align-items: center;
  gap: calc(10px);
  padding: calc(14px) calc(28px);
  border: 1.5px solid #6a35db;
  border-radius: 50px;
  color: #6a35db;
  text-decoration: none;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.insightsHub .view-all-blogs-btn:hover {
  background: #6a35db;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(96, 37, 230, 0.2);
}

.insightsHub .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 22px;
  height: 22px;
}
.insightsHub .btn-arrow img {
 width: 100%;
 height: 100%;
}

.insightsHub .view-all-blogs-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}
.insightsHub .view-all-blogs-btn:hover img {
  filter: invert(1) brightness(100);
}

.insights-slider-wrapper {
  position: relative;
  width: 100%;
}

.insights-arrow {
  display: none;
}

.insights-slider-dots {
  display: none;
}

/* 3 Column Cards Row */
.insightsHub .cards-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: calc(24px);
  position: relative;
}

/* Blog Card */
.insightsHub .blog-card {
  width: calc(33.333% - 16px);
  background: #f8fafc;
  border: none;
  border-radius: 24px;
  padding: calc(16px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.insightsHub .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.insightsHub .blog-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  background: #f1f5f9;
}

.insightsHub .blog-img-wrap img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.5s ease;
  aspect-ratio: 735 / 400;
}

.insightsHub .blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

/* Card details info box */
.insightsHub .blog-info {
  padding: calc(20px) calc(8px) calc(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  text-align: left;
}

/* .insightsHub .blog-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: #0c0c1e;
    margin-bottom: calc(12px);
    line-height: 1.35;
    letter-spacing: -0.5px;
} */
.insightsHub .blog-title a {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: #0c0c1e;
  margin-bottom: calc(12px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.insightsHub .blog-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #666072;
  line-height: 1.6;
  margin-bottom: calc(20px);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Meta Footer in card */
.insightsHub .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  padding-top: 0;
  margin-top: auto;
}

.insightsHub .meta-category {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: #0c0c1e;
  display: inline-flex;
  align-items: center;
  gap: calc(6px);
}

.insightsHub .meta-bullet {
  color: #6a35db;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1;
}

.insightsHub .meta-date {
  font-size: clamp(12px, 1.8vw, 14px);
  color: #475569;
  font-weight: 500;
}

/* ----------------------------------------------------
   ENTERPRISE COMPLIANCE SECTION
---------------------------------------------------- */
.complianceSection {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(90px);
  padding-bottom: calc(90px);
  overflow: hidden;
}

.complianceSection .container {
  position: relative;
  z-index: 2;
}

.complianceSection .section-header {
  text-align: center;
  margin-bottom: calc(56px);
  width: 100%;
}

.complianceSection .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.complianceSection .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin-bottom: calc(16px);
  letter-spacing: -1px;
}

.complianceSection .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Rounded Showcase Container */
.complianceSection .showcase-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 32px;
  padding: calc(56px) calc(48px);
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  position: relative;
  margin-top: calc(48px);
}

/* Tabs Grid layout (Double columns) */
.complianceSection .tabs-grid {
  width: calc(52% - 20px);
  display: flex;
  gap: calc(16px);
}

.complianceSection .tabs-col {
  display: flex;
  flex-direction: column;
  gap: calc(16px);
}

.complianceSection .tabs-col:nth-child(1) {
  width: calc(50% - 8px);
}

.complianceSection .tabs-col:nth-child(2) {
  width: calc(50% - 8px);
}

/* Compliance Tab button */
.complianceSection .compliance-tab {
  display: block;
  width: 100%;
  text-align: center;
  padding: calc(14px) calc(20px);
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none;
  font-weight: 500;
}

.complianceSection .compliance-tab:hover {
  border-color: #5519c2;
  background: #5519c2;
  color: #fff;
}

.complianceSection .compliance-tab.active {
  background: #6a35db;
  border-color: #6a35db;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(96, 37, 230, 0.2);
}

/* Vertical Divider Line */
.complianceSection .divider-line {
  width: 1.5px;
  background-color: #e2e8f0;
  margin-left: calc(20px);
  margin-right: calc(20px);
}

/* Right Details Panel */
.complianceSection .details-panel {
  width: calc(48% - 20px);
  display: block;
}

.complianceSection .compliance-detail-panel {
  display: none;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.complianceSection .compliance-detail-panel.active {
  display: flex;
  animation: serviceFadeIn 0.4s ease forwards;
}

.complianceSection .details-heading {
  font-size: clamp(22px, 3vw, 24px);
  font-weight: 600;
  color: #0c0c1e;
  margin-bottom: calc(16px);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.complianceSection .details-desc {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #475569;
  line-height: 1.65;
  margin-bottom: calc(28px);
}

/* Badges flex wrap */
.complianceSection .badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12px);
  width: 100%;
}

.complianceSection .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: calc(8px);
  padding: calc(12px) calc(24px);
  border-radius: 50px;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(85, 25, 194, 0.1) 100%
  );
  border: 1px solid;
  /* border-image-source: linear-gradient(180deg, rgba(204, 176, 255, 0.5) 0%, rgba(85, 25, 194, 0.5) 100%); */
  backdrop-filter: blur(4px);
  box-shadow:
    0px 0px 1px 2px #c897ff66 inset,
    0px 11.39px 22.34px 0px #8235b917;
}

.complianceSection .badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.complianceSection .badge-check img {
  width: 100%;
  height: 100%;
}

.complianceSection .badge-name {
  color: #242731;
  font-weight: 500;
}

/* ----------------------------------------------------
   FAQ SECTION
---------------------------------------------------- */
.faqSection {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(100px);
  padding-bottom: calc(100px);
  overflow: hidden;
}

.faqSection .container {
  position: relative;
  z-index: 2;
}

.faqSection .section-header {
  text-align: center;
  margin-bottom: calc(56px);
  width: 100%;
}

.faqSection .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.faqSection .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin-bottom: calc(16px);
  letter-spacing: -1px;
}

.faqSection .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Row */
.faqSection .content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: calc(50px);
  margin-top: calc(48px);
}

/* Left Accordion Column */
.faqSection .faq-accordion {
  width: calc(70% - 25px);
  height: 590px;
  overflow-y: auto;
  padding-right: 15px;
  scrollbar-color: #7730f7 rgba(0, 0, 0, 0.05);
  /* Firefox */
  scrollbar-width: thin;
  /* Firefox */
}

.faqSection .faq-accordion::-webkit-scrollbar {
  width: 6px;
}

.faqSection .faq-accordion::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}

.faqSection .faq-accordion::-webkit-scrollbar-thumb {
  background: #7730f7;
  border-radius: 10px;
}

.faqSection .faq-accordion::-webkit-scrollbar-thumb:hover {
  background: #5519c2;
}

/* Accordion Item */
.faqSection .accordion-item {
  width: 100%;
  background: #f8f9fd;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.faqSection .accordion-item.active {
  border-color: #e2e8f0;
  background: #f8fafc;
}

/* Item Header Button */
.faqSection .item-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: calc(20px) calc(24px);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: calc(16px);
  outline: none;
}

.faqSection .toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #0c0c1e;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faqSection .accordion-item.active .toggle-icon {
  transform: rotate(0deg);
  background: #ffffff;
  color: #0c0c1e;
  box-shadow: 0px 4px 8px 0px #0000000d;
}

.faqSection .question-text {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  font-family: "General Sans", sans-serif;
  color: #0c0126;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

/* Item Body */
.faqSection .item-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 calc(24px) 0 calc(68px);
}

.faqSection .accordion-item.active .item-body {
  max-height: 300px;
  opacity: 1;
  padding-bottom: calc(24px);
}

.faqSection .answer-text {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Right Contact Card */
.faqSection .faq-contact-card {
  width: calc(30% - 25px);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.faqSection .contact-image-wrap {
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: calc(28px);
  background: #e2e8f0;
}

.faqSection .contact-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faqSection .contact-card-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: #0c0c1e;
  margin-bottom: calc(14px);
  letter-spacing: -0.5px;
}

.faqSection .faq-contact-card p {
  color: #000000;
  margin-bottom: 24px;
}

/* ----------------------------------------------------
   REUSABLE UTILITIES (PILL + ARROW BUTTON GROUP)
---------------------------------------------------- */
.btn-pill-arrow-container .cta-group .cta-btn {
  max-width: 220px;
  width: 100%;
}

/* ----------------------------------------------------
   OFFICE ADDRESSES & MAIN FOOTER SECTION
---------------------------------------------------- */
.officeAddressesSection {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(80px);
  padding-bottom: calc(40px);
}

.officeAddressesSection .footer-offices {
  width: 100%;
}

.officeAddressesSection .offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(24px);
  width: 100%;
}

.officeAddressesSection .office-card {
  background: #6a35db05;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: calc(24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(16px);
  transition: all 0.3s ease;
}

.officeAddressesSection .office-card:hover {
  border-color: #6a35db;
  box-shadow: 0 8px 24px rgba(96, 37, 230, 0.05);
}

.officeAddressesSection .office-info {
  display: flex;
  flex-direction: column;
  gap: calc(8px);
  text-align: left;
}

.officeAddressesSection .office-country {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.officeAddressesSection .office-address {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #000000;
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
}

.officeAddressesSection .office-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.officeAddressesSection .office-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainFooter {
  position: relative;
  width: 100%;
  /* background-color: #06060c; */
  overflow: hidden;
  padding-top: calc(80px);
  background-image: url("../images/footer_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Cost Estimate CTA Banner */
.mainFooter .footer-cost-cta {
  border-radius: 40px;
  text-align: center;
  color: #ffffff;
  margin-bottom: calc(80px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.mainFooter .cost-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(24px);
  max-width: 800px;
  z-index: 2;
}

.mainFooter .cost-cta-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.mainFooter .cost-cta-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #ffffffc7;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Purple Footer Box grid */
.mainFooter .footer-purple-box {
  background-color: #6a35db;
  border-radius: 32px;
  padding: calc(64px) calc(48px) calc(56px);
  color: #ffffff;
  max-width: 99%;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 5px;
}

/* Bottom Footer Links Grid */
.mainFooter .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  /* Distribute column space dynamically */
  align-items: flex-start;
  width: 100%;
  gap: calc(30px);
}

.mainFooter .footer-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}



/* Col 1 Brand details */
.mainFooter .footer-logo {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: calc(20px);
  letter-spacing: -0.5px;
}

.mainFooter .logo-bold {
  color: #ffffff;
}

.mainFooter .logo-light {
  color: #8b5cf6;
  font-weight: 400;
}

.mainFooter .brand-pitch {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: calc(24px);
}

.mainFooter .social-links {
  display: flex;
  gap: calc(12px);
}

.mainFooter .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #6a35db;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.mainFooter .social-icon:hover {
  transform: translateY(-3px);
  background: #4c1d95;
  color: #ffffff;
  /* filter: invert(1) brightness(100); */
}

.mainFooter .social-icon:hover img {
  filter: invert(1) brightness(100);
}

.mainFooter .wrap-dmc-iso {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.mainFooter .wrap-dmc-iso figure {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
}

.mainFooter .wrap-dmc-iso img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: all 0.3s ease;
}

.mainFooter .wrap-dmc-iso img:hover {
  filter: none;
  opacity: 1;
  filter: grayscale(1) opacity(0.9);
}

.mainFooter .footer-col-title {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 10px;
  margin-bottom: 25px;
}

.mainFooter .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(14px);
  padding: 0;
  margin: 0;
}

.mainFooter .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  transition: color 0.3s ease;
  text-align: left;
  display: block;
}

.mainFooter .footer-links a:hover {
  color: #ffffff;
  font-weight: 500;
}

.mainFooter .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(24px);
  padding: 0;
  margin: 0;
}

.mainFooter .contact-item {
  display: flex;
  gap: calc(14px);
  align-items: flex-start;
  text-align: left;
}

.mainFooter .contact-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  color: #6a35db;
  flex-shrink: 0;
}

.mainFooter .contact-info-text {
  display: flex;
  flex-direction: column;
  gap: calc(4px);
}

.mainFooter .contact-label {
  font-size: clamp(9px, 1.2vw, 10px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.mainFooter .contact-link {
  color: #ffffff;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
  word-break: break-all;
}

.mainFooter .contact-link:hover {
  opacity: 0.8;
}

/* Footer Bottom copyright bar */
.mainFooter .footer-bottom-bar {
  background-color: #6a35db;
  padding: calc(24px) calc(48px);
  color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 10;
  border-radius: 16px;
  max-width: 99%;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.mainFooter .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mainFooter .copyright-text {
  font-size: clamp(12px, 1.8vw, 14px);
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}

.mainFooter .copyright-text strong {
  color: #ffffff;
  font-weight: 600;
}

.mainFooter .footer-bottom-links {
  display: flex;
  gap: calc(16px);
  align-items: center;
}

.mainFooter .footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(12px, 1.8vw, 14px);
  transition: color 0.3s;
  font-weight: 400;
}

.mainFooter .footer-bottom-links a:hover {
  color: #ffffff;
}

.mainFooter .bar-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: clamp(10px, 1.5vw, 12px);
}

/* Drawer Close Button */
.latestHeader .drawer-close {
  display: none;
}



/* ----------------------------------------------------
   HEADER MEGA MENU DROP-DOWN
---------------------------------------------------- */
/* Style the parent wrapper to act as position relative on hover */
.latestHeader:not(.mobile-view) .nav-item-wrapper {
  position: relative;
}

/* Slide down trigger transition indicator */
.latestHeader:not(.mobile-view)
  .nav-item-wrapper:hover
  .arrow-plus
  img:nth-child(1) {
  display: none;
}

.latestHeader:not(.mobile-view)
  .nav-item-wrapper:hover
  .arrow-plus
  img:nth-child(2) {
  display: inline-block;
}

/* Change header style when any mega menu or navigation item is hovered */
.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) {
  background: #ffffff !important;
  border-bottom: 1px solid #eef2f6 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) .logo .white_logo {
  display: none !important;
}

.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) .logo .color_logo {
  display: block !important;
}

.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) .logo-text {
  color: #0c0c10 !important;
}

.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) .nav-link {
  color: #475569 !important;
}

.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) .nav-link:hover {
  color: #8b5cf6 !important;
}

.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) .arrow-plus {
  color: #94a3b8 !important;
}

.latestHeader:not(.mobile-view):has(.nav-item-wrapper:hover) .arrow-plus img {
  filter: brightness(0) opacity(0.6);
}

.latestHeader:not(.mobile-view) .nav-item-wrapper:hover .arrow-plus img {
  filter: invert(44%) sepia(91%) saturate(3029%) hue-rotate(241deg)
    brightness(99%) contrast(98%) !important;
}

/* Set nav-item-wrapper and inner_part to static on desktop to allow edge-to-edge mega menu */
@media (min-width: 1024px) {
  .latestHeader:not(.mobile-view) .inner_part {
    position: static;
  }

  .latestHeader:not(.mobile-view) .nav-item-wrapper {
    position: static;
    height: 100%;
  }

  .latestHeader:not(.mobile-view) .nav-item-wrapper:has(.simple-dropdown) {
    position: relative;
  }
}

/* Initial hidden state of mega menu with slide-down offset */
.latestHeader:not(.mobile-view) .mega-menu {
  position: absolute;
  top: 90px;
  /* Align with bottom of header */
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

/* Trigger Mega Menu on Nav Link Hover */
.latestHeader:not(.mobile-view) .nav-item-wrapper:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Force Mega Menu to hide immediately when a link is clicked */
.latestHeader:not(.mobile-view) .nav-item-wrapper.menu-clicked .mega-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-10px) !important;
}

/* Mega menu internal flex layout division */
.latestHeader .mega-container {
  display: flex;
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
}

/* Left Sidebar Categories */
.latestHeader .mega-sidebar {
  width: 33%;
  border-right: 1px solid #e5e7eb;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background-color: #f1eff9;
}

.latestHeader .mega-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px 12px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all 0.25s ease;
  color: #9ea1a7;
  outline: none;
  text-decoration: none;
}

.latestHeader .mega-tab .tab-label-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.latestHeader .mega-tab span {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.latestHeader .mega-tab .mega-tab-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(85, 25, 194, 0.08);
  color: #5519c2;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.latestHeader .mega-tab:hover .mega-tab-icon-box,
.latestHeader .mega-tab.active .mega-tab-icon-box {
  background: #5519c2;
  color: #ffffff;
}

.latestHeader .mega-tab .mega-tab-icon-box img {
  width: 18px;
}
.latestHeader .mega-tab:hover .mega-tab-icon-box img,
.latestHeader .mega-tab.active .mega-tab-icon-box img {
  filter: invert(1) brightness(100);
  
}

.latestHeader .mega-tab .chevron-icon {
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  color: #9ea1a7;
}

.latestHeader .mega-tab:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.02);
}

.latestHeader .mega-tab.active {
  color: #0c0c10;
  background: #ffffff;
  position: relative;
  margin-right: -1.5px;
  border-right: 1.5px solid #ffffff;
  /* Cover the sidebar border */
  z-index: 2;
}

.latestHeader .mega-tab:hover .chevron-icon,
.latestHeader .mega-tab.active .chevron-icon {
  opacity: 1;
  transform: translateX(4px);
  color: #000000;
}

.latestHeader a.mega-tab:hover .chevron-icon {
  transform: translate(3px, -3px);
}

.latestHeader a.mega-tab .chevron-icon {
  width: 15px;
  height: 15px;
}

/* Middle Service Links Columns */
.latestHeader .mega-content-wrapper {
  width: 33%;
  display: flex;
  padding: 40px;
  flex-shrink: 0;
  background: #ffffff;
  border-right: 1.5px solid #eef2f6;
}

.latestHeader .mega-content-panel {
  display: none;
  width: 100%;
}

.latestHeader .mega-content-panel.active {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

.latestHeader .mega-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.latestHeader .panel-header-title {
  font-size: 14px;
  font-weight: 500;
  color: #5519c2;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-bottom: 1.5px solid #f1f5f9;
  margin-bottom: 12px;
}

.latestHeader .panel-bottom-strip {
  margin-top: 24px;
  background: #f0f7ff;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: #1e293b;
  line-height: 1.4;
  border-left: 3px solid #5519c2;
}

.latestHeader .panel-bottom-strip strong {
  color: #5519c2;
  font-weight: 600;
}

.latestHeader .panel-bottom-strip .bottom-strip-link {
  display: block;
  width: 100%;
  margin-top: 10px;
  background-color: #5519c2;
  border-radius: 12px;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.latestHeader .mega-link {
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.latestHeader .mega-link::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #5519c2;
  flex-shrink: 0;
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.latestHeader .mega-link:hover {
  color: #5519c2;
  transform: translateX(4px);
}

.latestHeader .mega-link:hover::before {
  transform: scale(1.3);
}

/* Right Showcase Panel */
.latestHeader .mega-featured {
  width: 33%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #0c0c10;
}

.latestHeader .featured-navy-card {
  background-color: #06152b;
  border-radius: 12px;
  padding: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.latestHeader .navy-tagline {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.latestHeader .navy-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.latestHeader .navy-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0 0 20px 0;
}

.latestHeader .navy-stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: auto;
  padding-bottom: 20px;
}

.latestHeader .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.latestHeader .stat-val {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.latestHeader .stat-lbl {
  font-size: 9px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.latestHeader .navy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #5519c2;
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.latestHeader .navy-btn:hover {
  background-color: #5519c2;
  transform: translateY(-1px);
}

.latestHeader .navy-btn svg {
  transition: transform 0.25s ease;
}

.latestHeader .navy-btn:hover svg {
  transform: translateX(3px);
}

/* Gradient Card for Clients */
.latestHeader .mega-featured .clients-card {
  /* background: linear-gradient(135deg, #8B5CF6 0%, #2563EB 100%); */
  background:
    linear-gradient(rgb(85, 25, 194), rgb(85, 25, 194)) padding-box padding-box,
    linear-gradient(rgba(119, 5, 180, 0.3) 0%, rgba(169, 59, 228, 0.3) 100%)
      border-box border-box;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
  display: flex;
  flex-direction: column;
}

.latestHeader .mega-featured .clients-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.2px;
}

.latestHeader .mega-featured .clients-card-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 8px 0 14px 0;
}

.latestHeader .mega-featured .clients-list {
  display: flex;
  gap: 12px;
}

.latestHeader .mega-featured .client-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.latestHeader .mega-featured .client-item:hover {
  transform: translateX(4px);
  opacity: 0.9;
}

.latestHeader .mega-featured .client-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  flex-shrink: 0;
}

.latestHeader .mega-featured .client-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

/* ----------------------------------------------------
   INDUSTRIES CUSTOM MEGA MENU
   (Desktop and Mobile Responsive Styles)
---------------------------------------------------- */

/* Desktop view default hidden state of industries menu with slide-down offset */
.latestHeader:not(.mobile-view) .industries-mega-menu {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: #ffffff;
  /* White background same as Services menu */
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 0;
}

/* Hover trigger for Industries Mega Menu */
.latestHeader:not(.mobile-view) .nav-item-wrapper:hover .industries-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Force industries menu to hide immediately when a link is clicked */
.latestHeader:not(.mobile-view)
  .nav-item-wrapper.menu-clicked
  .industries-mega-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-10px) !important;
}

/* Container inside the dropdown */
.latestHeader .industries-mega-container {
  display: flex;
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 0;
  align-items: stretch;
  gap: 36px;
}

/* Right Columns wrapper */
.latestHeader .industries-columns-right {
  width: 100%;
  display: flex;
  gap: 28px;
}

/* Standard industries 5-column grid */
.latestHeader .industries-standard-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  flex-grow: 1;
}

/* Links & icons inside columns */
.latestHeader .ind-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.latestHeader .ind-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0c0c10;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  width: fit-content;
}

.latestHeader .ind-link:hover {
  color: #5519c2;
  transform: translateX(4px);
}

.latestHeader .ind-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(85, 25, 194, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5519c2;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.latestHeader .ind-icon-box img {
  width: 18px;
}

.latestHeader .ind-link:hover .ind-icon-box {
  background: #5519c2;
  color: #ffffff;
}
.latestHeader .ind-link:hover img {
  filter: invert(1) brightness(100);
}

/* ----------------------------------------------------
   SIMPLE LIST DROPDOWN
   (Desktop and Mobile Responsive Styles for Insights & Company)
---------------------------------------------------- */

/* Desktop view default hidden state of simple dropdown menu with slide-down offset */
.latestHeader:not(.mobile-view) .simple-dropdown {
  position: absolute;
  top: 90px;
  left: 0;
  width: 280px;
  /* Fixed width dropdown */
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 12px;
}

/* Hover trigger for simple dropdown */
.latestHeader:not(.mobile-view) .nav-item-wrapper:hover .simple-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Force dropdown to hide immediately when a link is clicked */
.latestHeader:not(.mobile-view)
  .nav-item-wrapper.menu-clicked
  .simple-dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-10px) !important;
}

/* Dropdown list container */
.latestHeader .dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Individual list item link */
.latestHeader .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #0c0c10;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.latestHeader .dropdown-item:hover {
  background: #f8fafc;
  color: #5519c2;
  transform: translateX(4px);
}

/* Circular icon box inside item */
.latestHeader .item-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(85, 25, 194, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5519c2;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.latestHeader .item-icon-box img {
  width: 18px;
  
}

.latestHeader .dropdown-item:hover .item-icon-box {
  background: #5519c2;
  color: #ffffff;
}

.latestHeader .dropdown-item:hover .item-icon-box img {
  filter: invert(1) brightness(100);
  
}

/* ----------------------------------------------------
   MOBILE VIEWS for Simple Dropdown inside side drawer
---------------------------------------------------- */
.latestHeader.mobile-view .simple-dropdown {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: none;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.latestHeader.mobile-view .nav-item-wrapper.sub-menu-open .simple-dropdown {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin-top: calc(8px);
  margin-bottom: calc(8px);
  padding: 12px;
}

.latestHeader.mobile-view .simple-dropdown .dropdown-list {
  gap: 8px;
}

.latestHeader.mobile-view .simple-dropdown .dropdown-item {
  color: #334155;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
  width: 100%;
  gap: 8px;
  border-radius: 0;
  background: transparent;
}

.latestHeader.mobile-view .simple-dropdown .dropdown-item:hover {
  color: #5519c2;
  transform: none;
  background: transparent;
}

.latestHeader.mobile-view .simple-dropdown .item-icon-box {
  width: 24px;
  height: 24px;
  background: rgba(85, 25, 194, 0.1);
  color: #5519c2;
}

.latestHeader.mobile-view .simple-dropdown .dropdown-item:hover .item-icon-box {
  background: #5519c2;
  color: #ffffff;
}

/* Bottom CTA Banner Bar */
.latestHeader .industries-bottom-bar {
  width: 100%;
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 16px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.latestHeader .industries-bottom-bar .bar-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
}

.latestHeader .industries-bottom-bar .bar-icon {
  font-size: 16px;
  color: #fbbf24;
}

.latestHeader .industries-bottom-bar .bar-text {
  margin: 0;
}

.latestHeader .industries-bottom-bar .bar-btn {
  background: #ffffff;
  color: #1e3a8a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s;
}

.latestHeader .industries-bottom-bar .bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

/* ----------------------------------------------------
   MOBILE VIEWS (within side drawer)
---------------------------------------------------- */
.latestHeader.mobile-view .industries-mega-menu {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: none;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.latestHeader.mobile-view
  .nav-item-wrapper.sub-menu-open
  .industries-mega-menu {
  max-height: 2500px;
  /* High max-height limit to fit all 35 items inside mobile drawer accordion */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin-top: calc(8px);
  margin-bottom: calc(8px);
  padding: 16px 12px;
}

/* Hide desktop elements in mobile view */
.latestHeader.mobile-view .industries-mega-menu .industries-header-left,
.latestHeader.mobile-view .industries-mega-menu .industries-vertical-divider,
.latestHeader.mobile-view .industries-mega-menu .industries-bottom-bar {
  display: none !important;
}

.latestHeader.mobile-view .industries-mega-menu .industries-mega-container {
  padding: 0;
  flex-direction: column;
  width: 100%;
  margin: 0;
  gap: 20px;
}

.latestHeader.mobile-view .industries-mega-menu .industries-columns-right {
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.latestHeader.mobile-view .industries-mega-menu .industries-standard-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.latestHeader.mobile-view .industries-mega-menu .industries-ondemand-section {
  width: 100%;
}

.latestHeader.mobile-view .industries-mega-menu .ondemand-title {
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.latestHeader.mobile-view .industries-mega-menu .ondemand-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.latestHeader.mobile-view .industries-mega-menu .ind-col {
  gap: 12px;
}

.latestHeader.mobile-view .industries-mega-menu .ind-link {
  color: #334155;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed #e2e8f0;
  width: 100%;
  gap: 8px;
}

.latestHeader.mobile-view .industries-mega-menu .ind-icon-box {
  width: 24px;
  height: 24px;
  background: rgba(85, 25, 194, 0.1);
  color: #5519c2;
}

.latestHeader.mobile-view .industries-mega-menu .ind-link:hover {
  color: #5519c2;
}

.latestHeader.mobile-view .industries-mega-menu .ind-link:hover .ind-icon-box {
  background: #5519c2;
  color: #ffffff;
}

/* Hide Mega Menu on Mobile view */
/* Responsive Mega Menu inside the side drawer */
.latestHeader.mobile-view .mega-menu {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: none;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.latestHeader.mobile-view .nav-item-wrapper.sub-menu-open .mega-menu {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* padding: calc(12px) calc(16px); */
  margin-top: calc(8px);
  margin-bottom: calc(8px);
}

.latestHeader.mobile-view .mega-container {
  flex-direction: column;
  width: 100%;
  margin: 0;
  gap: calc(12px);
}

.latestHeader.mobile-view .mega-sidebar {
  width: 100%;
  border-right: none;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 0 calc(8px) 0;
  gap: calc(14px);
  flex-direction: row;
  overflow-x: auto;
}

.latestHeader.mobile-view .mega-tab {
  padding: calc(8px) calc(12px);
  border-radius: 6px;
  color: #64748b;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  min-width: fit-content;
}

.latestHeader.mobile-view .mega-tab.active {
  color: #ffffff;
  background: #5519c2;
  border-color: #5519c2;
}

.latestHeader.mobile-view .mega-tab .chevron-icon {
  /* transform: rotate(90deg);
    color: #ffffff; */
  display: none;
}

.latestHeader.mobile-view .mega-tab .mega-tab-icon-box {
  display: none !important;
}

.latestHeader.mobile-view .mega-content-wrapper {
  width: 100%;
  padding: 0;
  border-right: none;
  background: transparent;
}

.latestHeader.mobile-view .mega-content-panel.active {
  flex-direction: column;
  gap: calc(12px);
}

.latestHeader.mobile-view .mega-column {
  width: 100%;
  gap: calc(8px);
}

.latestHeader.mobile-view .mega-link {
  color: #334155;
  padding: calc(6px) calc(6px);
  font-size: 13.5px;
  border-bottom: 1px dashed #e2e8f0;
}

.latestHeader.mobile-view .mega-link:hover {
  color: #5519c2;
}

.latestHeader.mobile-view .mega-featured {
  width: 100%;
  padding: 0px;
}


/* ----------------------------------------------------
   LET'S CONNECT SECTION
---------------------------------------------------- */
.connectSection {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding-top: calc(100px);
  padding-bottom: calc(100px);
  overflow: hidden;
}

.connectSection .container {
  position: relative;
  z-index: 2;
}

.connectSection .content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: calc(60px);
}

/* Left Column content */
.connectSection .connect-info {
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.connectSection .connect-info ul {
  padding-left: 15px;
}

.connectSection .connect-info ul li {
  font-weight: 600;
  color: #0c0c1e;
  margin-bottom: 15px;
}

.connectSection .section-tag {
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  color: #475569;
  letter-spacing: 2px;
  display: block;
  margin-bottom: calc(16px);
  text-transform: uppercase;
}

.connectSection .section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 600;
  color: #0c0c1e;
  line-height: 1.25;
  margin-bottom: calc(24px);
  letter-spacing: -1.5px;
}

.connectSection .section-desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #475569;
  line-height: 1.65;
  margin-bottom: calc(24px);
}

/* Right Column Form Card */
.connectSection .connect-form-card {
  width: 58%;
  background: #f8f9fd;
  border: 1.5px solid #e5e7eb;
  border-radius: 32px;
  padding: calc(30px) calc(30px);
}

.connectSection .form-row {
  display: flex;
  gap: calc(20px);
  margin-bottom: calc(15px);
  width: 100%;
}

.connectSection .form-group {
  display: flex;
  flex-direction: column;
  gap: calc(8px);
  flex: 1;
  min-width: 0;
}

.connectSection .form-group.full-width {
  width: 100%;
  margin-bottom: calc(20px);
}

.connectSection label {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  color: #000000;
  text-align: left;
}

.budget-header span.budget-value {
  color: #5519c2;
  font-weight: 600;
}

.connectSection input[type="text"],
.connectSection input[type="tel"],
.connectSection input[type="email"],
.connectSection textarea {
  padding: calc(16px) calc(20px);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 2px 0px 0px #e5e7eb;
  background: #ffffff;
  font-size: clamp(16px, 1.8vw, 16px);
  color: #0c0c1e;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.connectSection input::placeholder,
.connectSection textarea::placeholder {
  color: #666072;
  font-weight: 400;
}

.connectSection input:focus,
.connectSection textarea:focus {
  border-color: #6a35db;
  box-shadow: 0 0 0 4px rgba(96, 37, 230, 0.05);
}

/* File Upload input */
.connectSection .file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 54px;
}

.connectSection .file-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.connectSection .file-upload-display {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 calc(20px);
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.connectSection .file-upload-wrapper:hover .file-upload-display {
  border-color: #6a35db;
}

.connectSection .file-upload-placeholder {
  color: #666072;
}

.connectSection .file-upload-placeholder.selected {
  color: #0c0c1e;
  font-weight: 600;
}

.connectSection .upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c0c1e;
  width: 18px;
  height: 18px;
}

.connectSection .upload-icon img {
  width: 100%;
  height: 100%;
}

/* Textarea height */
.connectSection textarea {
  resize: none;
  min-height: 80px;
}

/* Budget Range Slider styling */
.connectSection .budget-group {
  margin-bottom: calc(24px);
}

.connectSection .slider-wrapper {
  width: 100%;
  /* margin-top: calc(12px); */
}

.connectSection .budget-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  background: linear-gradient(
    90deg,
    #1a1a4b 0%,
    #1a1a4b 75%,
    #d8ceff 75%,
    #d8ceff 100%
  );
  margin: 12px 0;
  cursor: pointer;
}

.connectSection .budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #6a35db;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(96, 37, 230, 0.3);
}

.connectSection .budget-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.connectSection .slider-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: calc(8px);
}

.connectSection .slider-labels span {
  font-size: 14.5px;
  font-weight: 600;
  color: #0c0c1e;
}

/* Captcha and NDA checkbox row */
.connectSection .captcha-nda-row {
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid #e2e8f0;
  padding-top: calc(20px);
  margin-top: calc(8px);
}

.connectSection .captcha-group {
  display: flex;
  align-items: center;
  gap: calc(12px);
}

.connectSection .captcha-label {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  color: #0f1720;
}

.connectSection .captcha-math {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  color: #0f1720;
}

.connectSection .captcha-input {
  width: 80px !important;
  padding: calc(10px) calc(14px) !important;
  border-radius: 8px !important;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
}

.connectSection .nda-checkbox-group {
  display: flex;
  align-items: center;
}

.connectSection .checkbox-container {
  display: inline-flex;
  align-items: center;
  gap: calc(10px);
  cursor: pointer;
  user-select: none;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 400;
  color: #242731;
}

.connectSection .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.connectSection .checkbox-custom {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.connectSection .checkbox-container:hover input ~ .checkbox-custom {
  border-color: #6a35db;
}

.connectSection .checkbox-container input:checked ~ .checkbox-custom {
  background-color: #6a35db;
  border-color: #6a35db;
}

.connectSection .checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 3px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.connectSection .checkbox-container input:checked ~ .checkbox-custom:after {
  display: block;
}

.connectSection .checkbox-container .checkbox-label {
  font-size: clamp(13px, 1.8vw, 15px);
  color: #242731;
}

/* Submit Button */
.connectSection .submit-btn {
  width: 100%;
  padding: calc(18px);
  border-radius: 50px;
  background: #5519c2;
  color: #ffffff;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: calc(20px);
  background:
    linear-gradient(#5519c2, #5519c2) padding-box,
    linear-gradient(
        180deg,
        rgba(119, 5, 180, 0.3) 0%,
        rgba(169, 59, 228, 0.3) 100%
      )
      border-box;
  border: 1px solid transparent;
  box-shadow:
    0px 42px 107px 0px #6b46c157,
    0px 1px 4px -1px #ffffff inset,
    0px 1px 18px -1px #8f68ea inset;
}

.connectSection .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 37, 230, 0.3);
}



/* ====================================================
   CONTACT MODAL
   ==================================================== */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 1, 38, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.contact-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-container {
  background: #ffffff;
  border-radius: 28px;
  width: 100%;
  max-width: 960px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 20px;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.contact-modal-overlay.active .contact-modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
  padding-bottom: 2px;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

.contact-modal-container .modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-modal-container .modal-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  font-family: inherit;
}

.contact-modal-container .modal-subtitle {
  font-size: 16px;
  color: #64748b;
}

.contact-modal-container .modal-body {
  display: flex;
  gap: 30px;
}

.contact-modal-container .modal-connect-info {
  width: 38%;
  background: linear-gradient(135deg, #5519c2, #3b0e93);
  border-radius: 20px;
  padding: 35px 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.contact-modal-container .modal-connect-info::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.contact-modal-container .info-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: inherit;
}

.contact-modal-container .info-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 40px;
}

.contact-modal-container .info-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-modal-container .info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-modal-container .info-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-modal-container .info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-modal-container .info-text a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.contact-modal-container .info-text a:hover {
  opacity: 0.8;
}

.contact-modal-container .info-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.contact-modal-container .modal-form-wrapper {
  width: 62%;
}

.contact-modal-container .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  width: 100%;
}

.contact-modal-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.contact-modal-container .form-group.full-width {
  width: 100%;
  margin-bottom: 10px;
}

.contact-modal-container label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  text-align: left;
}

.contact-modal-container input[type="text"],
.contact-modal-container input[type="tel"],
.contact-modal-container input[type="email"],
.contact-modal-container textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 15px;
  color: #0f172a;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-modal-container input::placeholder,
.contact-modal-container textarea::placeholder {
  color: #94a3b8;
}

.contact-modal-container input:focus,
.contact-modal-container textarea:focus {
  border-color: #5519c2;
  box-shadow: 0 0 0 4px rgba(85, 25, 194, 0.1);
}

.contact-modal-container .slider-wrapper {
  width: 100%;
  margin-top: 5px;
}

.contact-modal-container .budget-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  outline: none;
  background: #e0d8ff;
}

.contact-modal-container .budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5519c2;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
}

.contact-modal-container .budget-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.contact-modal-container .slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.contact-modal-container .slider-labels span {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.contact-modal-container .captcha-nda-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.contact-modal-container .captcha-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-modal-container .captcha-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.contact-modal-container .captcha-math {
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.contact-modal-container .captcha-input {
  width: 60px !important;
  padding: 8px 10px !important;
  text-align: center;
  border-radius: 8px !important;
}

.contact-modal-container .nda-checkbox-group {
  display: flex;
  align-items: center;
}

.contact-modal-container .checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

.contact-modal-container .checkbox-container input {
  display: none;
}

.contact-modal-container .checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  background: #ffffff;
}

.contact-modal-container .checkbox-container input:checked ~ .checkbox-custom {
  background: #5519c2;
  border-color: #5519c2;
}

.contact-modal-container .checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-modal-container
  .checkbox-container
  input:checked
  ~ .checkbox-custom:after {
  display: block;
}

.contact-modal-container .checkbox-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.contact-modal-container .submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #5519c2, #4712a8);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(85, 25, 194, 0.25);
  transition: all 0.3s ease;
}

.contact-modal-container .submit-btn:hover {
  background: linear-gradient(135deg, #4712a8, #3b0e93);
  box-shadow: 0 6px 16px rgba(85, 25, 194, 0.35);
  transform: translateY(-1px);
}

.contact-modal-container .file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 48px;
}

.contact-modal-container .file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.contact-modal-container .file-upload-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.contact-modal-container .file-upload-placeholder {
  font-size: 14px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 24px);
}

.contact-modal-container .file-upload-placeholder.selected {
  color: #0f172a;
  font-weight: 500;
}

.contact-modal-container .upload-icon {
  display: flex;
  align-items: center;
  color: #94a3b8;
}

/* Modal Social Links Styling */
.contact-modal-container .modal-connect-info .social-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
}

.contact-modal-container .modal-connect-info .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.contact-modal-container .modal-connect-info .social-icon svg {
  width: 16px;
  height: 16px;
}

.contact-modal-container .modal-connect-info .social-icon img {
  width: 16px;
  height: 16px;
  filter: invert(1) brightness(100);
  transition: all 0.3s ease;
}

.contact-modal-container .modal-connect-info .social-icon:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: #5519c2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.contact-modal-container .modal-connect-info .social-icon:hover img {
  filter: none;
}

/* 5. Tablets - Portrait View (max-width: 1280px) */
@media only screen and (max-width: 1280px) {
  .latestHeader .nav-menu {
    width: calc(70% - 20px);
  }

  .topBrands .brand-item {
    max-width: 140px;
  }

  .topBrands .brand-item.brand-seeq {
    max-width: 80px;
  }
}

@media only screen and (max-width: 1150px) {
  .mainFooter .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Wrap to 3 columns on narrow desktops and tablets */
    gap: 32px;
  }
  .engagementModels .engagement-card {
  height: 460px;
}
}

/* 6. Tablets - Portrait View (max-width: 1080px) */
@media only screen and (max-width: 1080px) {
  .latestHeader .nav-menu {
    width: calc(75% - 20px);
  }

  .techEcosystem .tech-card {
    width: calc(33% - 13px);
  }
}

/* 7. Tablets - Portrait View (max-width: 992px) */
@media only screen and (max-width: 1023px) {
  /* ----------------------------------------------------
   RESPONSIVE HEADER VIA JS CLASSES (.mobile-view)
---------------------------------------------------- */
  /* Responsive Slide-Out Drawer Overlay */
  .latestHeader .nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 12, 16, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .latestHeader.menu-open .nav-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Responsive Side Drawer Layout */
  .latestHeader .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(20px) calc(20px);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    gap: 0;
  }

  .latestHeader.menu-open .nav-menu {
    transform: translateX(0);
  }

  .latestHeader .drawer-close {
    display: block;
    align-self: flex-end;
    background: transparent;
    border: none;
    font-size: clamp(32px, 3.2vw, 32px);
    font-weight: 300;
    color: #0c0c10;
    cursor: pointer;
    padding: 0;
    /* margin-bottom: calc(24px); */
    line-height: 1;
  }

  /* Nav Item Wrapper with Divider */
  .latestHeader .nav-item-wrapper {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    padding: calc(6px) 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Nav Link Styling to match the Mockup */
  .latestHeader .nav-link {
    color: #0c0126;
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 600;
    text-transform: capitalize;
    /* "Services" instead of "SERVICES" */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(14px) 0;
  }

  .latestHeader .nav-link:hover {
    color: #5519c2;
  }

  /* Plus/Minus Icons in Menu to match Mockup */
  .latestHeader .arrow-plus {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .latestHeader .arrow-plus img {
    filter: brightness(0);
    /* Make images dark black */
    width: 14px;
    height: 14px;
    margin-top: 0;
  }

  .latestHeader .nav-item-wrapper.sub-menu-open .arrow-plus img:nth-child(1) {
    display: none;
  }

  .latestHeader .nav-item-wrapper.sub-menu-open .arrow-plus img:nth-child(2) {
    display: inline-block;
  }

  /* Hamburger remains as a trigger button */
  .latestHeader .hamburger {
    display: flex;
  }

  /* Hide Hamburger active transformation as we close it inside the drawer */
  .latestHeader.menu-open .hamburger .bar:nth-child(1),
  .latestHeader.menu-open .hamburger .bar:nth-child(2),
  .latestHeader.menu-open .hamburger .bar:nth-child(3) {
    transform: none;
    opacity: 1;
  }

  /* Drawer Contact Button matching Mockup */
  .latestHeader .right-actions {
    width: 100%;
    margin-top: calc(32px);
    margin-right: 0;
  }

  .latestHeader .contact-btn {
    width: 100%;
  }

  .latestHeader .contact-btn:hover {
    background: #3e0c9c;
  }

  .latestHeader .nav-menu .right-actions {
    display: flex;
  }

  .latestHeader .right-actions.hide_mobile {
    display: none;
  }

  .topBrands .brand-item {
    max-width: 120px;
  }
}

@media only screen and (max-width:991px){
  /* ----------------------------------------------------
   RESPONSIVE LAYOUT VIA JS CLASSES ()
---------------------------------------------------- */
.layout .heroBannerNew {
  /* min-height: auto; */
  padding-top: 120px;
  padding-bottom: 60px;
}

.layout .heroBannerNew .inner_part {
  min-height: auto;
  gap: 40px;
}

.layout .heroBannerNew .hero-bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.layout .heroBannerNew .bottom-left {
  width: 100%;
  align-items: center;
}

.layout .heroBannerNew .bottom-right {
  width: 100%;
  justify-content: center;
  gap: 36px;
}

/* ----------------------------------------------------
   RESPONSIVE SERVICES ECOSYSTEM VIA JS CLASSES ()
---------------------------------------------------- */
.layout .servicesEcosystem {
  padding-top: 60px;
  padding-bottom: 0px;
}

.layout .servicesEcosystem .section-header {
  margin-bottom: 36px;
}

.layout .servicesEcosystem .content-row {
  flex-direction: column;
  gap: 32px;
}

.layout .servicesEcosystem .sidebar {
  width: 100%;
}

.layout .servicesEcosystem .tab-list {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-direction: unset;
  padding-bottom: 20px !important;
  /* Extra bottom space so active bar and triangle sit inside scrollport and don't get clipped */
  background: linear-gradient(
      to top,
      transparent 20px,
      #e5e7eb 20px,
      #e5e7eb 22px,
      transparent 22px
    )
    local;
  /* Custom baseline inside the padding height */
  scrollbar-width: none;
  /* Hide scrollbar for clean UI */
}

.layout .servicesEcosystem .tab-list::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}

.layout .servicesEcosystem .service-tab {
  padding: 10px 4px 12px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #8a94a6 !important;
  font-size: clamp(15px, 2.2vw, 16px) !important;
  font-weight: 500 !important;
  flex-shrink: 0 !important;
  width: auto !important;
  /* Prevent tab button from stretching to full viewport width */
  min-width: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

.layout .servicesEcosystem .service-tab .tab-num {
  display: none !important;
}

.layout .servicesEcosystem .service-tab.active {
  color: #0c0126 !important;
  /* Brand dark color */
  font-weight: 700 !important;
  /* Strongly bold active text */
}

.layout .servicesEcosystem .service-tab.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #5519c2;
  z-index: 2;
}

.layout .servicesEcosystem .service-tab.active .tab-num {
  color: #5519c2 !important;
}

.layout .servicesEcosystem .service-tab.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  /* sits right below the active bar */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #5519c2;
  z-index: 5;
}

.layout .servicesEcosystem .cta-group.desktop-only {
  display: none !important;
}

.layout .servicesEcosystem .cta-group.mobile-only {
  display: flex !important;
  margin: 0px auto 0 !important;
  justify-content: center !important;
}

.layout .servicesEcosystem .details-panel {
  width: 100%;
  padding: 16px;
}

.layout .servicesEcosystem .service-card {
  padding: 32px 20px;
  min-height: auto;
  height: 100%;
}

.layout .servicesEcosystem .card-desc {
  max-width: 100%;
  margin-bottom: 28px;
}

.layout .servicesEcosystem .card-pills {
  max-width: 100%;
}

.layout .servicesEcosystem .card-graphic {
  display: none;
}

.layout .servicesEcosystem .services-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.layout .servicesEcosystem .autoplay-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c0c10;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  outline: none;
  transition: background-color 0.3s ease;
}

.layout .servicesEcosystem .autoplay-toggle:hover {
  background: #5519c2;
}

.layout .servicesEcosystem .slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1eff9;
  padding: 10px 20px;
  border-radius: 30px;
}

.layout .servicesEcosystem .slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9c2c9;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.layout .servicesEcosystem .slider-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: #0c0c10;
}

/* ----------------------------------------------------
   RESPONSIVE REALITY GAP VIA JS CLASSES ()
---------------------------------------------------- */
.layout .realityGap {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .realityGap .section-header {
  margin-bottom: calc(36px);
}

.layout .realityGap .content-row {
  flex-direction: column;
  gap: calc(32px);
}

.layout .realityGap .card {
  width: 100%;
  padding: calc(32px) calc(20px);
}

.layout .realityGap .card-title {
  margin-bottom: calc(24px);
}

.layout .realityGap .card-cta {
  justify-content: flex-start;
}

/* ----------------------------------------------------
   RESPONSIVE OUR PROCESS VIA JS CLASSES ()
---------------------------------------------------- */
.layout .ourProcess {
  padding-top: 60px;
  padding-bottom: 60px;
}

.layout .ourProcess .section-header {
  margin-bottom: 36px;
}

.layout .ourProcess .content-row {
  flex-direction: column;
  gap: 40px;
}

.layout .ourProcess .timeline-container {
  width: 100%;
}

.layout .ourProcess .timeline-step {
  padding-bottom: 32px;
}

.layout .ourProcess .step-sidebar {
  width: 48px;
  padding-right: 12px;
  margin-right: 20px;
}

.layout .ourProcess .step-body {
  width: calc(100% - 68px);
}

.layout .ourProcess .step-desc {
  max-width: 100%;
}

.layout .ourProcess .illustration-panel {
  width: 100%;
  position: static;
}

/* ----------------------------------------------------
   RESPONSIVE CASE STUDIES VIA JS CLASSES ()
---------------------------------------------------- */
.layout .featuredCaseStudies {
  padding-top: 60px;
  padding-bottom: 60px;
}

.layout .featuredCaseStudies .section-header {
  margin-bottom: 36px;
}

.layout .featuredCaseStudies .case-study-card {
  flex-direction: column-reverse;
  padding: 24px;
  min-height: auto;
  gap: 32px;
}

.layout .featuredCaseStudies .card-content {
  width: 100%;
}

.layout .featuredCaseStudies .card-media {
  width: 100%;
  padding: 20px;
  overflow: hidden;
  /* Prevent overflow on mobile */
}

.layout .featuredCaseStudies .laptop-img {
  width: 100%;
  transform: none;
}

.layout .featuredCaseStudies .case-study-card:hover .laptop-img {
  transform: none;
}

.layout .featuredCaseStudies .logos-carousel {
  justify-content: flex-start;
  padding-bottom: 14px;
}

/* .layout .featuredCaseStudies .logo-tab {
    width: 130px;
} */

/* ----------------------------------------------------
   RESPONSIVE TOP BRANDS VIA JS CLASSES ()
---------------------------------------------------- */
.layout .topBrands {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .topBrands .section-header {
  margin-bottom: calc(36px);
}

.layout .topBrands .marquee-group {
  gap: calc(28px);
}

.layout .topBrands .marquee-track {
  gap: calc(54px);
}

/* ----------------------------------------------------
   RESPONSIVE TESTIMONIALS VIA JS CLASSES ()
---------------------------------------------------- */
.layout .testimonialsSection {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .testimonialsSection .slider-row {
  flex-direction: column;
  gap: calc(36px);
  align-items: flex-start;
  position: relative;
}

.layout .testimonialsSection .testimonial-wrapper {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.layout .testimonialsSection .quote-container {
  margin-bottom: calc(24px);
}

.layout .testimonialsSection .nav-col {
  display: inline-block;
  width: auto;
  margin-right: calc(24px);
}

.layout .testimonialsSection .nav-col-prev {
  text-align: left;
}

.layout .testimonialsSection .nav-col-next {
  text-align: left;
  position: absolute;
  bottom: -30px;
  right: 0;
}

.layout .testimonialsSection .nav-col-prev {
  text-align: left;
  position: absolute;
  bottom: -30px;
  left: 0;
}

/* ----------------------------------------------------
   RESPONSIVE AWARDS CAROUSEL VIA JS CLASSES ()
---------------------------------------------------- */
.layout .awardsSection {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .awardsSection .section-header {
  margin-bottom: calc(36px);
}

.layout .awardsSection .title-with-laurels {
  gap: calc(10px);
}

.layout .awardsSection .laurel-wreath {
  display: none;
  /* Hide wreaths on tight mobile headers */
}

.layout .awardsSection .awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 10px;
}

.layout .awardsSection .award-card {
  width: 100%;
  min-height: calc(300px);
}


/* ----------------------------------------------------
   RESPONSIVE INDUSTRIES SERVE VIA JS CLASSES ()
---------------------------------------------------- */
.layout .industriesServe {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .industriesServe .section-header {
  margin-bottom: calc(36px);
}

.layout .industriesServe .tabs-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  padding-bottom: 20px !important;
  margin-bottom: 24px;
  background: linear-gradient(
      to top,
      transparent 20px,
      #e5e7eb 20px,
      #e5e7eb 22px,
      transparent 22px
    )
    local;
  scrollbar-width: none;
}

.layout .industriesServe .tabs-bar::-webkit-scrollbar {
  display: none;
}

.layout .industriesServe .tab-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #8a94a6 !important;
  border-radius: 0 !important;
  padding: 10px 4px 12px !important;
  font-weight: 500;
  width: auto !important;
  min-width: auto !important;
}

.layout .industriesServe .tab-btn.active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #0c0126 !important;
  font-weight: 700 !important;
  border-bottom: 4px solid #5519c2 !important;
  border-radius: 0 !important;
  position: relative;
}

.layout .industriesServe .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #5519c2;
  z-index: 5;
}

.layout .industriesServe .industries-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
}

.layout .industriesServe .autoplay-toggle-ind {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0c0c10;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.layout .industriesServe .autoplay-toggle-ind:hover {
  background: #5519c2;
}

.layout .industriesServe .slider-dots-ind {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1eff9;
  padding: 6px 12px;
  border-radius: 20px;
}

.layout .industriesServe .slider-dots-ind .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4c4c4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.layout .industriesServe .slider-dots-ind .dot.active {
  width: 24px;
  border-radius: 4px;
  background: #0c0c10;
}

.layout .industriesServe .industry-panel {
  flex-direction: column;
  gap: calc(40px);
}

.layout .industriesServe .panel-media {
  width: 100%;
}

.layout .industriesServe .phone-showcase {
  min-height: calc(340px);
}

.layout .industriesServe .panel-details {
  width: 100%;
}

.layout .industriesServe .lists-flex {
  flex-direction: column;
  gap: calc(28px);
  padding-top: 0 !important;
}

.layout .industriesServe .lists-flex::before {
  display: none;
}

.layout .industriesServe .details-list-col {
  width: 100% !important;
  border-right: none !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.layout .industriesServe .list-title {
  position: static !important;
  margin-bottom: calc(12px);
}

/* ----------------------------------------------------
   RESPONSIVE TECH ECOSYSTEM VIA JS CLASSES ()
 ---------------------------------------------------- */
.layout .techEcosystem {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .techEcosystem .content-row {
  flex-direction: column;
  gap: calc(32px);
}

.layout .techEcosystem .panel-sidebar {
  width: 100%;
  flex-direction: row;
  overflow-x: auto;
  border-right: none;
  border-bottom: 1.5px solid #f1f5f9;
  padding-right: 0;
  padding-bottom: calc(12px);
  gap: calc(8px);
}

.layout .techEcosystem .ecosystem-tab {
  padding: calc(10px) calc(16px);
  border-left: none;
  border-bottom: 3px solid transparent;
  flex-shrink: 0;
  width: auto;
}

.layout .techEcosystem .ecosystem-tab:hover {
  padding-left: calc(16px);
}

.layout .techEcosystem .ecosystem-tab.active {
  border-bottom-color: #6a35db;
  border-radius: 8px 8px 0 0;
  padding-left: calc(16px);
}

.layout .techEcosystem .panel-showcase {
  width: 100%;
  padding: calc(12px);
  min-height: unset;
}

.layout .techEcosystem .tech-panel {
  padding: calc(24px) calc(20px);
}

.layout .techEcosystem .tech-card {
  width: calc(50% - 8px);
  min-width: unset;
}

/* ----------------------------------------------------
   RESPONSIVE AI TRANSFORMATION VIA JS CLASSES ()
---------------------------------------------------- */
.layout .aiTransformation {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .aiTransformation .cards-row {
  flex-direction: column;
  gap: calc(40px);
  padding-bottom: 0;
  padding-left: calc(36px);
  border-left: 3px solid #8b5cf6;
}

.layout .aiTransformation .horizontal-timeline-line {
  display: none;
}

.layout .aiTransformation .ai-card {
  width: 100%;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  border-radius: 16px !important;
  margin-bottom: calc(20px);
  padding-bottom: calc(36px);
}

.layout .aiTransformation .timeline-dot-wrap {
  bottom: auto;
  top: 50%;
  left: -44.5px;
  transform: translateY(-50%);
  display: none;
}

/* ----------------------------------------------------
   RESPONSIVE ENGAGEMENT MODELS VIA JS CLASSES ()
---------------------------------------------------- */
.layout .engagementModels {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .engagementModels .cards-row {
  flex-direction: column;
  gap: calc(20px);
}

.layout .engagementModels .engagement-card {
  width: 100% !important;
  height: auto !important;
  /* Allow natural card expansion on mobile screens */
  padding: calc(32px) calc(24px) !important;
}

.layout .engagementModels .card-inner {
  flex-direction: column;
  gap: calc(24px);
}

.layout .engagementModels .left-col {
  width: 100% !important;
  border-right: none !important;
  padding-right: 0 !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.layout .engagementModels .card-icon-container {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.layout .engagementModels .right-col {
  display: flex !important;
  width: 100% !important;
  opacity: 1 !important;
  transform: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: calc(24px);
  overflow: visible !important;
  pointer-events: auto !important;
}

.layout .engagementModels .engagement-card:not(.active) .right-col {
  display: flex !important;
  width: 100% !important;
  opacity: 1 !important;
  transform: none !important;
  border-top: 1px solid #e2e8f0;
  padding-top: calc(24px);
  overflow: visible !important;
  pointer-events: auto !important;
}

.layout
  .engagementModels
  .engagement-card:not(.active)
  .ideal-title {
  color: #0c0c1e;
}

.layout
  .engagementModels
  .engagement-card:not(.active)
  .ideal-list
  li {
  color: #475569;
}

/* ----------------------------------------------------
   RESPONSIVE INSIGHTS HUB VIA JS CLASSES ()
 ---------------------------------------------------- */
.layout .insightsHub {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .insightsHub .insights-header-row {
  flex-direction: column;
  align-items: flex-start;
  gap: calc(24px);
  margin-bottom: calc(36px);
}

.layout .insightsHub .view-all-blogs-btn {
  width: 100%;
  justify-content: center;
}

.layout .insightsHub .cards-row {
  flex-direction: column;
  gap: calc(24px);
}

.layout .insightsHub .blog-card {
  width: 100%;
}

/* ----------------------------------------------------
   RESPONSIVE ENTERPRISE COMPLIANCE VIA JS CLASSES ()
---------------------------------------------------- */
.layout .complianceSection {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .complianceSection .showcase-box {
  flex-direction: column;
  padding: calc(32px) calc(20px);
  gap: calc(28px);
}

.layout .complianceSection .tabs-grid {
  width: 100%;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: calc(12px);
  border-bottom: 1.5px solid #f1f5f9;
  gap: calc(12px);
  scrollbar-width: none;
}

.layout .complianceSection .tabs-grid::-webkit-scrollbar {
  display: none;
}

.layout .complianceSection .tabs-col {
  display: contents !important;
}

.layout .complianceSection .compliance-tab {
  width: auto !important;
  flex-shrink: 0 !important;
}

.layout .complianceSection .divider-line {
  display: none;
}

.layout .complianceSection .details-panel {
  width: 100%;
}

/* ----------------------------------------------------
   RESPONSIVE FAQ VIA JS CLASSES ()
---------------------------------------------------- */
.layout .faqSection {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .faqSection .content-row {
  flex-direction: column;
  gap: calc(40px);
}

.layout .faqSection .faq-accordion {
  width: 100%;
}

.layout .faqSection .faq-contact-card {
  width: 100%;
}

.layout .faqSection .item-body {
  padding-left: calc(24px);
}

/* Responsive Mobile Connect Section */
.layout .connectSection {
  padding-top: calc(60px);
  padding-bottom: calc(60px);
}

.layout .connectSection .content-row {
  flex-direction: column;
  gap: calc(40px);
}

.layout .connectSection .connect-info,
.layout .connectSection .connect-form-card {
  width: 100%;
}

.layout .connectSection .connect-form-card {
  padding: calc(32px) calc(20px);
}

.layout .connectSection .form-row {
  flex-direction: column;
  gap: calc(20px);
  margin-bottom: calc(20px);
}

.layout .connectSection .captcha-nda-row {
  flex-direction: column;
  align-items: flex-start;
  gap: calc(20px);
}

.layout .connectSection .nda-checkbox-group {
  width: 100%;
  justify-content: flex-start;
}

/* ----------------------------------------------------
   RESPONSIVE MAIN FOOTER VIA JS CLASSES ()
 ---------------------------------------------------- */
.layout .officeAddressesSection {
  padding-top: calc(40px);
  padding-bottom: calc(40px);
}

.layout .officeAddressesSection .offices-grid {
  grid-template-columns: 1fr;
  gap: calc(16px);
}

.layout .mainFooter {
  padding-top: calc(40px);
}

.layout .mainFooter .footer-cost-cta {
  padding: calc(48px) calc(20px);
  border-radius: 24px;
  margin-bottom: calc(48px);
}

.layout .btn-pill-arrow {
  flex-direction: column;
  width: 100%;
  gap: calc(12px);
}

.layout .btn-pill-arrow .pill-btn,
.layout .btn-pill-arrow .arrow-btn {
  width: 100%;
  border-radius: 50px;
  justify-content: center;
}

.layout .mainFooter .footer-purple-box {
  padding: calc(40px) calc(20px);
  border-radius: 40px;
  margin-bottom: 5px;
}

.layout .mainFooter .footer-bottom-bar {
  padding: calc(24px) calc(20px);
}

.layout .mainFooter .footer-bottom-inner {
  flex-direction: column;
  gap: calc(16px);
  align-items: flex-start;
  text-align: left;
}

.engagementModels .ideal-title {
  display: block;
}



}

/* 8. Small Tablets (max-width: 868px) */
@media only screen and (max-width: 868px) {
}

/* 9. Small Tablets (max-width: 867px) */
@media only screen and (max-width: 867px) {
}

/* 10. Large Mobile Devices (max-width: 768px) */
@media only screen and (max-width: 768px) {
  .contact-modal-container .modal-body {
    flex-direction: column;
  }

  .contact-modal-container .modal-connect-info,
  .contact-modal-container .modal-form-wrapper {
    width: 100%;
  }

  .contact-modal-container .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-modal-container .captcha-nda-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-modal-container {
    padding: 30px 20px;
  }

   .mainFooter .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Wrap to 2 columns on small tablets */
  }
}

/* 11. Mobile Devices (max-width: 767px) */
@media only screen and (max-width: 767px) {
}

/* 12. Small Mobile Devices (max-width: 600px) */
@media only screen and (max-width: 600px) {
  .heroBannerNew .hero-content {
    margin-top: 0;
  }

  /* Insights Hub Blog Card Slider Overrides */
  .layout .insightsHub .insights-slider-wrapper {
    position: relative;
    width: 100%;
    display: block;
  }

  .layout .insightsHub .cards-row {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 12px !important;
    box-sizing: border-box !important;
    scrollbar-width: none !important;
  }

  .layout .insightsHub .cards-row::-webkit-scrollbar {
    display: none !important;
  }

  .layout .insightsHub .blog-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  .layout .insightsHub .insights-slider-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
  }

  .layout .insightsHub .insights-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(12, 12, 16, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .layout .insightsHub .insights-slider-dots .dot.active {
    background: #5519c2;
    transform: scale(1.2);
  }

  /* Absolute centering in the middle of the card div */
  .layout .insightsHub .insights-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 28%;
    /* Vertically centered over the card's visual block */
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0c0126;
    /* Dark branding violet color */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  .layout .insightsHub .insights-arrow:active {
    background: #5519c2;
    transform: translateY(-50%) scale(0.9);
  }

  .layout .insightsHub .insights-arrow.arrow-left {
    left: 8px;
  }

  .layout .insightsHub .insights-arrow.arrow-right {
    right: 8px;
  }

  .layout .insightsHub .insights-arrow.disabled,
  .layout .insightsHub .insights-arrow[disabled] {
    opacity: 0.25 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
  }

  .layout .servicesEcosystem .service-tab {
    min-width: auto;
  }

  .realityGap .card .card-fix-inner {
    padding: 20px;
  }

  .layout .realityGap .card {
    padding: calc(20px) calc(20px);
  }

  .layout .ourProcess .content-row {
    flex-direction: column-reverse;
  }

  .layout .featuredCaseStudies .case-study-card {
    padding: 20px;
  }

  .featuredCaseStudies .case_study_card_wrapper {
    padding: 20px 20px;
  }

  .layout .featuredCaseStudies .card-media {
    padding: 0px;
  }

  .testimonialsSection .testimonial-card .wrap_link_author {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
  }

  .testimonialsSection .testimonial-card .wrap_link_author a {
    margin-bottom: 15px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .layout .aiTransformation .cards-row {
    padding-left: calc(0px);
    border-left: unset;
    gap: 0;
  }

  .layout .complianceSection {
    padding-top: calc(40px);
    padding-bottom: calc(0px);
  }

  .layout .engagementModels {
    padding-top: calc(40px);
    padding-bottom: calc(0px);
  }

  .mainFooter .copyright-text {
    text-align: center;
    width: 100%;
  }

  .mainFooter .footer-bottom-links {
    width: 100%;
    gap: calc(10px);
    justify-content: center;
  }

  .layout .ourProcess .illustration-panel {
    display: none;
  }

  .cta-group {
    width: auto;
  }

  .layout .complianceSection .compliance-tab:not(.active):hover {
    border-color: #e0e0e0 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-shadow: none !important;
  }

  .featuredCaseStudies .logo-tab {
    height: 55px;
    border-radius: 6px;
  }

  .featuredCaseStudies .logo-tab img {
    max-width: 80%;
    width: 100%;
  }

  .contact-modal-container .modal-connect-info {
    display: none;
  }

  .topBrands .brand-item {
    max-width: 80px;
  }

  .layout .awardsSection .awards-grid {
    grid-template-columns: 1fr;
  }
  .new_website_content{
    margin-top: 0 !important;
  }
}

@media only screen and (max-width: 500px) {
  .mainFooter .footer-grid {
    grid-template-columns: 1fr;
    /* Stack into 1 column on mobile phones */
  }
}

/* 13. Very Small Mobile Devices (max-width: 360px) */
@media only screen and (max-width: 360px) {
}

/* Global Responsive Footer Grid (triggers based on viewport width, independent of mobile-mode class) */





/* Custom form validation: red border + inline message, loader on submit */
.connectSection input.field-error,
.connectSection textarea.field-error,
.contact-modal-container input.field-error,
.contact-modal-container textarea.field-error {
  border-color: #e11d48 !important;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.08) !important;
}

.field-error-msg {
  display: block;
  color: #e11d48;
  font-size: 12px;
  font-weight: 500;
  margin-top: -2px;
}

.connectSection .submit-btn.formloader,
.contact-modal-container .submit-btn.formloader {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}

.connectSection .submit-btn.formloader::after,
.contact-modal-container .submit-btn.formloader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: submitBtnSpin 0.7s linear infinite;
}

@keyframes submitBtnSpin {
  to {
    transform: rotate(360deg);
  }
}
