* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #fff;
  color: #111;
}

html {
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
}

/* =================== prtt-section ============= */

.prrt-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, #0b1629 0%, #0f213c 100%);
  overflow: hidden;
}

/* soft dark overlay */
.prrt-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
      rgba(255, 255, 255, 0.06),
      transparent 60%);
}

.prrt-content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* MAIN TITLE */
.prrt-title {
  font-size: 58px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 25px;

  opacity: 0;
  transform: translateY(30px);
  animation: prrtFadeUp 0.9s ease forwards;
}

/* SUB TITLE */
.prrt-subtitle {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;

  opacity: 0;
  transform: translateY(30px);
  animation: prrtFadeUp 0.9s ease forwards;
  animation-delay: 0.15s;
}

/* PARAGRAPHS */
.prrt-text {
  font-size: 20px;
  line-height: 1.7;
  color: #cfd8e3;
  max-width: 900px;
  margin: 0 auto 18px;

  opacity: 0;
  transform: translateY(26px);
  animation: prrtFadeUp 0.9s ease forwards;
  animation-delay: 0.3s;
}

.prrt-text.delay {
  animation-delay: 0.45s;
}

/* KEYFRAMES */
@keyframes prrtFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* subtle floating effect */
.prrt-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.18),
      transparent 70%);
  top: -120px;
  right: -120px;
  animation: prrtFloat 8s ease-in-out infinite;
}

@keyframes prrtFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}


/* =============== tia-section ================  */

.tia-section {
  background: #ffffff;
  padding: 20px 90px;
}

.tia-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.tia-header {
  text-align: center;
  margin-bottom: 30px;
}

.tia-title {
  font-size: 58px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 15px;
}

.tia-subtitle {
  font-size: 25px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 30px;
}

/* DIVIDER */
.tia-divider {
  height: 3px;
  width: 100%;
  background: #e5e7eb;
  margin: 35px 0 45px;
}

/* CASE WRAPPER */
.tia-case {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.tia-case.show {
  opacity: 1;
  transform: translateY(0);
}

/* PILL */
.tia-pill {
  display: inline-block;
  background: #eaf2ff;
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.tia-pill.green {
  background: linear-gradient(135deg,
      #e9fff1 0%,
      #d6ffe6 50%,
      #c9ffdd 100%);

  /* text style */
  color: #1fa463;
}

.tia-pill.red {
  background: linear-gradient(135deg,
      #ffe7e7 0%,
      #ffd3d3 50%,
      #ffc5c5 100%);

  /* text */
  color: #d10000;
}

/* CASE TITLE */
.tia-case-title {
  font-size: 32px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 28px;
}

/* INFO GRID */
.tia-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* INFO CARD */
.tia-info-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 22px;
}

.tia-info-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 10px;
}

.tia-info-card p {
  font-size: 16px;
  color: #0f172a;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .tia-title {
    font-size: 30px;
  }

  .tia-case-title {
    font-size: 26px;
  }

  .tia-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== challenge-section ================ */

.chlg-section {
  background: #ffffff;
  padding: 0 80px;
}

.chlg-container {
  max-width: 1200px;
  margin: 10px auto;
}

.chlg-title {
  font-size: 28px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 18px;
}

.chlg-desc {
  font-size: 18px;
  color: #475569;
  max-width: 1200px;
  margin-bottom: 32px;
}

/* GRID */
.chlg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* CARD COMMON */
.chlg-card {
  padding: 22px 24px;
  border-radius: 14px;
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}

/* LEFT CARD STYLE */
.chlg-left {
  background: #fff3f3;
  transform: translateX(-100px);
}

/* RIGHT CARD STYLE */
.chlg-right {
  background: #fff6e8;
  transform: translateX(100px);
}

/* SHOW ANIMATION */
.chlg-card.show {
  opacity: 1;
  transform: translateX(0);
}

/* HOVER SHADOW */
.chlg-card:hover {
  box-shadow: 0 5px 10px #10101067;
}

/* TITLES */
.chlg-card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.chlg-card-title.red {
  color: #991b1b;
}

.chlg-card-title.orange {
  color: #9a3412;
}

/* LIST */
.chlg-list {
  list-style: none;
  padding-left: 0;
}

.chlg-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.chlg-list.red li::before {
  content: "•";
  font-size: 20px;
  color: #dc2626;
  position: absolute;
  left: 0;
}

.chlg-list.orange li::before {
  content: "•";
  font-size: 20px;
  color: #f97316;
  position: absolute;
  left: 0;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .chlg-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ os-section ============= */

.os-section {
  background: #ffffff;
  padding: 50px 20px 20px;
}

.os-container {
  max-width: 1200px;
  margin: auto;
}

.os-title {
  font-size: 28px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 26px;
}

/* GRID */
.os-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD COMMON */
.os-card {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 22px 24px;
  opacity: 0;
  transform: translateY(-90px);
  transition:
    transform 1s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 1s ease,
    box-shadow 0.4s ease;
  margin-bottom: 40px;
}

/* SHOW STATE */
.os-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER */
/* .os-card:hover{
  box-shadow:0 14px 32px rgba(0,0,0,0.08);
} */

/* TITLES */
.os-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.os-card-title.blue {
  color: #1d4ed8;
  font-size: 17px;
}

.os-text.big {
  font-size: 16px;
}

/* TEXT */
.os-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

/* LIST */
.os-list {
  list-style: none;
  padding-left: 0;
}

.os-list li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.os-icon {
  color: #2563eb;
  /* image-la irukra blue */
  font-size: 16px;
  margin-top: 3px;
  /* text align perfect ah irukka */
  flex-shrink: 0;
}

.os-icon.red {
  color: rgba(255, 0, 0, 0.876);
}

.os-icon.green {
  color: #0aa83f;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .os-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== res-section ================== */

.res-section {
  background: #ffffff;
  padding: 10px 20px 90px;
}

.res-container {
  max-width: 1200px;
  margin: auto;
}

.res-title {
  font-size: 28px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 30px;
}

/* GRID */
.res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD COMMON */
.res-card {
  border-radius: 14px;
  padding: 22px 22px 26px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(50px);
  transition:
    transform 1s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 1s ease,
    box-shadow 0.4s ease;
}

/* SHOW */
.res-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER */
.res-card:hover {
  /* box-shadow:0 14px 30px rgba(0,0,0,0.08); */
  box-shadow: 0 5px 10px #10101067;
}

/* BACKGROUND COLORS */
.res-blue {
  background: #f3f8ff;
}

.res-green {
  background: #f3fcf6;
}

.res-purple {
  background: #fbf7ff;
}

.res-indigo {
  background: #f4f6ff;
}

/* TITLES */
.res-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.res-card-title.blue {
  color: #384c84;
}

.res-card-title.green {
  color: #16793a;
}

.res-card-title.purple {
  color: #54328d;
}

.res-card-title.indigo {
  color: #362ca4;
}

/* ITEMS */
.res-item {
  margin-bottom: 14px;
}

.res-item p {
  font-size: 13px;
  color: #475569;
  margin: 10px 0;
}

/* VALUES */
.res-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.res-value.blue {
  color: #2563eb;
}

.res-value.green {
  color: #15803d;
}

.res-value.purple {
  color: #7c3aed;
}

.res-value.indigo {
  color: #4338ca;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .res-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:640px) {
  .res-grid {
    grid-template-columns: 1fr;
  }
}

/* ================nk-test-wrap=============== */

/* SECTION */
.nk-testimonial-wrap {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 20px;
}

/* CARD */
.nk-testimonial-card {
  background: linear-gradient(135deg, #1f5eff, #1d4ed8);
  border-radius: 16px;
  padding: 50px;
  color: #ffffff;
  position: relative;
  opacity: 0;
  transform: translateY(120px) scale(0.98);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.nk-testimonial-card.green {
  background: linear-gradient(135deg, #0aa83f, #058a34);
}

.nk-testimonial-card.red {
  background: linear-gradient(135deg,
      #d90000 0%,
      #e60000 45%,
      #c80000 100%);

}

/* REVEAL */
.nk-testimonial-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* QUOTE */
.nk-quote-icon {
  position: absolute;
  top: 20px;
  left: 26px;
  font-size: 28px;
  opacity: 0.25;
}

/* TEXT */
.nk-testimonial-text {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 22px;
}

/* AUTHOR */
.nk-author strong {
  font-size: 17px;
  display: block;
  margin-bottom: 10px;
}

.nk-author span {
  font-size: 16px;
  opacity: 0.85;
}

/* BUTTON WRAP */
.nk-cta-wrap {
  text-align: center;
  margin-top: 28px;
}

/* BUTTON */
.nk-case-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  background: #2563eb;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* ICONS */
.nk-btn-arrow {
  transition: transform 0.35s ease;
}

.nk-btn-icon {
  font-size: 16px;
}

/* BUTTON HOVER ONLY */
.nk-case-btn:hover {
  background: #1e40af;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.nk-case-btn:hover .nk-btn-arrow {
  transform: translateX(6px);
}

/* ======================value-section========================= */

.value-section {

  /* max-width:1200px; */
  background: #f8fafc;
  width: 100%;
  margin: 40px auto;
  padding: 40px 80px;
}

.value-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 45px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD */
.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform .45s ease, box-shadow .45s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

/* HEADER */
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

.icon-box.blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.icon-box.green {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.icon-box.red {
  background: linear-gradient(135deg,
      #d90000 0%,
      #e60000 45%,
      #c80000 100%);

}

.icon-box.purple {
  background-color: #54328d
}

.card-header h3 {
  font-size: 20px;
  font-weight: 700;
}

/* SUB TITLE */
.card-sub {
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 14px;
}

/* LIST */
.value-list {
  list-style: none;
  margin-bottom: 22px;
}

.value-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.value-list.blue i {
  color: #2563eb;
  font-weight: 500;
  font-size: 17px;
}

.value-list.green i {
  color: #16a34a;
  font-weight: 500;
  font-size: 17px;
}

.value-list.red i {
  color: #c80000;
  font-weight: 500;
  font-size: 17px;
}

.value-list.purple i {
  color: #54328d;
  font-weight: 500;
  font-size: 17px;
}

/* IMPACT */
.impact {
  border-radius: 14px;
  padding: 20px;
  line-height: 20px;
}

.impact.blue {
  background: linear-gradient(135deg, #eaf2ff, #deebff);
}

.impact.green {
  background: linear-gradient(135deg, #eafff3, #dcfce7);
}

.impact.red {
  background: linear-gradient(135deg,
      #ffe7e7 0%,
      #ffd3d3 50%,
      #ffc5c5 100%);
}

.impact.purple {
  background: linear-gradient(135deg,
      #ede9fe 0%,
      /* light purple */
      #ddd6fe 100%,
      /* medium purple */
      #ffffff 100%);
}

.impact h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.impact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.impact.blue i {
  color: #2563eb;
}

.impact.green i {
  color: #16a34a;
}

.impact.red i {
  color: #c80000;
}

.impact.purple i {
  color: #54328d;
}

.border-blue {
  border: 1.5px solid #dbeafe;
  /* light blue */
}

.border-green {
  border: 1.5px solid #dcfce7;
  /* light green */
}

.border-red {
  border: 1.5px solid #fee2e2;
}

.border-purple {
  border: 1.5px solid #ede9fe;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .2s;
}

.delay-2 {
  transition-delay: .4s;
}


/* SCROLL ANIMATION */
/* RESPONSIVE */
@media(max-width:900px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}


/* nk-metrics-SECTION */
.nk-metrics-section {
  padding: 30px 20px;
  background: linear-gradient(135deg, #2f5bea, #4b3fd6);
  color: #ffffff;
}

.nk-metrics-header {
  text-align: center;
  margin-bottom: 60px;
}

.nk-metrics-header h2 {
  font-size: 45px;
  font-weight: 400;
  margin-bottom: 20px;
}

.nk-metrics-header p {
  color: lightcyan;
  font-size: 23px;
  font-weight: 700;
  opacity: .9;
}

/* GRID */
.nk-metrics-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.nk-metrics-card {
  height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  transition: transform .45s ease;
}

.nk-metrics-card:hover {
  transform: translateY(-8px);
  transition: 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
}

/* ICON */
.nk-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #ffffff;
  color: #2f5bea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* TITLE */
.nk-metrics-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* LIST */
.nk-metrics-card ul {
  list-style: none;
}

.nk-metrics-card li strong {
  color: lightblue;
  font-size: 14px;
  border-bottom: 20px;
}

.nk-metrics-card li {
  font-size: 15px;
  line-height: 1.55;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nk-metrics-card li:last-child {
  border-bottom: none;
}

/* ANIMATION */
.nk-reveal {
  opacity: 0;
  transform: translateY(-90px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.nk-reveal.nk-active {
  opacity: 1;
  transform: translateY(0);
}

.nk-delay-1 {
  transition-delay: .2s;
}

.nk-delay-2 {
  transition-delay: .4s;
}

.nk-delay-3 {
  transition-delay: .6s;
}

/* RESPONSIVE */
@media(max-width:1000px) {
  .nk-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= SECTION ================= */

.nkfyx-industry-wrap {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
}

.nkfyx-industry-title {
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.nkfyx-industry-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 16px;
  margin-bottom: 60px;
}

/* ================= GRID ================= */

.nkfyx-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ================= CARD ================= */

.nkfyx-industry-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  opacity: 0;
  transform: translateX(-80px);
}

/* entry animation */
.nkfyx-industry-card.nkfyx-visible {
  opacity: 1;
  transform: translateX(0);
}

/* hover shadow */
.nkfyx-industry-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ================= ICON ================= */

.nkfyx-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.nkfyx-industry-card:hover .nkfyx-icon-box {
  transform: scale(1.15);
}

/* icon colors */
.nkfyx-blue {
  background: #2563eb;
}

.nkfyx-green {
  background: #16a34a;
}

.nkfyx-red {
  background: #dc2626;
}

.nkfyx-purple {
  background: #7c3aed;
}

/* ================= CONTENT ================= */

.nkfyx-card-heading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.nkfyx-card-text {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

/* ================= LINK ================= */

.nkfyx-case-link {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nkfyx-case-link i {
  transition: transform 0.3s ease;
}

/* arrow move */
.nkfyx-industry-card:hover .nkfyx-case-link i {
  transform: translateX(5px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px) {
  .nkfyx-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .nkfyx-industry-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================== nkcta-wrapper ================ */

.nkcta-wrapper {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(135deg, #0b1629, #132a46, #0b1629);
  display: flex;
  justify-content: center;
}

.nkcta-inner {
  max-width: 1000px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.nkcta-inner.nkcta-show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= TEXT ================= */

.nkcta-heading {
  font-size: 50px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 14px;
}

.nkcta-subheading {
  font-size: 22px;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 38px;
}

/* ================= BUTTON GROUP ================= */

.nkcta-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* ================= PRIMARY BUTTON ================= */

.nkcta-primary-btn {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.nkcta-primary-btn i {
  transition: transform 0.3s ease;
}

.nkcta-primary-btn:hover {
  background: #1e40af;
}

.nkcta-primary-btn:hover i {
  transform: translateX(6px);
}

/* ================= SECONDARY BUTTON ================= */

.nkcta-secondary-btn {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.nkcta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ================= LINK ================= */

.nkcta-bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #60a5fa;
  text-decoration: none;
}

.nkcta-bottom-link:hover {
  text-decoration: none;
  color: lightblue;
}

/* ================= RESPONSIVE ================= */

@media(max-width:600px) {
  .nkcta-heading {
    font-size: 32px;
  }
}