* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}


body {
 background: #0a0a0a;
  color: #fff;
}

.simple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;

  background: #0a0a0a;
  border-bottom:3px solid rgba(255,255,255,0.06);
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: 'Yeseva One', serif;

}

.logo span {
  color: gold;
}

/* HOME LINK */
.home-link {
  text-decoration: none;
  color: gold;
  font-size: 14px;
  border: 1px solid gold;
  padding: 6px 14px;
  border-radius: 20px;
  transition: 0.3s;
}

.home-link:hover {
  background: gold;
  color: black;
}

.home-link {
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.home-link:hover {
  box-shadow: 0 0 20px gold;
}

/* SECTION */
.clients-section {
  width: 100%;
  padding: 60px 0;
  background: #0a0a0a;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
}
.clients-container {
 width: 100%;
  max-width: 1400px;   /* wider = fits 4 easily */
  margin: 0 auto;
  padding: 0 20px;
  
}

.clients-container h2 {
  font-size: 28px;
  font-family: 'Domine', serif;
  margin-bottom: 30px;
  
}


.clients-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #fff;
  position: relative;
  font-family: 'Domine', serif;
  
  
}

/* gold underline */
.clients-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: gold;
  position: absolute;
  bottom: -10px;
  left: 0;
}

/* GRID */

/* CARD */
.card {
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;

  background-size: cover;
  background-position: center;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* IMAGE ZOOM (FAKE LAYER) */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;

  transform: scale(1);
  transition: transform 0.5s ease;
}

/* DARK OVERLAY */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.3),
    transparent
  );
}

/* CONTENT */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 23px;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

/* NAME */
.card-content h3 {
  font-size: 17px;
  font-weight: 500;
  font-family: 'Domine', serif;
}

/* BUTTON */
.card-content button {
  background: gold;
  color: black;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Agbalumo', sans-serif;

  opacity: 0;
  transform: translateY(15px);
  transition: 0.35s ease;
}

/* 🔥 HOVER EFFECTS */
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
  box-shadow:
    0 15px 40px rgba(255, 215, 0, 0.15),
    0 0 0 1px rgba(255, 215, 0, 0.3);
}

.card:hover::before {
  transform: scale(1.1);
}

.card:hover button {
  opacity: 1;
  transform: translateY(0);
}

/* NAME + BADGE ALIGN */
.client-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 500;
}

/* VERIFIED BADGE */
.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18}

img {
  max-width: 100%;
  display: block;
}

/* WRAPPER */
.btn-wrapper {
  position: relative;
  display: inline-block;
}

/* TOOLTIP */
.btn-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);

  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;

  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;

  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* SHOW ON HOVER */
.btn-wrapper:hover .btn-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.btn-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
.btn-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}
/* LIVE STATS CONTAINER */
.live-stats {
  position: absolute;
  top: 12px;
  right: 12px;   /* ✅ move to right */
  
  display: flex;
  flex-direction: column;
  gap: 6px;

  font-size: 10px;
  z-index: 5;

  
}

.live-stats span {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);

  padding: 5px 10px;
  border-radius: 20px;

  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;

  color: #fff;
}

/* HEART */
.hearts {
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.25);

  display: flex;
  align-items: center;
  gap: 4px;

  backdrop-filter: blur(6px);
}

/* HEART ICON ANIMATION */
.hearts::before {
  
  animation: pulse 1.5s infinite;
}

/* VIEWING */
.viewing {
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);

  display: flex;
  align-items: center;
  gap: 4px;

  backdrop-filter: blur(6px);
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* DEFAULT = DESKTOP FIRST */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.verified-badge i {
  color: gold;
  font-size: 16px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
}

.card:hover .verified-badge i {
  transform: scale(1.15);
  transition: 0.3s;
}

/* FOOTER */
.lux-footer {
  margin-top: 30px;
  background: #080808;
  
  padding: 40px 20px 20px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  flex-direction: column;   /* 🔥 stack vertically */
  align-items: center;      /* center everything */
  text-align: center;

  gap: 20px;                /* spacing between sections */
}

/* BRAND */
.footer-brand {
  text-align: center;
}

.footer-brand h3 {
  font-size: 20px;
  color: #fff;
  font-family: 'Yeseva One', serif;

}

.footer-brand span {
  color: gold;
}

.footer-brand p {
  font-size: 13px;
  color: #B8B8B8;
  margin-top: 5px;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;  /* 🔥 center links */
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #B8B8B8;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: gold;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-socials a {
  color: #B8B8B8;
  font-size: 18px;
  margin-left: 10px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: gold;
  transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #B8B8B8;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  color: #B8B8B8;
  font-size: 14px;
}

/* underline */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: gold;
  transition: 0.3s;
}

/* hover effect */
.footer-links a:hover {
  color: gold;
}

.footer-links a:hover::after {
  width: 100%;
}

/* BASE ICON STYLE */
.footer-socials a {
  color: #B8B8B8;
  font-size: 18px;
  margin-left: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

/* BRAND GOLD HOVER */
.footer-socials a:hover {
  color: gold; /* your main yellow */
  transform: translateY(-5px) scale(1.1);
}
.footer-socials a:hover {
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  border-radius: 50%;
}

/* OPTIONAL: ICON SPIN (SUBTLE) */
.footer-socials a:hover i {
  transform: rotate(8deg);
  transition: 0.3s;
}

.footer-socials a:hover {
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  border-radius: 50%;
}

.footer-socials a:hover {
  color: gold;
  transform: translateY(-5px) scale(1.1);

  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}
/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: 1fr !important;
  }
}

/* LIVE ACTIVITY */
.live-activity {
  position: fixed;

  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  background: rgba(10,10,10,0.95);

  border: 1px solid rgba(255,215,0,0.12);

  color: white;

  padding: 14px 22px;

  border-radius: 40px;
  opacity: 0;
transition: 0.4s ease;

  display: flex;
  align-items: center;
  gap: 12px;

  z-index: 9999;

  backdrop-filter: blur(10px);

  box-shadow:
    0 0 20px rgba(0,0,0,0.35);

  animation: slideDown 0.6s ease;
}

/* LIVE DOT */
.live-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #00ff66;

  box-shadow: 0 0 10px #00ff66;
}

/* SLIDE ANIMATION */
@keyframes slideDown {

  from {
    opacity: 0;
    transform:
      translateX(-50%)
      translateY(-20px);
  }

  to {
    opacity: 1;
    transform:
      translateX(-50%)
      translateY(0);
  }

}

@media (max-width: 600px) {

  .live-activity {
    width: 80%;

    padding: 10px 14px;

    border-radius: 16px;

    top: 15px;
  }

  .live-activity span {
    font-size: 13px;
    
  }

  .live-dot {
    width: 8px;
    height: 8px;
  }

}



a,
button,
input,
textarea,
select {
  
  -webkit-tap-highlight-color: transparent;
  outline: none;
  
}

a:focus,
a:active,
button:focus,
button:active {
  
  outline: none;
  
}

a{

  -webkit-tap-highlight-color:transparent;
}

img,
.card,
.profile-card,
.image-container {

  -webkit-tap-highlight-color: transparent;

  outline: none;

}
