*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter, Arial, sans-serif;
}

body{
  background:#fff;
  color:#111;
}


.finance-hero {
  background: linear-gradient(135deg, #9b1cff, #5a2dff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.finance-container {
  max-width: 1200px;
  margin: auto;
}

.finance-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 40px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 500;
  border:1px solid #d3a8f4;
}

.finance-title {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.finance-subtitle {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.finance-text {
  font-size: 19px;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .finance-title {
    font-size: 40px;
  }

  .finance-subtitle {
    font-size: 22px;
  }

  .finance-text {
    font-size: 17px;
  }
}
/* ===== FINANCE HERO ANIMATION SETUP ===== */
.finance-container > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

/* Active state */
.finance-container.animate > * {
  opacity: 1;
  transform: translateY(0);
}

/* One by one delay */
.finance-container.animate > :nth-child(1) { transition-delay: 0.2s; }
.finance-container.animate > :nth-child(2) { transition-delay: 0.4s; }
.finance-container.animate > :nth-child(3) { transition-delay: 0.6s; }
.finance-container.animate > :nth-child(4) { transition-delay: 0.8s; }
.finance-container.animate > :nth-child(5) { transition-delay: 1s; }
.finance-container.animate > :nth-child(6) { transition-delay: 1.2s; }


/* Next section */
.sc-section {
  padding: 60px 20px;
  background: #ffffff;
  overflow-x: hidden;

}

.sc-container {
  max-width: 1200px;
  margin: auto;
}

.sc-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.sc-subtitle {
  text-align: center;
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
}

/* Grid */
.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Cards */
.sc-card {
  border-radius: 20px;
  padding: 36px;
}

.sc-card-security {
  background: #fff5f5;
  border: 1px solid #fecaca;
}

.sc-card-compliance {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
}

/* Card Header */
.sc-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.sc-card-header i {
  font-size: 23px;
}

.sc-card-security .sc-card-header i {
  color: #f10c0c;
  font-weight: 700;
}

.sc-card-compliance .sc-card-header i {
  color: #084ee6;
  font-weight: 700;
}

.sc-card-header h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

/* Lists */
.sc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-list li {
  display: flex;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #334155;
  line-height: 1.6;
}

.sc-list.red i {
  color: #ed0e0e;
  font-size: 18px;
  font-weight: 700;
}

.sc-list.blue i {
  color: #0546d3;
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
}

.sc-list li div strong {
  display: block;
  font-weight: 600;
  color: #0f172a;
}

.sc-list li div span {
  font-size: 15px;
  color: #475569;
}

/* Responsive */
@media (max-width: 900px) {
  .sc-grid {
    grid-template-columns: 1fr;
  }

  .sc-title {
    font-size: 40px;
  }
}

/* ===== SC CARD ANIMATION ===== */
.sc-card {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* Left card */
.sc-card-security {
  transform: translateX(-80px);
}

/* Right card */
.sc-card-compliance {
  transform: translateX(80px);
}

/* Active state */
.sc-card.animate {
  opacity: 1;
  transform: translateX(0);
}


/* Next section */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #8b2cf5, #6a35e8);
  color: #ffffff;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.cta-container {
  max-width: 1000px;
  margin: auto;
}

.cta-title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 22px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Primary */
.cta-btn.primary {
  background: #ffffff;
  color: #7c3aed;
  font-weight: 600;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Secondary */
.cta-btn.secondary {
  border: 2px solid rgba(255,255,255,0.5);
  color: #ffffff;
}

.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* Bottom link */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  opacity: 0.95;
}

.cta-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 38px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}



/* ========================= NEXT SECTIONS ============================ */
/* Next section */
.retail-industry-challenges {
  padding: 60px 20px;
  background-color: #ffffff;
}

.retail-challenges-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.retail-challenges-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.retail-challenges-subtitle {
  font-size: 19px;
  color: #475569;
  margin-bottom: 60px;
}

.retail-challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.retail-challenge-card {
  background: #f7fafc;
  border-radius: 18px;
  padding: 20px 30px;
  text-align: left;
  border: 1px solid #e5e7eb;
}

/* Icon */
.retail-challenge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  border:1px solid #eb3c25;
}
.retail-challenge-icon i{
    font-size:23px;
    font-weight: 800;
}
.bg-blue {
  background: #dc2626;
  color: #ffffff;
}

/* Heading */
.retail-challenge-heading {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 15px;
}

/* List */
.retail-challenge-list {
  padding-left: 18px;
  margin: 0;
}

.retail-challenge-list li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 9px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
  .retail-challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .retail-challenges-grid {
    grid-template-columns: 1fr;
  }

  .retail-challenges-title {
    font-size: 32px;
  }
}

/* ===== Scroll Animation Base ===== */
.retail-challenge-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.3s ease;
}

/* When visible */
.retail-challenge-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hover: Bottom shadow only ===== */
.retail-challenge-card:hover {
  box-shadow: 0 14px 18px -14px rgba(15, 23, 42, 0.25);
}


/* ============= 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: #d63a07;

}
.retail-solution-icon.indigo{
   background: #2343c3;

}
.retail-solution-icon.red{
   background: #dc1c07;

}
.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;
}
.red-card {
  background: linear-gradient(145deg, #ffeeee, #fff8f8);
  border-color: #f3c6c6;
}
/* 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;}
.card-title.red { color: #c53030;}

/* 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;
}
.red-check li i{
  color: #b1122b;
  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: linear-gradient(180deg, #8b2cf5, #6d28d9);
  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 ================= */
.nk-tech-section {
  padding: 60px 20px;
  background: #f7fafc;
  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: #9333ea;
   font-weight: 700;
  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 ==================== */
.cta-red-section {
   background: linear-gradient(135deg, #8b2cf5, #6a35e8);
  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:#581be6
}

/* 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:#e7c6f6;
}
/* 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);
}

