:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-85f009b */.spotlight {
  text-align: center;
  font-family: "Poppins", sans-serif;
  padding: 40px 0;
  background: #f8f9fb;
}

.spotlight h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* ---------- Tabs (Box Style) ---------- */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border: 2px solid #3c3f90;
  width: fit-content;
  margin: 0 auto 30px auto;
}

.tab {
  background: #fff;
  border: none;
  border-right: 1px solid #3c3f90;
  color: #3c3f90;
  font-weight: 500;
  padding: 10px 22px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:last-child {
  border-right: none;
}

.tab.active {
  background: #3c3f90;
  color: #fff;
  font-weight: 600;
}

.tab:hover {
  background: #007bff;
  color: #fff;
}

/* ---------- Projects ---------- */
.projects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.project-group {
  display: none;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.project-group.active {
  display: flex;
}

.project-card {
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: left;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  font-size: 18px;
  color: #0a214a;
  margin: 15px;
}

.project-card p {
  font-size: 14px;
  margin: 4px 15px;
  color: #444;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1e8449;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* Make yellow badge also blue as requested */
.badge.yellow {
  background: #1e8449;
}

.btn {
  display: block;
  margin: 15px;
  background: #1e8449;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover {
  background: #008e5a;
}

.explore {
  margin-top: 30px;
}

.explore-btn {
  background: #0057b8;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .tabs {
    flex-wrap: wrap;
    border: none;
    gap: 8px;
  }

  .tab {
    border: 1px solid #007bff;
    border-radius: 5px;
  }

  .tab:last-child {
    border-right: 1px solid #007bff;
  }

  .projects {
    gap: 20px;
  }

  .project-card {
    width: 90%;
  }
}/* End custom CSS */