/* ---------- YOUR DESKTOP STYLES (UNCHANGED) ---------- */
.industries-text-center {
  text-align: center;
}

/* ––– Hero ––– */
.hero-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.hero-image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.hero-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
}

.hero-overlay-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
}

.hero-overlay-content .lead {
  max-width: 480px;
  color: #1e293b;
}

/* ––– Feature Tiles ––– */
.feature-tile {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-tile .feature-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 2rem 2rem;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.10) 100%);
}

.feature-tile .feature-tile-overlay h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.2rem;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.7);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.feature-tile .feature-tile-overlay p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
}

.feature-tile .feature-tile-overlay .feature-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.92);
  color: #fff;
  font-size: 1.0rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 50rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  align-self: flex-start;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* ––– Solution Row ––– */
.solution-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.solution-row:hover {
  transform: translateY(-4px);
  border-color: #FF6B35;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 12px 32px rgba(0, 0, 0, 0.18);
}

.solution-row .solution-icon {
  flex-shrink: 0;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.2rem;
  background: rgba(255, 107, 53, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FF6B35;
}

.solution-row .solution-content h6 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.1rem;
}

/* ––– Story Strip ––– */
.story-strip {
  display: flex;
  flex-direction: column;
  border-radius: 1.75rem;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-strip:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 12px 32px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.story-strip .story-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.story-strip .story-body {
  padding: 1.5rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-strip .story-body .story-badge {
  align-self: flex-start;
  background: #FF6B35;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.3rem 1.2rem;
  border-radius: 50rem;
  margin-top: 0.75rem;
}

/* ––– Timeline Step ––– */
.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.timeline-step:hover {
  transform: translateY(-4px);
  border-color: #FF6B35;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10), 0 12px 32px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.timeline-step .step-number {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #FF6B35;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.timeline-step .step-img {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;
  object-fit: cover;
  margin-left: auto;
}

/* ––– Tech Pill ––– */
.tech-pill {
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tech-pill:hover {
  transform: translateY(-4px);
  border-color: #FF6B35;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.10), 0 18px 40px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tech-pill .tech-icon {
  font-size: 2.9rem;
  color: #FF6B35;
  margin-bottom: 0.6rem;
}

.tech-pill h5 {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.3rem;
}

.tech-pill p {
  color: #475569;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.tech-pill .tech-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.12);
  color: #FF6B35;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.2rem 1.2rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

/* ––– Why Choose Us ––– */
.choose-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04); */
}

.choose-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.choose-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.choose-feature:hover {
  transform: translateY(-3px);
  border-color: #FF6B35;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.10), 0 18px 40px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.choose-feature .choose-check {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: #FF6B35;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.choose-feature .choose-text h6 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1rem;
}

.choose-feature .choose-text p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ––– Hero 2 ––– */
.hero-2 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10px 5% 60px;
  position: relative;
  /* background: #FF6B35; */
  /* background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff4ef 35%,
        #ffd8c9 70%,
        #FF6B35 100%
    ); */

  /* background: linear-gradient(
        to right,
        #ffffff,
        #fff3ee,
        #ffe0d2,
        #FF6B35
    ); */

  /* background:
        radial-gradient(circle at top left, rgba(255,107,53,0.18), transparent 40%),
        radial-gradient(circle at bottom right, rgba(0,0,0,0.08), transparent 40%),
        linear-gradient(135deg, #ffffff, #fff7f3); */

  /* background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff6f2 45%,
        #ffd8c9 80%,
        #2b2b2b 100%
    ); */

}

.hero-2-left {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-2-tag {
  display: inline-block;
  background: #ff6b3560;
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid #FF6B35;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.hero-2 h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -2px;

}

.hero-2 h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero-2 h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: #FFD4B8;
  z-index: -1;
  opacity: 0.6;
}

.hero-2 p {
  /* font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 500px; */

  font-size: 1.25rem;
  font-weight: 400;

}

.hero-2-features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
}

.feature-item::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: #FF6B35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
}

.hero-2-btn {
  background: #fff;
  color: #FF6B35;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-2-right {
  position: relative;
  z-index: 2;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-shape {
  position: absolute;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.geo-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #c7580e, #df5612);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  animation: rotate1 20s linear infinite;
}

.geo-2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #ffb889c7, #ffd4b8bd);
  top: 20%;
  left: 30%;
  transform: rotate(-20deg);
  animation: float3 8s ease-in-out infinite;
}

.geo-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #C94A1A, #8b33108a);
  bottom: 25%;
  right: 20%;
  /* border-radius: 50%; */
  animation: float3 10s ease-in-out infinite reverse;
}

.geo-4 {
  width: 150px;
  height: 150px;
  background: #d4521e8a;
  top: 30%;
  right: 10%;
  /* border-radius: 50%; */
  animation: float3 6s ease-in-out infinite;
}

@keyframes rotate1 {
  from {
    transform: translate(-50%, -50%) rotate(15deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(375deg);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-20px) rotate(var(--r, 0deg));
  }
}

.geo-2 {
  --r: -20deg;
}

/* ––– Industries ––– */
.industries-d-flex {
  display: flex;
}

.industries-timeline-dot {
  background: #FF6B35;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.25);
  flex-shrink: 0;
}

.industries-gradient-text {
  background: linear-gradient(135deg, #FF6B35 0%, #f97316 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industries-gap-3 {
  gap: 2rem;
}

/* ––– Healthcare Tabs ––– */
.healthcare-tabs-list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.healthcare-tab-item {
  margin-bottom: 15px;
}

.healthcare-tab-link {
  display: block;
  padding: 22px 25px;
  border: 1px solid rgba(255, 107, 53, .15);
  border-radius: 8px;
  transition: all .35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  color: #222 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.healthcare-tab-link:hover {
  transform: translateX(10px);
  border-color: #FF6B35;
}

.healthcare-tab-link.active {
  background: linear-gradient(135deg, #FF6B35, #ff875d) !important;
  color: #fff !important;
  border-color: transparent;
}

.healthcare-tab-link p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* ––– Solution Card ––– */
.solution-card {
  position: relative;
  min-height: 650px;
  border-radius: 8px;
  overflow: hidden;
  padding: 60px;
  background: linear-gradient(135deg, #FF6B35, #ff875d, #ff9d7b);
  color: #fff;
  box-shadow: 0 30px 80px rgba(255, 107, 53, .25);
}

.solution-card::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  top: -100px;
  right: -100px;
  background: rgba(255, 255, 255, .12);
  animation: floatCircle 8s ease-in-out infinite;
}

.solution-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -70px;
  border-radius: 35px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, .08);
  animation: floatSquare 10s ease-in-out infinite;
}

@keyframes floatCircle {
  50% {
    transform: translateY(30px);
  }
}

@keyframes floatSquare {
  50% {
    transform: rotate(45deg) translateY(-25px);
  }
}

.solution-number {
  font-size: 130px;
  font-weight: 900;
  opacity: .15;
  line-height: 1;
  margin-bottom: 10px;
}

.solution-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
}

.solution-description {
  font-size: 1.4rem;
  line-height: 1.9;
  margin-bottom: 40px;
  position: relative;
}

.solution-features {
  position: relative;
}

.solution-features div {
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 600;
}

.solution-features div::before {
  content: "✓";
  margin-right: 12px;
  font-weight: 700;
}

/* ––– Service Items ––– */
.container {
  max-width: 1500px;
  margin: 0 auto;
}

.service-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-item {
  padding: 40px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 100px;
  transition: all 0.4s ease;
  border-bottom: 1px solid #FF6B35;
  overflow: hidden;
  cursor: pointer;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 4px;
  background: transparent;
}

/* .service-item:hover {
    min-height: 250px;
    padding: 50px 35px;
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 10;
    background: transparent;
} */

/* .service-item:active {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(0.98);
} */

.service-item .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
  transform: scale(1.1);
}

/* .service-item:hover .bg-image {
    opacity: 1;
    transform: scale(1);
} */

.service-item .bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transform: translateZ(0);
}

.service-item .content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 30px;
  transition: transform 0.4s ease;
}

.service-item:hover .content {
  transform: translateZ(20px);
}

.service-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item .number {
  font-size: 20px;
  font-weight: bold;
  min-width: 50px;
  transition: color 0.3s;
}

.service-item .title {
  font-size: 22px;
  font-weight: bold;
  color: currentColor;
  min-width: 280px;
  transition: color 0.3s;
}

.service-item .desc {
  font-size: 16px;
  color: currentColor;
  flex: 1;
  transition: color 0.3s;
}

.service-item .tag {
  font-size: 14px;
  font-weight: bold;
  color: #FF6B35;
  background: rgba(255, 94, 0, 0.212);
  padding: 6px 16px;
  border-radius: 8px;
  min-width: 100px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 94, 0, 0.212);
}

.service-item:hover {
  min-height: 250px;
  padding: 50px 35px;
}

.service-item:hover .bg-image {
  opacity: 1;
}

.service-item:hover .title,
.service-item:hover .desc,
.service-item:hover .number {
  color: white;
}

.service-item:hover .number {
  color: rgba(255, 255, 255, 0.7);
}

.service-item:hover .tag {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ––– Numbers / Stats ––– */
@keyframes particleFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-30px, -40px) scale(1.6);
  }
}

/* ––– Story Row / Success Stories ––– */









.story-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: stretch;
  min-height: 580px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.story-card {
  flex: 0 0 100px;
  height: 580px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  transition:
    flex 2.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 1.5s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background-color: #1a1a1a;
}

.story-card .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card .glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(4px);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card .story-heading-collapsed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: white;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9);
  z-index: 2;
  white-space: nowrap;
  transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.95;
}

.story-card.expanded {
  flex: 1 1 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.story-card.expanded .card-bg {
  transform: scale(1.08);
}

.story-card.expanded .glass-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.85) 100%);
  backdrop-filter: blur(6px);
}


.success-card {
  position: absolute;
  z-index: 2;
  width: 50%;
  height: 60%;
  display: flex;
  align-items: flex-end;
  padding: 0.8rem 1.5rem 2rem 1.5rem;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #58585865;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card:not(.expanded) .success-card {
  display: none;
}

.story-card.expanded .success-card {
  display: flex;
}

.story-card .success-card {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.story-card.expanded .success-card {
  opacity: 1;
}


.story-card .card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.8rem;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.story-card.expanded .card-content {
  opacity: 1;
}

.story-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  color: #ffffff;
}

.story-heading {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.story-desc {
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 28ch;
  margin-bottom: 1rem;
  color: #ffffff;
}

.story-meta {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
}

.story-card.expanded .story-heading-collapsed {
  opacity: 0;
  pointer-events: none;
}













/* 
.story-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch;
    min-height: 420px;
    padding: 20px;
}

.story-card {
    flex: 0 0 100px;
    height: 580px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.5s ease,
                border-radius 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background-color: #1a1a1a;
    will-change: flex;
    display: flex;
    align-items: stretch;
    transform-origin: left center;
}

.story-card .card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card .glass-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 8px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card.expanded .glass-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.story-card .card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem 1.5rem 2rem 1.5rem;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    transition: padding 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-items: flex-start;
}

.story-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 8px;
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-badge i {
    margin-right: 6px;
    font-size: 0.7rem;
}

.story-card .story-heading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.5);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.3rem;
    letter-spacing: 2px;
    opacity: 0.95;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card .story-desc {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 28ch;
    opacity: 0;
    color: #f0f0f0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
    margin-bottom: 0.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateX(-20px);
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.story-meta {
    font-size: 1.2rem;
    opacity: 0;
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s,
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
    transform: translateX(-20px);
}

.story-card.expanded {
    flex: 1 1 280px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-radius: 8px;
    z-index: 5;
}

.story-card.expanded .card-bg {
    transform: scale(1.08);
}

.story-card.expanded .story-heading {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    white-space: normal;
    font-size: 2.6rem;
    letter-spacing: -0.01em;
    margin: 0 0 0.3rem 0;
    opacity: 1;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 0, 0, 0.5);
}

.story-card.expanded .story-desc {
    opacity: 0.95;
    transform: translateX(0);
}

.story-card.expanded .story-meta {
    opacity: 0.8;
    transform: translateX(0);
}

.story-card:not(.expanded) .story-badge {
    display: none;
}

.story-card .card-content {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
}

.story-card:not(.expanded) .card-content {
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
}

.story-card:not(.expanded) .story-heading {
    margin-top: 10.5rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 0, 0, 0.6);
}

.story-card:not(.expanded) .story-heading-collapsed {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.63);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.3rem;
    letter-spacing: 2px;
    opacity: 0.95;
}

.success-card {
    position: absolute;
    z-index: 2;
    width: 50%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    padding: 0.8rem 1.5rem 2rem 1.5rem;
    left: 1.5rem;
    bottom: 1.5rem;
    background: #58585865;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-card:not(.expanded) .success-card {
    display: none;
}

.story-card.expanded .success-card {
    display: flex;
}

.story-card .success-card {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.story-card.expanded .success-card {
    opacity: 1;
}
 */
































/* ––– Timeline Cards ––– */
.timeline-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 200px;
  flex: 1 1 calc(25% - 1.5rem);
  margin: 10px;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 50%, rgba(255, 107, 53, 0.15) 100%);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  pointer-events: none;
}

.timeline-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  pointer-events: none;
}

.timeline-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15), 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
}

.timeline-card:hover::before {
  left: 0;
}

.timeline-card:hover::after {
  left: 0;
}

.timeline-card .timeline-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.timeline-card .timeline-dot {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 8px;
  background: #FF6B35;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.timeline-card:hover .timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.timeline-card .timeline-text {
  flex: 1;
}

.timeline-card:hover .timeline-text h6 {
  color: #FF6B35;
}

.timeline-card:hover .timeline-text p {
  opacity: 1;
}

/* ––– Stat Block ––– */
.stat-block {
  border-radius: 2rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease;
}

.stat-block .stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #FF6B35;
  letter-spacing: -0.02em;
}

.stat-block .stat-icon {
  font-size: 3.2rem;
  font-weight: 800;
  color: #FF6B35;
  letter-spacing: -0.02em;
}

.stat-block .stat-label {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.2rem;
}


































/* ===================================================================
   RESPONSIVE STYLES — TABLET (≤768px) & MOBILE (≤480px)
   Append this AFTER your desktop CSS file.
   =================================================================== */

/* ===================================================================
   TABLET — max-width: 768px
   =================================================================== */
@media (max-width: 768px) {


  img {
    max-width: 100%;
  }

  /* ––– Hero ––– */
  .hero-image-wrapper img {
    height: 380px;
  }

  .hero-overlay-content {
    padding: 2rem 2rem;
  }

  .hero-overlay-content h1 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .hero-overlay-content .lead {
    max-width: 100%;
    font-size: 0.95rem;
  }

  /* ––– Feature Tiles ––– */
  .feature-tile {
    aspect-ratio: 3 / 2;
  }

  .feature-tile .feature-tile-overlay {
    padding: 1.2rem 1.4rem 1.5rem;
  }

  .feature-tile .feature-tile-overlay h4 {
    font-size: clamp(1.5rem, 4vw, 1.9rem);
  }

  .feature-tile .feature-tile-overlay p {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  }

  .feature-tile .feature-tile-overlay .feature-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
  }

  /* ––– Solution Row ––– */
  .solution-row {
    padding: 1rem 1.2rem;
    gap: 1rem;
  }

  .solution-row .solution-icon {
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.3rem;
  }

  /* ––– Story Strip ––– */
  .story-strip .story-img {
    height: 140px;
  }

  .story-strip .story-body {
    padding: 1.2rem 1.4rem 1.5rem;
  }

  /* ––– Timeline Step ––– */
  .timeline-step {
    padding: 1rem 1.2rem;
    gap: 1rem;
  }

  .timeline-step .step-number {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.2rem;
  }

  .timeline-step .step-img {
    width: 3rem;
    height: 3rem;
  }

  /* ––– Tech Pill ––– */
  .tech-pill {
    padding: 1.3rem 1rem;
  }

  .tech-pill .tech-icon {
    font-size: 2.2rem;
  }

  .tech-pill h5 {
    font-size: 1.1rem;
  }

  .tech-pill p {
    font-size: 0.95rem;
  }

  .tech-pill .tech-tag {
    font-size: 0.9rem;
  }

  /* ––– Why Choose Us ––– */
  .choose-image-wrap img {
    min-height: 320px;
  }

  .choose-feature {
    padding: 0.75rem 1rem;
  }

  /* ––– Hero 2 ––– */
  .hero-2 {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 6% 40px;
    text-align: center;
  }

  .hero-2-left {
    order: 1;
  }

  .hero-2 h1 {
    letter-spacing: -1px;
  }

  .hero-2 p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-2-features {
    justify-content: center;
  }

  .hero-2-btn {
    padding: 14px 32px;
    font-size: 1.2rem;
  }

  .hero-2-right {
    order: 2;
    height: 380px;
  }


  .geo-1 {
    width: 200px;
    height: 200px;
  }

  .geo-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 5%;
  }

  .geo-3 {
    width: 130px;
    height: 130px;
    top: 15%;
    right: 10%;
  }

  .geo-4 {
    width: 100px;
    height: 100px;
    top: 80%;
    right: 25%;
  }

  /* ––– Industries ––– */
  .industries-timeline-dot {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 0.95rem;
  }

  .industries-gap-3 {
    gap: 1.2rem;
  }

  /* ––– Healthcare Tabs ––– */
  .healthcare-tab-link {
    padding: 16px 18px;
  }

  .healthcare-tab-link p {
    font-size: 16px;
  }

  .healthcare-tab-link:hover {
    transform: translateX(4px);
  }

  /* ––– Solution Card ––– */
  .solution-card {
    min-height: 480px;
    padding: 35px;
  }

  .solution-number {
    font-size: 80px;
  }

  .solution-title {
    font-size: 30px;
  }

  .solution-description {
    font-size: 1.05rem;
    margin-bottom: 25px;
  }

  .solution-features div {
    font-size: 1rem;
  }

  /* ––– Container ––– */
  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  /* ––– Service Items ––– */
  .service-item {
    padding: 25px 20px;
    min-height: 80px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .service-item .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px 0;
    width: 100%;
  }

  .service-item .number {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .service-item .title {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .service-item .desc {
    font-size: 14px;
    width: 100%;
  }

  .service-item .tag {
    font-size: 12px;
    padding: 5px 12px;
    margin-top: 4px;
    align-self: flex-start;
  }

  /* ––– Story Row / Success Stories: switch expand direction top→bottom ––– */



  /* ––– Story Row / Success Stories: compact top-to-bottom accordion ––– */
  .story-row {
    /* padding: 8px;
    gap: 0.8rem; */
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: auto;
    padding: 10px;
    gap: 1rem;
    align-items: stretch;
  }

  .story-card {
    /* height: 90px;
    border-radius: 6px; */
    flex: none;
    width: 100%;
    height: 110px;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
    transform-origin: center top;
  }

  .story-card.expanded {
    /* height: 320px; */
    flex: none;
    height: 420px;
  }

  .story-card:not(.expanded) .story-heading {
    font-size: 1rem;
    margin-top: 0;
  }

  .story-card.expanded .story-heading {
    font-size: 1.5rem;
  }

  .story-card .story-heading-collapsed {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 1.4rem;
    letter-spacing: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .story-card.expanded .story-heading-collapsed {
    opacity: 0;
  }

  .story-card.expanded .success-card {
    opacity: 1;
  }

  .story-card .success-card {
    width: 80%;
    height: 55%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.7rem 1.2rem 1.5rem;
    bottom: 8%;
  }


  .success-card .card-content {
    padding: 10px;
    align-items: flex-start;
  }

  .story-card .story-desc {
    font-size: 0.9rem;
    max-width: 26ch;
    margin: 0 auto 0.2rem;
  }

  .story-meta {
    font-size: 0.85rem;
    justify-content: center;
  }

  .story-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  .success-card {
    width: 60%;
    height: 60%;
    padding: 0.6rem 1rem 1.2rem;
  }








  /* ––– Timeline Cards ––– */
  .timeline-card {
    flex: 1 1 calc(50% - 1.5rem);
    padding: 1.5rem 1.4rem;
    min-width: 160px;
  }

  .timeline-card .timeline-dot {
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
  }

  /* ––– Stat Block ––– */
  .stat-block {
    padding: 1.3rem 1rem;
  }

  .stat-block .stat-number,
  .stat-block .stat-icon {
    font-size: 2.4rem;
  }

  .stat-block .stat-label {
    font-size: 0.9rem;
  }
}


/* ===================================================================
   MOBILE — max-width: 480px
   =================================================================== */
@media (max-width: 480px) {

  /* ---------- Center everything, shrink globally ---------- */

  img {
    max-width: 100%;
    height: auto;
  }

  /* ––– Hero ––– */
  .hero-image-wrapper {
    border-radius: 1.2rem;
  }

  .hero-image-wrapper img {
    height: 230px;
  }

  .hero-overlay-content {
    padding: 1.2rem 1rem;
    align-items: center;
    text-align: center;
  }

  .hero-overlay-content h1 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .hero-overlay-content .lead {
    font-size: 0.85rem;
    margin: 0 auto;
  }

  /* ––– Feature Tiles ––– */
  .feature-tile {
    aspect-ratio: 4 / 3;
    border-radius: 1.1rem;
  }

  .feature-tile .feature-tile-overlay {
    padding: 0.9rem 1rem 1.1rem;
  }

  .feature-tile .feature-tile-overlay h4 {
    font-size: 1.3rem;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.7);
  }

  .feature-tile .feature-tile-overlay p {
    font-size: 0.85rem;
  }

  .feature-tile .feature-tile-overlay .feature-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.7rem;
    margin-top: 0.3rem;
  }

  /* ––– Solution Row ––– */
  .solution-row {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.6rem;
    border-radius: 1.1rem;
  }

  .solution-row .solution-icon {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.15rem;
  }

  .solution-row .solution-content h6 {
    font-size: 0.95rem;
  }

  /* ––– Story Strip ––– */
  .story-strip {
    border-radius: 1.1rem;
  }

  .story-strip .story-img {
    height: 110px;
  }

  .story-strip .story-body {
    padding: 1rem 1.1rem 1.3rem;
    align-items: center;
    text-align: center;
  }

  .story-strip .story-body .story-badge {
    align-self: center;
    font-size: 0.85rem;
    padding: 0.25rem 0.9rem;
  }

  /* ––– Timeline Step ––– */
  .timeline-step {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    gap: 0.6rem;
    border-radius: 1.1rem;
  }

  .timeline-step .step-number {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.05rem;
  }

  .timeline-step .step-img {
    margin-left: 0;
    width: 2.6rem;
    height: 2.6rem;
  }

  /* ––– Tech Pill ––– */
  .tech-pill {
    padding: 1.1rem 0.8rem;
    border-radius: 6px;
  }

  .tech-pill .tech-icon {
    font-size: 1.8rem;
  }

  .tech-pill h5 {
    font-size: 1rem;
  }

  .tech-pill p {
    font-size: 0.85rem;
  }

  .tech-pill .tech-tag {
    font-size: 0.8rem;
    padding: 0.15rem 0.9rem;
  }

  /* ––– Why Choose Us ––– */
  .choose-image-wrap img {
    min-height: 200px;
  }

  .choose-feature {
    padding: 0.6rem 0.8rem;
    gap: 0.7rem;
    text-align: left;
  }

  .choose-feature .choose-check {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }

  .choose-feature .choose-text h6 {
    font-size: 0.9rem;
  }

  .choose-feature .choose-text p {
    font-size: 0.75rem;
  }

  /* ––– Hero 2 ––– */
  .hero-2 {
    padding: 30px 5% 30px;
  }

  .hero-2-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-2 h1 {
    letter-spacing: -0.5px;
  }

  .hero-2-features {
    gap: 14px;
    justify-content: center;
  }

  .feature-item {
    font-size: 0.95rem;
  }

  .feature-item::before {
    width: 22px;
    height: 22px;
    font-size: 1rem;
  }

  .hero-2-btn {
    padding: 12px 26px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .hero-2-right {
    height: 240px;
  }


  .geo-1 {
    width: 150px;
    height: 150px;
  }

  .geo-2 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
  }

  .geo-3 {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 10%;
  }

  .geo-4 {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 10%;
  }

  /* declutter small screens */

  /* ––– Industries ––– */
  .industries-d-flex {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .industries-timeline-dot {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.85rem;
  }

  .industries-gap-3 {
    gap: 0.9rem;
  }

  /* ––– Healthcare Tabs ––– */
  .healthcare-tab-link {
    padding: 14px 16px;
    text-align: center;
  }

  .healthcare-tab-link p {
    font-size: 14px;
  }

  .healthcare-tab-link:hover {
    transform: none;
    /* avoid horizontal shift causing overflow on small screens */
  }

  /* ––– Solution Card ––– */
  .solution-card {
    min-height: 360px;
    padding: 20px;
    border-radius: 6px;
  }

  .solution-card::before {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
  }

  .solution-card::after {
    width: 140px;
    height: 140px;
    bottom: -40px;
    left: -40px;
  }

  .solution-number {
    font-size: 56px;
  }

  .solution-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .solution-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .solution-features div {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  /* ––– Container ––– */
  .container {
    padding: 0 12px;
  }

  /* ––– Service Items ––– */
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 15px;
    min-height: auto;
    gap: 8px;
    text-align: left;
  }

  .service-item:hover {
    min-height: auto;
    padding: 20px 15px;
    transform: none;
  }

  .service-item .content {
    /* flex-wrap: wrap;
    gap: 10px; */
    flex-direction: column;
    align-items: flex-start;
    gap: 6px 0;
    width: 100%;
  }

  .service-item:hover .content {
    transform: none;
  }

  .service-item .number {
    font-size: 16px;
    min-width: 30px;
    margin-bottom: 2px;
  }

  .service-item .title {
    font-size: 16px;
    min-width: 0;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .service-item .desc {
    font-size: 13px;
    color: #475569;
    width: 100%;
  }

  .service-item .tag {
    font-size: 11px;
    min-width: 70px;
    padding: 4px 10px;
    margin-top: 4px;
    align-self: flex-start;
  }

  /* ––– Story Row / Success Stories: compact top-to-bottom accordion ––– */
  .story-row {
    /* padding: 8px;
    gap: 0.8rem; */
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: auto;
    padding: 10px;
    gap: 1rem;
    align-items: stretch;
  }

  .story-card {
    /* height: 90px;
    border-radius: 6px; */
    flex: none;
    width: 100%;
    height: 110px;
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
    transform-origin: center top;
  }

  .story-card.expanded {
    /* height: 320px; */
    flex: none;
    height: 420px;
  }

  .story-card:not(.expanded) .story-heading {
    font-size: 1rem;
    margin-top: 0;
  }

  .story-card.expanded .story-heading {
    font-size: 1.5rem;
  }

  .story-card .story-heading-collapsed {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 1.4rem;
    letter-spacing: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .story-card.expanded .story-heading-collapsed {
    opacity: 0;
  }

  .story-card.expanded .success-card {
    opacity: 1;
  }

  .story-card .success-card {
    width: 90%;
    height: 55%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.7rem 1.2rem 1.5rem;
    bottom: 8%;
  }


  .success-card .card-content {
    padding: 10px;
    align-items: flex-start;
  }

  .story-card .story-desc {
    font-size: 0.9rem;
    max-width: 26ch;
    margin: 0 auto 0.2rem;
  }

  .story-meta {
    font-size: 0.85rem;
    justify-content: center;
  }

  .story-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  .success-card {
    width: 95%;
    height: 60%;
    padding: 0.6rem 1rem 1.2rem;
  }




  /* ––– Timeline Cards ––– */
  .timeline-card-wrapper {
    gap: 1rem;
  }

  .timeline-card {
    flex: 1 1 100%;
    /* single column on phones */
    min-width: 0;
    padding: 1.2rem 1rem;
    margin: 5px 0;
  }

  .timeline-card .timeline-content {
    gap: 1rem;
  }

  .timeline-card .timeline-dot {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 0.95rem;
  }

  /* ––– Stat Block ––– */
  .stat-block {
    padding: 1rem 0.8rem;
    border-radius: 1.2rem;
  }

  .stat-block .stat-number,
  .stat-block .stat-icon {
    font-size: 1.9rem;
  }

  .stat-block .stat-label {
    font-size: 0.8rem;
  }
}






.desktop-break {
  display: none;
}

@media (min-width: 768px) {
  .desktop-break {
    display: inline;
  }
}

@media (min-width: 480px) {
  .desktop-break {
    display: inline;
  }
}