* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #fff;
  color: #111;
}


.healthcare-hero-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #d40000 0%, #b90045 100%);
  text-align: center;
}

.healthcare-hero-inner {
  max-width: 1200px;
  margin: auto;
}

.healthcare-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 35px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f690b4;
}

.healthcare-icon-box i {
  font-size: 38px;
  color: #ffffff;
}

.healthcare-title {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 22px;
}

.healthcare-title.new {
  color: #ffffff;
  font-size: 60px;
  letter-spacing: 1px;
}

.healthcare-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 38px;
}

.healthcare-subtitle.new {
  color: #fddbdb;
  font-size: 30px;
  margin-bottom: 28px;

}

.healthcare-text {
  font-size: 18px;
  line-height: 1.7;
  color: #ffe5e5;
  max-width: 900px;
  margin: 0 auto 22px;
}

/* Responsive */
@media (max-width: 768px) {
  .healthcare-title {
    font-size: 38px;
  }

  .healthcare-subtitle {
    font-size: 22px;
  }

  .healthcare-text {
    font-size: 16px;
  }
}

/* Initial hidden state */
.healthcare-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s ease, transform 1s ease;
}

/* When visible */
.healthcare-fade.show {
  opacity: 1;
  transform: translateY(0);
}


/* Next section */
.industry-challenges-section {
  padding: 60px 20px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: hidden;
}

.industry-challenges-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.industry-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 16px;
}

.industry-subtitle {
  font-size: 20px;
  color: #475569;
  max-width: 800px;
  margin: 0 auto 70px;
  line-height: 1.6;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.industry-card {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px 30px;
  text-align: left;
}

.industry-icon {
  width: 54px;
  height: 54px;
  background: #e00000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.industry-icon i {
  color: #ffffff;
  font-size: 26px;
}

.industry-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
}

.industry-card ul {
  padding-left: 15px;
}

.industry-card ul li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industry-cards {
    grid-template-columns: 1fr;
  }

  .industry-title {
    font-size: 38px;
  }
}

/* ===== Animation base ===== */
.industry-animate {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.6s ease, transform 2.3s ease;
}

.industry-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Card direction variations */
.industry-card.from-left {
  transform: translateX(-80px);
}

.industry-card.from-right {
  transform: translateX(80px);
}

.industry-card.from-bottom {
  transform: translateY(80px);
}

.industry-card.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ===== Hover effect ===== */
.industry-card {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.industry-card:hover {
  box-shadow: 0 8px 10px rgba(15, 23, 42, 0.12);
  transform: translateY(-6px);
}

/*===================== NEXT SECTION ==================== */
.cta-red-section {
  background: linear-gradient(90deg, #e0002d, #c80044);
  padding: 60px 20px;
  color: #ffffff;
}

.cta-red-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Title */
.cta-red-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Subtitle */
.cta-red-subtitle {
  font-size: 21px;
  opacity: 0.95;
  margin-bottom: 50px;
}

/* Buttons wrapper */
.cta-red-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Common button */
.cta-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  min-width: 420px;
  justify-content: center;
  transition: all 0.3s ease;
}

/* White button */
.cta-btn-white {
  background: #ffffff;
  color: #e0002d;
}

/* Outline button */
.cta-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 16px;
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Arrow */
.cta-arrow {
  margin-left: auto;
  font-size: 20px;
}

/* Bottom link */
.cta-red-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.95;
}


/* Responsive */
@media (max-width: 768px) {
  .cta-red-title {
    font-size: 40px;
  }

  .cta-btn {
    min-width: 100%;
  }
}

.cta-red-link {
  padding: 10px 16px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.cta-red-link:hover {
  color: #f6c6d6;
}

/* Arrow smooth animation */
.cta-btn-white .cta-arrow {
  transition: transform 0.3s ease;
}

/* Hover panna arrow mattum move */
.cta-btn-white:hover .cta-arrow {
  transform: translateX(6px);
}

/* ============= NEXT SECTION ======================= */

/* Next section */
.retail-solutions-section {
  padding: 60px 20px;
  background: #f7fafc;
}

.retail-solutions-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.retail-solutions-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.retail-solutions-subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
}

/* Main box */
.retail-solution-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

/* Header */
.retail-solution-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 35px;
}

.retail-solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
}

.retail-solution-icon.green {
  background: #16a34a;

}

.retail-solution-icon.purple {
  background: #7e23c3;

}

.retail-solution-icon.orange {
  background: #c34b23;

}

.retail-solution-icon.indigo {
  background: #2343c3;

}

.retail-solution-heading {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

/* Grid */
.retail-solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 25px;
}

/* Cards */
.retail-solution-card {
  border-radius: 16px;
  padding: 25px 22px;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.light-blue-card {
  background: #fafafa;
}

.light-green-card {
  background: #fafafa;
}

.light-purple-card {
  background: #fafafa;
}

.light-indigo-card {
  background: #fafafa;
}

.light-orange-card {
  background: #fafafa;
}

.blue-card {
  background: linear-gradient(145deg, #eef5ff, #f8fbff);
  border-color: #c7dcff;
}

.green-card {
  background: #f3fff7;
  border-color: #c6f3d4;
}

.dark-green-card {
  background: linear-gradient(145deg,
      #ecfdf5,
      #f6fffa);

  border-color: #c6f3d4;
}

.purple-card {
  background: linear-gradient(145deg, #f7eeff, #fbf8ff);
  border-color: #ddc6f3;
}

.indigo-card {
  background: linear-gradient(145deg, #efeeff, #f8f8ff);
  border-color: #cbc6f3;
}

.orange-card {
  background: linear-gradient(145deg, #fff4ee, #fffbf8);
  border-color: #f3d7c6;
}

/* Titles */
.card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.card-title.black {
  color: #0f172a;
}

.card-title.blue {
  color: #2563eb;
}

.card-title.green {
  color: #0e672e;
}

.card-title.dark-green {
  color: #139a32;
}

.card-title.purple {
  color: #8f25eb;
}

.card-title.indigo {
  color: #3730a3;
}

.card-title.orange {
  color: #9a3412;
}

/* Lists */
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 6px;
  position: relative;
  line-height: 1.4;
  display: flex;
  gap: 10px
}

.blue-check li i {
  color: #2563eb;
  font-weight: 700;
  font-size: 16px;
}

.green-check li i {
  color: #16a34a;
  font-weight: 800;
}

.purple-check li i {
  color: #8b25eb;
  font-weight: 700;
  font-size: 16px;
}

.indigo-check li i {
  color: #3730a3;
  font-weight: 700;
  font-size: 16px;
}

.orange-check li i {
  color: #d08e13;
  font-weight: 700;
  font-size: 16px;
}

/* Technology text */
.technology-text {
  font-size: 14px;
  color: #475569;
  margin-top: 18px;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .retail-solution-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Scroll Animation Base ===== */
.retail-solution-card {
  opacity: 0;
  transform: translateX(70px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    box-shadow 0.35s ease;
}

/* When visible */
.retail-solution-card.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Hover: Bottom shadow only ===== */
.retail-solution-card:hover {
  box-shadow: 0 16px 20px -16px rgba(15, 23, 42, 0.28);
}

/* ====================== NEXT SECTION =================== */

/* Next section */
.nk-usecase-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.nk-usecase-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #0f172a;
}

.nk-usecase-card {
  max-width: 1050px;
  margin: auto;
  padding: 50px;
  border-radius: 22px;
  background: #e0003b;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.nk-usecase-heading {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: left;
}

.nk-usecase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.nk-usecase-block h4,
.nk-usecase-right h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-align: left;
  color: #e6ebfe;
}

.nk-usecase-block p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  text-align: left;
  margin-bottom: 15px;
  color: #eef2ff;
}

.nk-usecase-right ul {
  padding-left: 18px;
}

.nk-usecase-right li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: left;
  color: #eef2ff;
}

.nk-usecase-divider {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.nk-results-title {
  font-size: 24px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #e6ebfe;
}

.nk-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.nk-result-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nk-result-card h3 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #e6ebfe;
}

.nk-result-card p {
  font-size: 14px;
  opacity: 0.9;
  color: #eef2ff;
}

/* Responsive */
@media (max-width: 900px) {
  .nk-usecase-content {
    grid-template-columns: 1fr;
  }

  .nk-results-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATION BASE ===== */
.nk-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.nk-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slight delay helpers (smooth stagger) */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}

.delay-5 {
  transition-delay: 0.75s;
}

.delay-6 {
  transition-delay: 0.9s;
}


/* ===================== NEXT SECTION ====================== */

/* ====================== NEXT SECTION ================= */
.nk-tech-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.nk-tech-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.nk-tech-subtitle {
  font-size: 19px;
  color: #475569;
  margin-bottom: 55px;
}

/* Grid */
.nk-tech-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.nk-tech-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 28px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.tech-group {
  margin-top: 8px;
  display: flex;
  gap: 13px;
}

.nk-tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.08);
}

/* Icon */
.nk-tech-card i {
  font-size: 22px;
  color: #eb2525;
  margin-bottom: 14px;
  display: inline-block;
}

/* Text */
.nk-tech-card h3 {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.nk-tech-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .nk-tech-grid {
    grid-template-columns: 1fr;
  }
}

.nk-animate {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s ease, transform 1s ease;
}

.nk-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}

.delay-5 {
  transition-delay: 0.75s;
}

.delay-6 {
  transition-delay: 0.9s;
}



/* ================= NEXT SECTION ========================= */
.compliance-sec-new {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
  overflow-x: hidden;
}

.compliance-title-new {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.compliance-subtitle-new {
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
}

.compliance-cards-wrap-new {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* COMMON CARD */
.compliance-card-new {
  width: 580px;
  padding: 40px 40px;
  border-radius: 18px;
  text-align: left;
  border: 1px solid;
  opacity: 0;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

.compliance-card-new h3 {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compliance-card-new ul {
  list-style: none;
  padding: 0;
}

.compliance-card-new li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #334155;
  margin-bottom: 15px;
}

/* LEFT – HIPAA */
.hipaa-card-new {
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  border-color: #dbeafe;
  transform: translateX(-80px);
}

.hipaa-card-new h3 i,
.hipaa-card-new li i {
  color: #2563eb;
}

/* RIGHT – SECURITY */
.security-card-new {
  background: linear-gradient(180deg, #fff5f5, #ffecec);
  border-color: #fecaca;
  transform: translateX(80px);
}

.security-card-new h3 i,
.security-card-new li i {
  color: #dc2626;
}

/* ACTIVE STATE */
.compliance-card-new.show-new {
  opacity: 1;
  transform: translateX(0);
}