#be-engaged {
  padding: 110px 0;
}

/* Badge */
.engaged-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 170, 255, 0.15);
  color: #4fd1ff;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* Title */
.engaged-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.engaged-title .highlight {
  background: linear-gradient(90deg, #5fd3ff 0%, #8dd8a8 45%, #f5c542 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 56px;
}

/* Description */
.engaged-desc {
  font-size: 16px;
  color: #cfd8e3;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Buttons */
.engaged-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-main {
  background: #0ea5e9;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-main:hover {
  background: #0284c7;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 8px;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Stat Card */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.stat-card i {
  font-size: 26px;
  color: #facc15;
  margin-bottom: 12px;
}

.stat-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 14px;
  color: #d1d5db;
}

/* Responsive */
@media (max-width: 991px) {
  .engaged-title {
    font-size: 38px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.engagement-section {
  background: #ffffff;
  padding: 90px 0;
}

/* Timeline wrapper */
.engagement-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* Connecting line */
.engagement-timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #22c55e, #facc15);
  opacity: 0.4;
}

/* Item */
.engage-item {
  text-align: center;
  width: 23%;
  position: relative;
  animation: fadeUp 0.8s ease forwards;
}

/* Icon circle */
.engage-icon {
  width: 76px;
  height: 76px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.engage-icon i {
  font-size: 28px;
  color: #0ea5e9;
}

/* Card */
.engage-card {
  width: 100%;
  max-width: 280px; /* fixed visual width */
  height: 180px; /* FIXED HEIGHT */

  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  overflow: hidden; /* IMPORTANT */
  text-align: center;
}

.engage-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.engage-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 3; /* LIMIT TO 3 LINES */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.engage-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover animation */
.engage-item:hover .engage-icon {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.engage-item:hover .engage-card {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .engage-card {
    max-width: 100%;
    height: 170px;
  }
}

@media (max-width: 992px) {
  .engagement-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .engagement-timeline::before {
    display: none;
  }

  .engage-item {
    width: 100%;
  }
}
.partners-section {
  padding: 90px 0;
  background: #ffffff;
}

.partners-header {
  text-align: center;
  margin-bottom: 70px;
}

.partners-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.partners-header p {
  font-size: 15px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Group */
.partner-group {
  margin-bottom: 60px;
}

.partner-group h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
}

.partner-group h4 i {
  color: #0ea5e9;
}

/* Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.partner-card {
  height: 80px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;

  transition: all 0.25s ease;
}

/* Logo */
.partner-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Text */
.partner-card span {
  line-height: 1.3;
  text-align: left;
}

/* Hover */
.partner-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.18);
  transform: translateY(-3px);
}

.partner-card:hover {
  border-color: #38bdf8;
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.18);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partners-header h2 {
    font-size: 28px;
  }
}
.partners-cta {
  text-align: center;
  margin-top: 60px;
}

/* Gradient Button */
.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 32px;
  border-radius: 12px;

  background: linear-gradient(90deg, #f0ee86 0%, #f0ee86 50%, #facc15 100%);

  color: #05012c;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.partner-btn i {
  font-size: 14px;
}

.partner-btn .arrow {
  font-size: 18px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Hover */
.partner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.partner-btn:hover .arrow {
  transform: translateX(6px);
}
.involved-section {
  background: #f9fafb;
  padding: 100px 0;
}

.involved-header {
  text-align: center;
  margin-bottom: 70px;
}

.involved-header .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0ea5e9;
}

.involved-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 12px 0;
  color: #0f172a;
}

.involved-header p {
  font-size: 15px;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto;
}

/* Grid */
.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.involved-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.involved-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon.blue {
  background: #e0f2fe;
  color: #0284c7;
}

.icon.yellow {
  background: #fef3c7;
  color: #ca8a04;
}

.icon.gray {
  background: #e5e7eb;
  color: #374151;
}

/* Text */
.involved-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.involved-card .desc {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

/* List */
.involved-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.involved-card ul li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.involved-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0ea5e9;
  font-weight: 700;
}

/* Button */
.card-btn {
  margin-top: auto;
  text-align: center;
  padding: 12px;
  border: 1px solid #cbd5f5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
}

/* Responsive */
@media (max-width: 992px) {
  .involved-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .involved-grid {
    grid-template-columns: 1fr;
  }

  .involved-header h2 {
    font-size: 28px;
  }
}
.interest-section {
  background: #f8fafc;
  padding: 100px 0;
}

/* Header */
.interest-header {
  text-align: center;
  margin-bottom: 40px;
}

.interest-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.interest-header p {
  font-size: 15px;
  color: #64748b;
}

/* Card */
.interest-card {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px;
}

/* Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Full width fields */
.form-group.full {
  grid-column: span 2;
}

/* Labels */
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 0 14px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}

/* Focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
  background: #ffffff;
}

/* Button */
.submit-btn {
  margin-top: 26px;
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: none;
  background: #1296db;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .interest-header h2 {
    font-size: 26px;
  }
}
/* Bar background */
.path-tabs-wrap {
  padding: 34px 0;
  background: linear-gradient(90deg, #1896d3 0%, #0a2e62 100%);
}

/* Tabs row */
.path-tabs {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Each tab */
.path-tab {
  min-width: 260px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);

  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover */
.path-tab:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Active tab */
.path-tab.is-active {
  background: #ffffff;
  color: #0b2e59;
  border-color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* Responsive */
@media (max-width: 992px) {
  .path-tab {
    min-width: 220px;
  }
}

@media (max-width: 576px) {
  .path-tabs {
    gap: 12px;
  }
  .path-tab {
    min-width: 100%;
  }
}
