.about-feature-cards {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.about-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  padding: 0.5rem 0;
}
.about-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: about-marquee 22s linear infinite;
  align-items: center;
}
@keyframes about-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.about-feature-card {
  min-width: 240px;
  max-width: 240px;
  min-height: 110px;
  max-height: 110px;
  margin: 0;
  padding: 1.2rem 1rem 1rem 1rem;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-feature-card .service-icon {
  width: 48px;
  height: 48px;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-weight: 500;
}
.about-list .service-icon {
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  background: rgba(247,198,0,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  flex-shrink: 0;
}
:root{
  --bliss-yellow:#f7c600;
  --bliss-dark:#0b0b0d;
  --bliss-card:#121217;
}
body { background: var(--bliss-dark); color: #fff; }
.navbar {
  background: transparent !important;
  transition: background-color 0.3s ease;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.brand-accent{ color: var(--bliss-yellow); }
.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-radius: 18px;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 30% 25%, rgba(247,198,0,0.10), rgba(0,0,0,0.90));
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: linear-gradient(0deg, rgba(0,0,0,0.86), rgba(0,0,0,0.35));
  pointer-events:none;
}
.hero-content{
  position: relative;
  z-index: 2;
  padding-top: clamp(80px, 8vh, 120px);  /* centers content in middle of screen */
  padding-bottom: clamp(60px, 10vh, 140px);
  display: flex;
  align-items: center;
  min-height: 92vh;
}


.pill {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.section { padding: 70px 0; }
.card-dark{
  background: var(--bliss-card);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
}

.service-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.16);
}
.service-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px auto;
  background: rgba(247,198,0,0.12);
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}
.equip-img{
  width:100%;
  height:170px;
  object-fit: cover;
  border-top-left-radius:18px;
  border-top-right-radius:18px;
  background: rgba(255,255,255,0.06);
}
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-whatsapp{
  background: #25D366;
  border: none;
  color:#fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  text-decoration: none;
  text-align:center;
}
.btn-call{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color:#fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 14px;
  text-decoration: none;
  text-align:center;
}
.muted { color: rgba(255,255,255,0.65); }
.nav-link { color: rgba(255,255,255,0.75) !important; }
.nav-link:hover { color: #fff !important; }
.tab-btn.active{
  background: var(--bliss-yellow) !important;
  color: #111 !important;
  border-color: var(--bliss-yellow) !important;
  font-weight: 800;
}


.hero-3d-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

#three-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-3d-overlay{
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

/* Video hero background */
.hero{
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #0b0b0d; /* fallback while video loads */
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) contrast(1.05);
}

.hero-video-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 25%, rgba(247,198,0,0.10), rgba(0,0,0,0.90)),
    linear-gradient(0deg, rgba(0,0,0,0.86), rgba(0,0,0,0.25));
  pointer-events: none;
}

/* Sticky background for services section */
#services {
  position: relative;
  background-image: url('../assets/images/services-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(11,11,13,0.95);
}

.hero-content{
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
}

/* Optional: reduce motion users get no video */
@media (prefers-reduced-motion: reduce){
  .hero-video{ display:none; }
}
