* {
  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;
}

/* ================= BACK ================= */

.cm-breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 40px;
  /* image madhiri spacing */
  border-bottom: 1px solid #ececec;
}

/* ===== BACK ICON ===== */
.cm-back-btn {
  color: #444;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}

.cm-back-btn:hover {
  color: #333;
  /* light dark */
}

/* ===== BREADCRUMB ===== */
.cm-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 600;
}

/* LINKS (Home, Services) */
.cm-breadcrumb-link {
  color: #444;
  /* image-la irukura grey */
  text-decoration: none;
  transition: color 0.25s ease;
}

.cm-breadcrumb-link:hover {
  color: #333;
  /* light dark on hover */
}

/* SLASH */
.cm-breadcrumb-sep {
  color: #c2c2c2;
  font-size: 15px;
}

/* CURRENT PAGE */
.cm-breadcrumb-active {
  color: #1f6bff;
  /* exact blue tone */
  font-weight: 600;
}


/* Next section */
.webinar-section {
  padding: 60px 20px;
  background: linear-gradient(135deg,
      #8b2be2 0%,
      #6d28d9 50%,
      #7c3aed 100%);
  font-family: "Inter", sans-serif;
  color: #ffffff;
}

.webinar-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Icon box */
.video-icon-new {
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ba94f8;
}

.video-icon-new i {
  font-size: 30px;
  color: #ffffff;
}

/* Headings */
.webinar-container h1 {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.webinar-container h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 28px;
}

/* Paragraph */
.webinar-container p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #f3e8ff;
}

/* Info Cards */
.info-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.info-card {
  min-width: 280px;
  padding: 22px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid #ba94f8;
}

.info-card .label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #e9d5ff;
  margin-bottom: 8px;
}

.info-card strong {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* webinar content initial state */
.webinar-container>* {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* visible state */
.webinar-container>*.show {
  opacity: 1;
  transform: translateY(0);
}

/* Next section */
.upcoming-webinars-new {

  padding: 60px 20px;
  background: #ffffff;
}

.container-new {
  max-width: 1200px;
  margin: auto;
}

.container-new h1 {
  font-size: 43px;
}

.tit-new {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 15px;

}

.subtitle-new {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  color: #475569;
}

/* CARD */
.webinar-card-new {
  margin-top: 40px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 40px;
  background: #f7fafc;
}

/* LEFT */
.webinar-left-new {
  flex: 2;
}

.webinar-left-new h2 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.meta-new {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 14px;
  color: #475569;
}

.meta-new i {
  color: #7c3aed;
  font-weight: bold;
  margin-right: 6px;
}

.level {
  background: #fee2e2;
  color: #dc2626;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.level.green {
  background: #e5fee2;
  color: rgb(11, 113, 11);
}

.level.yellow {
  background: #fef9e2;
  color: rgb(110, 113, 11);
}

.learn-h4 {
  margin-top: 30px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: bold;
}

/* Learn list */
.learn-list-new {
  list-style: none;
  padding: 0;
}

.learn-list-new li {
  margin-bottom: 12px;
  position: relative;
  font-size: 14px;
  color: #444;
  display: flex;
  gap: 8px;
}

.learn-list-new li i {
  color: #2563eb;
  font-size: 17px;
  font-weight: 800;
}

.learn-list-new.red li i {
  color: #dc2626;
  font-size: 17px;
  font-weight: 800;
}

.learn-list-new.green li i {
  color: #16a34a;
  font-size: 17px;
  font-weight: 800;
}

/* Speakers */
.speaker {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.speak-h4 {
  font-size: 14px;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #7c3aed;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speak-member strong {
  font-size: 16px;
}

.speak-member p {
  margin-top: 6px;
  font-size: 14px;
  color: #475569;
  line-height: 1.3;
}

.speak-member span {
  font-size: 13px;
}

/* RIGHT */
.webinar-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.register-btn-new {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 18px 28px;
  border-radius: 12px;
  font-weight: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
}

.register-btn-new.red {
  background: linear-gradient(135deg, #dc2626 0%, #f87171 100%)
}

.register-btn-new.green {
  background: linear-gradient(135deg, #1fe966, #08a53f);
}

.register-btn-new i {
  margin-right: 8px;
}

.register-btn-new.red:hover {
  background: linear-gradient(135deg, #991b1b 0%, #ef4444 100%);

}

/* Attend box */
.attend-box-new {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef4ff, #f8fbff);
  border: 1px solid #c7d2fe;
}

.attend-box-new.red {
  background: linear-gradient(to top,
      /* bottom → top */
      #ffffff 0%,
      /* bottom white */
      #fee2e2 40%,
      /* soft light red in middle */
      #fcafaf 100%
      /* top dark red / base */
    );
  border: 1px solid #fee2e2;
}

.attend-box-new.green {
  background: linear-gradient(135deg,
      #ffffff 0%,
      #f0fdf4 40%,
      #dcfce7 100%);
  border: 1px solid #dcfce7;
}

.attend-box-new h5 {
  color: #2563eb;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}

.attend-box-new.red h5 {
  color: #dc2626;
}

.attend-box-new.red li i {
  color: #dc2626;
}

.attend-box-new.green h5 {
  color: #16a34a;
}

.attend-box-new.green li i {
  color: #16a34a;
}

.attend-box-new ul {
  list-style: none;
  padding: 0;
}

.attend-box-new li {
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
  color: #444;
  display: flex;
  gap: 8px;
}

.attend-box-new li i {
  color: #2563eb;
  font-size: 16px;
  font-weight: 800;

}

/* card initial animation state */
.webinar-card-new {
  opacity: 0;
  transform: translateX(-100px);
  transition:
    opacity 1.6s ease,
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* visible */
.webinar-card-new.show {
  opacity: 1;
  transform: translateX(0);
}

.register-btn-new {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 18px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.register-btn-new .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.register-btn-new:hover .arrow {
  transform: translateX(6px);
}


/* Next section */
.webinar-healthcare {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Card */
.webinar-card {
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Left */
.webinar-left {
  flex: 2;
}

.webinar-left h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #475569;
  margin-bottom: 30px;
}

.meta i {
  color: #dc2626;
  margin-right: 6px;
}

.level {
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.level.green {
  background: #dcfce7;
  color: #15803d;
}

h4 {
  font-size: 16px;
  margin: 28px 0 16px;
}

/* Learn list */
.learn-list {
  list-style: none;
  padding: 0;
}

.learn-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.learn-list.red li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

/* Speakers */
.speaker {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.avatar.purple {
  background: #7c3aed;
}

.speaker p {
  font-size: 14px;
  color: #475569;
}

/* Right */
.webinar-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Register Button */
.register-btn {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
}

.register-btn i {
  margin-right: 8px;
}

.register-btn.red {
  background: #e10600;
}

/* Attend box */
.attend-box {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
}

.red-box {
  background: linear-gradient(135deg, #ffe4e6, #fff1f2);
  border: 1px solid #fecaca;
}

.attend-box h5 {
  color: #dc2626;
  margin-bottom: 16px;
}

.attend-box ul {
  list-style: none;
  padding: 0;
}

.attend-box li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.attend-box li::before {
  content: "👤";
  position: absolute;
  left: 0;
}

/* Next section */
.webinar-supply {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Card */
.webinar-card {
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Left */
.webinar-left {
  flex: 2;
}

.webinar-left h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #475569;
  margin-bottom: 28px;
}

.meta i {
  color: #16a34a;
  margin-right: 6px;
}

/* Level badge */
.level {
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.level.yellow {
  background: #fef3c7;
  color: #92400e;
}

h4 {
  font-size: 16px;
  margin: 26px 0 14px;
}

/* Learn list */
.learn-list {
  list-style: none;
  padding: 0;
}

.learn-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.learn-list.green li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

/* Speakers */
.speaker {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.avatar.purple {
  background: #7c3aed;
}

.speaker p {
  font-size: 14px;
  color: #475569;
}

/* Right */
.webinar-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Register Button */
.register-btn {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
}

.register-btn i {
  margin-right: 8px;
}

.register-btn.green {
  background: #0ea5a4;
}

/* Attend box */
.attend-box {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
}

.green-box {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
  border: 1px solid #86efac;
}

.attend-box h5 {
  color: #16a34a;
  margin-bottom: 16px;
}

.attend-box ul {
  list-style: none;
  padding: 0;
}

.attend-box li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.attend-box li::before {
  content: "👤";
  position: absolute;
  left: 0;
}

/* Next section */
.ondemand-container {
  /* max-width: 1200px; */
  width: 100%;
  margin: auto;
  padding: 60px 20px;
  background: #f7fafc;
}

.ondemand-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ondemand-subtitle {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 15px;
}

.ondemand-desc {
  text-align: center;
  color: #666;
  font-size: 19px;
  margin-bottom: 50px;
}

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 30px;
}

.webinar-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon {
  min-width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7b2cff, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.content h3 {
  margin: 0 0 10px;
  font-size: 17px;
  margin-bottom: 13px;
}

.meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.meta i {
  margin-right: 5px;
}

.content p {
  width: 100%;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

.watch {
  text-decoration: none;
  color: #8b00ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}

.watch:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .webinar-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation base */
.webinar-card {
  opacity: 0;
  transform: translateY(-40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    box-shadow 0.3s ease;
}

/* When visible */
.webinar-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom-only soft shadow */
.webinar-card {
  box-shadow: 0 18px 28px -18px rgba(0, 0, 0, 0.18);
}

.watch {
  text-decoration: none;
  color: #8b00ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.watch i {
  transition: transform 0.3s ease;
}

/* hover */
.watch:hover {
  color: #5b21b6;
  /* darker purple */
  text-decoration: none;
}



/* Next section */
.webinar-series {
  background: #ffffff;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.series-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #0f172a;
}

.series-subtitle {
  text-align: center;
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.series-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 10px rgba(0, 0, 0, 0.08);
}

.series-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}

.series-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #020617;
}

.frequency {
  display: inline-block;
  color: #7c3aed;
  font-weight: 600;
  margin-bottom: 14px;
}

.series-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 18px;
}

.series-card strong {
  font-size: 15px;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 900px) {
  .series-grid {
    grid-template-columns: 1fr;
  }

  .series-title {
    font-size: 38px;
  }
}

/* ===== Animation base ===== */
.series-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    box-shadow 0.35s ease;
}

/* Visible state */
.series-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover – bottom-only light shadow */
.series-card:hover {
  box-shadow: 0 22px 30px -18px rgba(0, 0, 0, 0.25);
}


/* Next section */
.webinar-calendar {
  background: #f7fafc;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.calendar-card {
  max-width: 780px;
  width: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid #e4d7f8
}

.calendar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 30px;
}

.calendar-card h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #0f172a;
}

.calendar-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #444;
}

.calendar-card p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 40px;
}

.calendar-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-outline-dwn {
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
  .calendar-card {
    padding: 40px 24px;
  }

  .calendar-card h2 {
    font-size: 28px;
  }

  .calendar-card p {
    font-size: 16px;
  }
}

/* ===== Fade-in base ===== */
.calendar-card>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.calendar-card>*.show {
  opacity: 1;
  transform: translateY(0);
}

/* Subscribe button hover – slightly dark */
.btn-primary {
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

/* Download button hover – light violet */
.btn-outline-dwn {
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-dwn:hover {
  background: #f3e8ff;
  /* light violet shade */
}

/* Next section */
.private-webinars {
  padding: 60px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.private-card {
  max-width: 780px;
  background: linear-gradient(135deg, #8b2cf5, #5b2bd8);
  border-radius: 26px;
  padding: 60px 60px;
  color: #ffffff;
  text-align: center;
}

.private-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.private-card h2 {
  font-size: 37px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.private-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.private-desc {
  font-size: 18px;
  max-width: 670px;
  font-weight: 500;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0.95;
}

.private-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  text-align: left;
  margin-bottom: 50px;
}

.private-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.private-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.private-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.private-content i {
  font-size: 16px;
}

.private-btn {
  background: #ffffff;
  color: #7c3aed;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.private-btn:hover {
  background: #e2d8fd;
}

/* Mobile */
@media (max-width: 768px) {
  .private-card {
    padding: 50px 24px;
  }

  .private-card h2 {
    font-size: 32px;
  }

  .private-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Next section */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #0b1629, #13233d);

}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.cta-container h2 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 15px;
}

.cta-container p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 44px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-outline {
  background: #ffffff;
  color: #0f172a;
  border: none;
  padding: 20px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  color: #ffffff;
  border: none;
  padding: 20px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.cta-link:hover {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 34px;
  }

  .cta-container p {
    font-size: 18px;
  }
}