.promo-banner {
  position: fixed;
  top: 70px; /* adjust this based on your navbar height */
  left: 0;
  width: 100%;
  background: linear-gradient(90deg,#e6e8e8, #000000, #e6e8e8);
  color: #fff;
  padding: 8px 2px;
  font-weight: 900;
  font-size: 1rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-out;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.promo-text {
  flex: 10;
  text-align: center;
}

.close-btn {
  background: transparent;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* .tiktok-section {
  background-color: #f4f8fb;
  padding:40px 20px;
  text-align: center;
}

.tiktok-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: -20px;
}

.tiktok-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tiktok-video {
  flex: 0 1 325px;
}

.btn-tiktok {
  display: inline-block;
  margin-top: 30px;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}


.btn-tiktok:hover {
  background-color: #333;
} */
