* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

html {
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #111;
}

/* Section */
.insights-section {
  background: linear-gradient(180deg,
      #2563eb 0%,
      #3b4fe0 45%,
      #4338ca 100%);
  padding: 60px 20px;
  color: #ffffff;
  overflow-x: hidden;
}

/* Center wrapper */
.insights-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Main Heading */
.insights-wrapper h2 {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

/* Sub Heading */
.insights-wrapper h4 {
  font-size: 28px;
  font-weight: 600;
  color: #e0e7ff;
  margin-bottom: 32px;
}

/* Paragraphs */
.insights-wrapper p {
  font-size: 19px;
  line-height: 1.7;
  color: #f8fafc;
  margin-bottom: 22px;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .insights-wrapper h2 {
    font-size: 38px;
  }

  .insights-wrapper h4 {
    font-size: 20px;
  }

  .insights-wrapper p {
    font-size: 17px;
  }
}

/* Fade animation base */
.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* When active */
.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Next section */
/* Section spacing */
.resource-section {
  padding: 30px 0 40px;
  background: #ffffff;
}

/* Center wrapper */
.resource-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* Pill item */
.resource-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: #f7fafc;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  /* box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06); */
}

/* Icon */
.resource-item i {
  font-size: 18px;
  color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
  .resource-wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }

  .resource-item {
    padding: 14px 22px;
    font-size: 15px;
  }
}

/* HR itself – SOLID FULL WIDTH */
.sticky-hr {
  width: 100%;
  height: 2px;
  background: #e5e7eb;
  /* same as image */
}

/* Next section */

/* Section */
.blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 20px;
}

/* Header */
.blog-header {
  max-width: 900px;
  margin-bottom: 56px;
}

.blog-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;

}

.blog-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #2563eb, #993bf6);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 600;
}

.blog-header h1 {
  font-size: 47px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.blog-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.blog-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
}

/* Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-tags span {
  background: #e0ecff;
  color: #2563eb;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

/* Cards */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #f7fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  line-height: 1.4;
}

.blog-card:hover {
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
  transform: translateY(-3px);
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card .meta {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 18px;
}

/* Card tags */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.card-tags span {
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #475569;
}

/* Link */
.blog-card a {
  font-size: 14px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* Animations */
.animate-left,
.animate-right,
.animate-up {
  opacity: 0;
  transition: all 1.2s ease;
}

.animate-left {
  transform: translateX(-60px);
}

.animate-right {
  transform: translateX(60px);
}

.animate-up {
  transform: translateY(60px);
}

.show {
  opacity: 1;
  transform: translate(0);
}


.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(6px);
}

.blog-icon i {
  font-size: 23px;
  font-weight: 700;
}


/* Responsive */
@media (max-width: 992px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
}



/* Next section */
.blog-list-section {
  background: #ffffff;
  padding: 40px 0;
  overflow-x: hidden;

}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Card */
.blog-list-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 25px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  line-height: 1.4;
  background: #f7fafc;
}

/* Content */
.blog-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.blog-meta {
  font-size: 13px;
  color: #475569;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Tags */
.blog-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-tags span {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  background: #ffffff;
}

/* Read More */
.read-more {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-more i {
  font-size: 16px;
}

/* Bottom Buttons */
.blog-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-custom {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Animation base */
.blog-list-card {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

/* When visible */
.blog-list-card.bl-show {
  opacity: 1;
  transform: translateX(0);
}

.btn-primary-custom i {
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
  transform: translateX(6px);
}

.btn-outline-custom {
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease;
}

.btn-outline-custom:hover {
  background: linear-gradient(135deg,
      #e0ecff,
      #f0f6ff);
  color: #1d4ed8;
}

/* Next Section */
.whitepapers-section {
  background: #f7fafc;
  padding: 60px 20px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.whitepaper-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.wp-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg,
      #3b5cff 0%,
      #4a4fe2 45%,
      #6b2fd8 75%,
      #7a1fd0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-icon i {
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
}

.whitepaper-header h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

/* Text */
.wp-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.wp-description {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
  line-height: 1.6;
  max-width: 900px;
}

.wp-meta {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  font-size: 16px;
  color: #0f172a;
}

.wp-meta-bold {
  color: #333;
}

.wp-meta i {
  color: #2563eb;
  font-size: 16px;
  margin-right: 6px;
}

/* Card */
.whitepaper-card {
  margin-top: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.wp-card-left {
  flex: 1;
}

.wp-card-left h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.wp-card-meta {
  font-size: 14px;
  color: #475569;
  margin-bottom: 30px;
}

/* Columns */
.wp-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.wp-columns h5 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.wp-columns ul {
  list-style: none;
  padding: 0;
}

.wp-columns li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.wp-columns li i {
  color: #8b5cf6;
}

/* Download Button */
.wp-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 26px;
  background: #8b5cf6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
}

/* Right Icon */
.wp-card-icon {
  width: 64px;
  height: 64px;
  background: #f3e8ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-card-icon i {
  font-size: 28px;
  color: #8b5cf6;
}

.wp-download-btn {
  transition: background 0.3s ease;
}

.wp-download-btn i:last-child {
  transition: transform 0.3s ease;
}

.wp-download-btn:hover {
  background: #7c3aed;
  /* slightly darker violet */
}

.wp-download-btn:hover i:last-child {
  transform: translateX(6px);
}

/* Slide in keyframes */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(var(--start-x, 50px));
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* CTA Buttons Hover Effects */
.whitepaper-cta .cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  /* background: #8b5cf6; */
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whitepaper-cta .cta-primary i {
  transition: transform 0.3s ease;
}

.whitepaper-cta .cta-primary:hover {
  background: #7c3aed;
  /* darker violet */
}

.whitepaper-cta .cta-primary:hover i {
  transform: translateX(6px);
}

.whitepaper-cta .cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid #8b5cf6;
  border-radius: 12px;
  color: #8b5cf6;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.whitepaper-cta .cta-outline i {
  transition: transform 0.3s ease;
}

.whitepaper-cta .cta-outline:hover {
  background: #a78bfa;
  /* slightly bright violet */
  color: #fff;
}

.whitepaper-cta .cta-outline:hover i {
  transform: translateX(4px);
}

/* ================= ANIMATION ====================== */

/* Initial state of card: above and invisible */
.whitepaper-card {
  opacity: 0;
  transform: translateY(-50px);
  /* start above */
  transition: all 1s ease-out;
  /* smooth movement */
}

/* Visible state */
.whitepaper-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Next section */

/* Next Section */
/* CTA Wrapper */
.whitepaper-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #7a1cff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(122, 28, 255, 0.25);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: #6515e5;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(122, 28, 255, 0.35);
}

/* OUTLINE BUTTON */
.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #7a1cff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #7a1cff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}



/* ICON SIZE FIX */
.cta-primary i,
.cta-outline i {
  font-size: 18px;
}

/* Next section */
.webinars-section {
  max-width: 1200px;
  margin: auto;
  overflow-x: hidden;
}

.section-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.webinar-card {
  background: #f4fff8;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #d1fae5;
}

.webinar-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0a9c3b;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.webinar-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.duration {
  margin-bottom: 16px;
  color: #334155;
  font-weight: 400;
}

.webinar-card h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 18px 0 8px;
}

.webinar-h4 {
  font-weight: 700;
}

.webinar-card ul {
  padding-left: 14px;
  margin-bottom: 18px;
}

.webinar-card ul li {
  margin-bottom: 6px;
  line-height: 1.3;
  font-size: 14px;
  color: #444;
}

.webinar-card p {
  line-height: 1.3;
  font-size: 14px;
  color: #444;
}

/* 🔥 REGISTER BUTTON – exact & fixed */
.register-btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #059669;
  color: #ffffff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  padding: 16px 0;
  border-radius: 12px;

  transition: background 0.3s ease, transform 0.2s ease;
}

/* .register-btn:hover {
  background: #047857;
} */

.register-btn i {
  font-size: 18px;
}

.register-btn i {
  transition: transform 0.3s ease;
}

.register-btn:hover {
  background: #047857;
  /* darker violet */
}

.register-btn:hover i {
  transform: translateX(6px);
}

/* ======================= EXTENSION ===================== */
.webinars-section {
  background: #ffffff;
  padding: 60px 0px 30px;
}

.webinars-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.webinars-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.webinars-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #16a34a;
  /* green */
  display: flex;
  align-items: center;
  justify-content: center;
}

.webinars-icon i {
  color: #ffffff;
  font-size: 24px;
}

.webinars-header h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

/* Subtitle */
.webinars-subtitle {
  font-size: 23px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Description */
.webinars-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 24px;
}

/* Meta Row */
.webinars-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #334155;
}

.m-icon i {
  color: #22c55e;
  /* green check */
  font-size: 16px;
  font-weight: 700;
}

.meta-item strong {
  font-weight: 600;
  color: #444;
}

/* ================== CARD DROP ANIMATION ================== */
.webinar-card {
  opacity: 0;
  transform: translateY(-100px);
  transition:
    opacity 1.4s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* when active */
.webinar-card.webinar-drop-active {
  opacity: 1;
  transform: translateY(0);
}


/* Next section */
.ondemand-section {
  max-width: 1200px;
  margin: auto;
}

.ondemand-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Cards Grid */
.ondemand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.ondemand-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px;
  background: #ffffff;
}

.ondemand-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.meta {
  color: #475569;
  margin-bottom: 18px;
}

/* Watch Now link */
.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #16a34a;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.watch-link i {
  font-size: 16px;
}

.watch-link:hover {
  text-decoration: underline;
}

/* Bottom Buttons */
.ondemand-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

/* Primary Button */
.btn-primary {
  background: #16a34a;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #15803d;
}

/* Outline Button */
.btn-outline {
  border: 2px solid #16a34a;
  color: #16a34a;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: #16a34a;
  color: #ffffff;
}

/* ========================== DEMAND WEBINARS ==================== */
/* SECTION */
.rw-webinar-section {
  padding: 70px 20px;
}

.rw-webinar-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.rw-webinar-heading {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 34px;
}

/* GRID */
.rw-webinar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.rw-webinar-card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  opacity: 0;
  transform: translateX(90px);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    box-shadow 0.3s ease;
}

/* visible animation state */
.rw-webinar-card.rw-card-visible {
  opacity: 1;
  transform: translateX(0);
}

/* bottom-only shadow on hover */
.rw-webinar-card:hover {
  box-shadow: 0 14px 20px -12px rgba(15, 23, 42, 0.35);
}

/* CARD CONTENT */
.rw-webinar-card h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 10px;
}

.rw-webinar-meta {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

/* WATCH LINK */
.rw-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #16a34a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.rw-watch-link i:last-child {
  transition: transform 0.3s ease;
}

.rw-watch-link:hover i:last-child {
  transform: translateX(5px);
}

/* CTA */
.rw-webinar-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 52px;
}

.rw-cta-primary {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.rw-cta-primary i {
  transition: transform 0.3s ease;
}

.rw-cta-primary:hover {
  background: linear-gradient(135deg, #15803d, #16a34a);
}

.rw-cta-primary:hover i {
  transform: translateX(6px);
}

.rw-cta-outline {
  border: 2px solid #22c55e;
  color: #16a34a;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.rw-cta-outline:hover {
  background: #ecfdf5;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .rw-webinar-grid {
    grid-template-columns: 1fr;
  }
}

/* =================== TECH TALK SECTION ==================== */

/* ===== Tech Talks Wrapper ===== */
.tt-wrapper-section {
  background: #f7fafc;
  padding: 60px 0 48px;
  overflow-x: hidden;
}

.tt-inner-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.tt-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.tt-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-icon-box i {
  color: #ffffff;
  font-size: 23px;
}

.tt-main-title {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
}

/* Subtitle */
.tt-sub-title {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

/* Description */
.tt-description {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 920px;
  margin-bottom: 26px;
}

/* Meta Row */
.tt-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.tt-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #334155;
}

.tt-meta-item i {
  color: #6366f1;
  font-size: 17px;
  font-weight: 700;
}

.tt-meta-item strong {
  font-weight: 600;
  color: #444;
}

/* ===== Card Wrapper ===== */
.tt-talk-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 1200px;
  margin: 30px auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* ===== Base Animation State ===== */
.tt-talk-card {
  opacity: 0;
  transition: transform 1.2s ease, opacity 1.2s ease;
}

/* From Right */
.tt-from-right {
  transform: translateX(120px);
}

/* From Left */
.tt-from-left {
  transform: translateX(-120px);
}

/* Visible State */
.tt-show {
  opacity: 1;
  transform: translateX(0);
}


/* Header */
.tt-talk-title {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tt-level-badge {
  background: #fee2e2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.tt-level-badge.blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}

.tt-talk-duration {
  margin: 15px 0;
  ;
  font-size: 14px;
  color: #475569;
}

/* Body */
.tt-talk-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 26px;
}

.tt-sub-heading {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

/* Topics */
.tt-topic-list {
  padding-left: 0;
  list-style: none;
}

.tt-topic-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.2;
}

.tt-topic-list i {
  color: #6366f1;
  font-size: 16px;
  font-weight: 700;
}

/* Tech */
.tt-tech-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

/* Actions */
.tt-talk-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* Primary Button */
.tt-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.tt-primary-btn i:last-child {
  transition: transform 0.3s ease;
}

.tt-primary-btn:hover i:last-child {
  transform: translateX(6px);
}

/* Outline Button */
.tt-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid #6366f1;
  color: #4f46e5;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  background: #ffffff;
  transition: background 0.3s ease;
}

.tt-outline-btn:hover {
  background: #eef2ff;
}


.tech-talks-cta-wrap {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 50px;
}

/* ================= PRIMARY BUTTON ================= */
.tech-talks-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 26px;
  border-radius: 12px;

  background: linear-gradient(135deg, #5b4bff, #6d5cff);
  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  transition: background 0.3s ease;
}

.tech-talks-btn-primary i {
  transition: transform 0.3s ease;
}

/* Hover */
.tech-talks-btn-primary:hover {
  background: linear-gradient(135deg, #4c3cff, #5a4bff);
}

.tech-talks-btn-primary:hover i {
  transform: translateX(6px);
}

/* ================= OUTLINE BUTTON ================= */
.tech-talks-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 24px;
  border-radius: 12px;

  background: #ffffff;
  border: 2px solid #6d5cff;
  color: #5b4bff;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover */
.tech-talks-btn-outline:hover {
  background: #eef2ff;
  /* light blue shade */
  color: #4c3cff;
}

.tech-talks-btn-outline i {
  font-size: 18px;
}

/* ================= KNOWLEDGE SECTION ================== */

.kbx2-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */
.kbx2-header {
  text-align: center;
  margin-bottom: 40px;
}

.kbx2-header h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0f172a;
  margin-bottom: 15px;
}

.kbx2-header p {
  font-size: 23px;
  font-weight: 600;
  color: #475569;
}

/* SEARCH CARD */
.kbx2-search-card {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  max-width: 760px;
  margin: 0 auto 60px;
}

.kbx2-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.kbx2-search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 18px 30px;
  border-radius: 12px;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

.kbx2-search-input i {
  color: #64748b;
  font-size: 16px;
}

.kbx2-search-input input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}

/* INPUT FOCUS BLUE OUTLINE */
.kbx2-search-input:focus-within {
  border: 1.5px solid #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.kbx2-filter-btn {
  background: #2563eb;
  border: none;
  padding: 18px 18px;
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  font-size: 17px;
}

.kbx2-search-meta {
  margin-top: 14px;
  font-size: 14px;
  color: #64748b;
}

/* SECTION TITLE */
.kbx2-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 36px;
}

/* GRID */
.kbx2-topics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* CARD */
.kbx2-topic-card {
  background: #f7fcfa;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  position: relative;

  opacity: 0;
  transform: translateY(70px);
  transition:
    transform 0.9s ease,
    opacity 0.9s ease,
    box-shadow 0.35s ease;
}

/* ANIMATION */
.kbx2-topic-card.kbx2-show {
  opacity: 1;
  transform: translateY(0);
}

/* ICON */
.kbx2-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.kbx2-icon-box i {
  color: #2563eb;
  font-size: 20px;
}

/* TEXT */
.kbx2-topic-card h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.kbx2-topic-card p {
  font-size: 14px;
  color: #64748b;
}

/* HOVER LINK */
.kbx2-hover-link {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #2563eb;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* HOVER EFFECT */
.kbx2-topic-card:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 22px -14px rgba(0, 0, 0, 0.35);
}

.kbx2-topic-card:hover .kbx2-hover-link {
  opacity: 1;
}

/* ============ STAY INFORM SECTION ================== */


.nlx-wrap {
  background: linear-gradient(180deg, #3558f3, #3b4ee4);
  padding: 50px 20px;
  color: #ffffff;
  text-align: center;
  overflow-x: hidden;
}

/* HEAD */
.nlx-head h2 {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.nlx-head p {
  font-size: 23px;
  font-weight: 600;
  color: #dbeafe;
}

/* INFO CARD */
.nlx-info {
  max-width: 800px;
  margin: 40px auto;
  padding: 35px 34px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: left;
}

.nlx-info h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 16px;
}

.nlx-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nlx-info ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 16px;
  color: #eef2ff;
  line-height: 1.5;
}

.nlx-info li {
  margin-bottom: 8px;
}

/* FORM CARD */
.nlx-form-card {
  max-width: 800px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  color: #0f172a;
}

.nlx-form-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.nlx-form-grid input,
.nlx-form-grid select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  outline: none;
}

/* INPUT FOCUS */
.nlx-form-grid input:focus,
.nlx-form-grid select:focus {
  border: 1.5px solid #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* BUTTON */
.nlx-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #ffffff;
  border: none;
  padding: 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.35s ease;
}

.nlx-arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.nlx-btn:hover {
  background: linear-gradient(135deg, #1e40af, #3730a3);
}

.nlx-btn:hover .nlx-arrow {
  transform: translateX(6px);
}

/* PRIVACY */
.nlx-privacy {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
}

/* FOOTER */
.nlx-footer {
  margin-top: 30px;
  font-size: 16px;
  color: #e0e7ff;
}

/* FADE ANIMATION */
.fade-seq {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-seq.show {
  opacity: 1;
  transform: translateY(0);
}

/* Next section */

/* Section */
.insights {
  padding: 60px 20px;
  text-align: center;
  /* overflow-x: hidden; */
}

/* Headings */
.title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #0b1324;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 23px;
  font-weight: 600;
  color: #0b1324;
  opacity: 0.9;
}

/* Cards layout */
.cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.card {
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;
  background: #fff;
  transition: 0.3s ease;
}

.card:hover {
  /* transform: translateY(-6px); */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon box */
.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b5bff, #4c3dff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.icon i {
  color: #fff;
  font-size: 22px;
}

/* Card text */
.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1324;
  margin-bottom: 12px;
}

.card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 20px;
}

/* Link */
.card a {
  font-size: 15px;
  font-weight: 600;
  color: #1f4bff;
  text-decoration: none;
}

.card a i {
  margin-left: 6px;
  transition: 0.2s;
}

.card a:hover i {
  transform: translateX(4px);
}

/* ---------- LINK HOVER IMPROVEMENT ---------- */
.card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #1e3a8a;
  /* darker blue */
}

.card a i {
  transition: transform 0.35s ease;
}

.card a:hover i {
  transform: translateX(6px);
}

/* ---------- SCROLL ANIMATION BASE ---------- */
.insight-card {
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* LEFT SIDE START */
.insight-left {
  transform: translateX(-80px);
}

/* RIGHT SIDE START */
.insight-right {
  transform: translateX(80px);
}

/* ACTIVE STATE */
.insight-card.show {
  opacity: 1;
  transform: translateX(0);
}

/* Next section */
/* SECTION */
.cta-section {
  padding: 80px 20px;
  background: radial-gradient(120% 120% at 50% 0%,
      #1e2c44 0%,
      #0b1426 55%,
      #070d1b 100%);
  text-align: center;
}

/* CONTENT */
.cta-content h2 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 23px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 48px;
}

/* BUTTON GROUP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* COMMON BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

/* PRIMARY BUTTON */
.btn.primary {
  background: #1f5bff;
  color: #ffffff;
  /* box-shadow: 0 18px 40px rgba(31,91,255,0.35); */
}

.btn.primary:hover {
  background: #1747d8;
  transform: translateY(-1px);
}

/* SECONDARY BUTTON */
.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

/* ICON SIZE */
.btn i {
  font-size: 18px;
}