/* ─── RESET & BASE ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #181818;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --red: #f53333;
  --dark: #181818;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --accent: #16a34a;
  --accent-light: #f0fdf4;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .10);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .13);
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp { 
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.au { animation: fadeUp .7s ease forwards; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .4s; }

/* ─── LAYOUT & UTILITIES ─────────────────────────────────── */
.wrap, .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sec {
  padding: 5rem 0;
}
.sec--gray {
  background: var(--gray-50);
}
.sec--white {
  background: var(--white);
}
.sec--dark {
  background: var(--dark);
}
.mega__inner {
  padding: 2rem 1.5rem;
}
.bg-green {
  background: #e6f7f0;
  color: #00a86b;
}
.bg-purple {
  background: #f3f0ff;
  color: #7048e8;
}
.bg-yellow {
  background: #fff9db;
  color: #fcc419;
}
.bg-red-light {
  background: #fff5f5;
  color: #ff6b6b;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.label {
  display: inline-block; 
  font-size: .7rem; 
  font-weight: 700;
  text-transform: uppercase; 
  letter-spacing: .12em; 
  color: var(--red); 
  margin-bottom: .75rem;
}
.sec-label {
  color: var(--red);
  font-weight: 400;
  margin-bottom: 18px;
}
.sec-head {
  text-align: center;
  margin: 3.5rem 0;
}
.sec-head h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
  color: var(--dark);
  margin-top: 1.5rem;
  line-height: 1.35;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-red:hover {
  background: #d42020;
  transform: translateY(-1px);
}
.btn-red-full {
  width: 100%;
  justify-content: center;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  color: var(--dark);
  padding: .78rem 1.75rem;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
}
.btn-white:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
}

/* ─── HERO SECTION (RED) ────────────────────────────────── */
.hero {
  position: relative;
  padding: 9rem 0 5.5rem;
  background: #f53333;
  overflow: hidden;
  margin-top: 4rem;
}
.hero__dots {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .9) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__glow {
  position: absolute;
  top: -3rem;
  right: -5rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  filter: blur(80px);
}
.hero__img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  overflow: hidden;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}
.hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 2rem;
  transition: color .2s;
}
.hero__breadcrumb:hover {
  color: #fff;
}
.hero__breadcrumb svg {
  width: 15px;
  height: 15px;
}
.hero__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero__icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero__tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 600px;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero__stat-lbl {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .2rem;
}

/* ─── CYBER OVERVIEW SECTION ─────────────────────────────── */
.cyber-overview {
  padding: 100px 0;
  background: #fdf6f6;
}
.overview-card {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
}
.overview-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-top: 18px;
}
.security-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 35px;
}
.security-point {
  padding: 16px 18px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  display: grid;
  justify-content: center;
}

.overview-image {
  position: relative;
}
.det-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 28px;
}
.image-badge {
  position: absolute;
  background: #111;
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}
.image-badge strong {
  display: block;
  color: var(--red);
  font-size: 22px;
  margin-bottom: 4px;
}
.badge-1 {
  bottom: 25px;
  left: -25px;
}
.badge-2 {
  top: 25px;
  right: -25px;
}

/* ─── PROVEN DELIVERY PROCESS (HOW WE WORK) ──────────────── */
.process-steps { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 2rem; 
  padding-top: 30px;
}
.process-step { 
  text-align: center; 
}
.process-step__num {
  width: 3.5rem; 
  height: 3.5rem; 
  border-radius: .875rem; 
  background: var(--red); 
  color: #fff;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1.15rem; 
  font-weight: 800; 
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(245, 51, 51, .35);
}
.process-step h3 { 
  font-size: 1rem; 
  font-weight: 700; 
  margin-bottom: .5rem; 
}
.process-step p { 
  font-size: .85rem; 
  color: var(--gray-500); 
  line-height: 1.65; 
}

/* ─── APPROACH V2 SECTION ────────────────────────────────── */
.approach-v2 {
  padding: 100px 0;
  background: linear-gradient(180deg, #fdf6f6 0%, #fff8f8 100%);
  border-top: 1px solid #f2e5e5;
  border-bottom: 1px solid #f2e5e5;
}
.approach-head {
  text-align: center;
  max-width: 850px;
  margin: auto auto 70px;
}
.approach-head p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
  padding-top: 18px;
}
.approach-flow {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}
.flow-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  transition: .3s;
}
.flow-card:hover {
  border-color: #f0bcbc;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(217, 37, 37, .08);
}
.flow-step {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.flow-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  font-weight: 500;
  color: #111;
}
.flow-card p {
  margin: 0;
  color: #666;
  font-size: 15px;
}
.flow-arrow {
  font-size: 50px;
  font-weight: 200;
  color: var(--red);
  text-align: center;
}

/* ─── OTHER SERVICES SECTION ─────────────────────────────── */
.other-sec {
  background: #fff;
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.other-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  transition: transform .3s, box-shadow .3s;
}
.other-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.other-card:hover .oc-title {
  color: var(--red);
}
.oc-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .625rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oc-icon svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}
.oc-info {
  flex: 1;
}
.oc-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--dark);
  transition: color .2s;
}
.oc-tag {
  font-size: .72rem;
  color: var(--gray-500);
  margin-top: .2rem;
}
.oc-chev {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: color .2s;
}
.other-card:hover .oc-chev {
  color: var(--red);
}

/* ─── USE CASE CARDS ─────────────────────────────────────── */
.usecase-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
  background: #fdf6f6;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 28px;
  transition: .3s;
}
.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}
.usecase-card.reverse {
  grid-template-columns: 1fr 420px;
}
.usecase-image {
  overflow: hidden;
  border-radius: 18px;
}
.usecase-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: .4s;
}
.usecase-card:hover img {
  transform: scale(1.04);
}
.usecase-tag {
  display: inline-block;
  padding: 8px 14px;
  background: #fff1f1;
  color: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.usecase-content h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.usecase-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-600);
}

/* ─── AI SERVICES V2 SECTION ─────────────────────────────── */
.ai-services-v2 {
  background: #0e0e10;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ai-services-v2::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -250px;
  width: 700px;
  height: 700px;
  background: rgba(220, 38, 38, .08);
  border-radius: 50%;
  filter: blur(140px);
}
.dark {
  text-align: center;
  max-width: 900px;
  margin: auto auto 70px;
}
.dark .sec-label {
  color: #ff5a5a;
}
.dark h2 {
  color: #fff;
}
.ai-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.ai-service-grid.grid-6 .ai-service-card { grid-column: span 2; }
.ai-service-grid.grid-5 .ai-service-card { grid-column: span 2; }
.ai-service-grid.grid-5 .ai-service-card:nth-child(4),
.ai-service-grid.grid-5 .ai-service-card:nth-child(5) { grid-column: span 3; }
.ai-service-grid.grid-4 .ai-service-card { grid-column: span 3; }
.ai-service-grid.grid-3 .ai-service-card { grid-column: span 2; }
.ai-service-grid.grid-2 .ai-service-card { grid-column: span 3; }
.ai-service-grid.grid-1 .ai-service-card { grid-column: 2 / span 4; }

.ai-service-card {
  position: relative;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 30px;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}
.ai-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 90, .4);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .45), 0 0 30px rgba(255, 90, 90, .15);
}
.service-no {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 58px;
  font-weight: 200;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  z-index: 2;
}
.service-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 24px;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ai-service-card:hover .service-img {
  transform: scale(1.08);
}
.ai-service-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
  display:grid;
  justify-content: center;
}
.ai-service-card p {
  color: #b6b6b6;
  line-height: 1.8;
  font-size: 15px;
}

/* ─── NAVIGATION & FOOTER LINKS ──────────────────────────── */
.mobile-nav-link {
  display: block;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.15s, background 0.15s;
  width: 100%;
  text-align: left;
}
.mobile-nav-link:hover {
  color: var(--red);
  background: #fff1f1;
}
.cta-banner {
  background: var(--red);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 0.4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 2rem;
}

/* ─── GLOBAL RESPONSIVE MEDIA QUERIES ────────────────────── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 991px) {
  .overview-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .overview-content h2 {
    font-size: 30px;
  }
  .det-img {
    height: 400px;
  }
  .image-badge {
    display: none;
  }
  .usecase-card,
  .usecase-card.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .usecase-content h3 {
    font-size: 20px;
  }
  .usecase-image img {
    height: 220px;
  }
  .ai-service-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ai-service-grid .ai-service-card,
  .ai-service-grid.grid-6 .ai-service-card,
  .ai-service-grid.grid-5 .ai-service-card,
  .ai-service-grid.grid-5 .ai-service-card:nth-child(4),
  .ai-service-grid.grid-5 .ai-service-card:nth-child(5),
  .ai-service-grid.grid-4 .ai-service-card,
  .ai-service-grid.grid-3 .ai-service-card,
  .ai-service-grid.grid-2 .ai-service-card {
    grid-column: span 1 !important;
  }
  .ai-service-grid.grid-5 .ai-service-card:nth-child(5) {
    grid-column: span 2 !important;
  }
  .ai-service-grid.grid-3 .ai-service-card:nth-child(3) {
    grid-column: span 2 !important;
  }
  .ai-service-grid.grid-1 .ai-service-card {
    grid-column: span 2 !important;
  }
}

@media (max-width: 768px) {
  .nav,
  .header__cta,
  .hdr__cta,
  .hero__img-wrap {
    display: none;
  }
  .overview-grid,
  .cap-grid,
  .other-grid {
    grid-template-columns: 1fr;
  }
  .cs-box {
    flex-direction: column;
    gap: 1.5rem;
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .ai-service-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .ai-service-grid .ai-service-card,
  .ai-service-grid.grid-6 .ai-service-card,
  .ai-service-grid.grid-5 .ai-service-card,
  .ai-service-grid.grid-5 .ai-service-card:nth-child(4),
  .ai-service-grid.grid-5 .ai-service-card:nth-child(5),
  .ai-service-grid.grid-4 .ai-service-card,
  .ai-service-grid.grid-3 .ai-service-card,
  .ai-service-grid.grid-3 .ai-service-card:nth-child(3),
  .ai-service-grid.grid-2 .ai-service-card,
  .ai-service-grid.grid-1 .ai-service-card {
    grid-column: span 1 !important;
  }
  .ai-service-card {
    padding: 24px !important;
  }
  .det-img {
    height: 280px !important;
  }
}

@media(max-width: 767px) {
  .security-points {
    grid-template-columns: 1fr;
  }
  .overview-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .svc-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ─── SERPENTINE TIMELINE (MODEL DEVELOPMENT) ───────────── */
.serpentine-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  padding: 40px 0;
  margin: 40px auto;
  max-width: 1200px;
}

/* Wrapper for card layout and entrance animation */
.approach-card-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(-90deg);
}

/* Card Container */
.approach-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Card Image Box */
.card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #f5f5f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card Body Content */
.card-inner {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-inner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card-inner p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Entrance Flip Animation Triggered when scrolled into viewport */
.serpentine-timeline.active .approach-card-wrap {
  animation: flipInY 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Staggered Delay offsets (0.3s between each card) */
.serpentine-timeline.active .card-1 { animation-delay: 0.1s; }
.serpentine-timeline.active .card-2 { animation-delay: 0.5s; }
.serpentine-timeline.active .card-3 { animation-delay: 0.9s; }
.serpentine-timeline.active .card-4 { animation-delay: 1.3s; }
.serpentine-timeline.active .card-5 { animation-delay: 1.7s; }

@keyframes flipInY {
  0% {
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
  100% {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
}

/* Hover Zoom & Accent Glow Effects */
.approach-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(245, 51, 51, 0.08);
  border-color: rgba(245, 51, 51, 0.25);
}

.approach-card:hover h3 {
  color: var(--red);
}

.approach-card:hover .card-image img {
  transform: scale(1.08);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .serpentine-timeline {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    padding: 30px 0;
  }
}

@media (max-width: 600px) {
  .serpentine-timeline {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}
/* =============================================================== */
/*  GLOBAL LEFT ALIGNMENT OVERRIDE                                 */
/* =============================================================== */
* {
  text-align: left !important;
}

.sec-head, .heading, .values__head, .timeline__head, .culture__head,
.leadership__head, .offices__head, .faq__head, .benefits-deep__head,
.l-hero__content, .svc-hero__content, .nps-block, .leader, .no-role,
.recog-badge, .security-point, .security-points, .cta-banner, .cta, .cta-band,
.cta-banner__inner, .cta__inner, .cta-band__inner, .cta-band__btns, .cta__btns,
.overview-content, .det-img, .overview-card, .sec-head.dark, .community-wrapper,
.ai-service-card h3, .roi-head, .roi-cell, .cs-story-card,
.cs-story-content, .process-step, .test-card, .tab-header, .feature-cell__body,
.stat-tile, .roi-label {
  margin-left: 0 !important;
  margin-right: auto !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.cs-tech-tag, .tool-item {
  margin-left: unset !important;
  margin-right: unset !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}
