/* ---------------- Reset & Base ---------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100%;
  background: #0b0c1a;
  color: #fff;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

img {
  display: block;
  max-width: 100%;
}


/* ============================
   HERO SECTION
=============================== */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("../assets/TunewaveBG.svg") no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  margin: 0;
  padding-top: 80px; /* keeps hero content visible under navbar */
}

/* Starfield Overlay */
.hero canvas#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

/* Hero Heading */
.hero-heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(33.64deg, #0B639A 18.98%, #FFFFFF 26.46%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(11, 99, 154, 0.35);
}


/* Hero Subtext */
.hero-subtext {
  font-size: 19px;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 45px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

/* Button */
.outline-button {
  display: inline-block;
  padding: 12px 42px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
  letter-spacing: 0.8px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
              0 0 25px rgba(255, 255, 255, 0.1);
}

outline-button:hover {
  background: rgba(11, 99, 154, 0.3);
  border-color: #40A9FF;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(11, 99, 154, 0.8),
              inset 0 0 15px rgba(11, 99, 154, 0.4);
}

/* Brand Logo */
.brand {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px; /* moved logo slightly down */
}

.brand img {
  width: 600px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(11, 99, 154, 0.7));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 25px rgba(75, 193, 255, 0.9));
}


/* ===============================
   ELLIPSE TRANSITION (MATCHING HERO STYLE)
=============================== */
.ellipse-transition {
  position: relative;
  width: 100%;
  height: 200px; /* same as hero ellipse */
  margin-top: -30px; /* overlap smoothly with section above */
  overflow: hidden;
  z-index: 3;
}

.ellipse-transition .ellipse-img {
  position: absolute;
  top: -10px; /* slightly upward for better curve visibility */
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: auto;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}

/* Gradient overlay for smooth fade into next section */
.ellipse-transition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(
    to bottom,
    rgba(11, 12, 26, 1) 0%,
    rgba(11, 12, 26, 0) 100%
  );
  z-index: 3;
}

/* ===============================
   ELLIPSE TEXT + ICON MARQUEE SECTION
=============================== */
.ellipse-section {
  position: relative;
  width: 100%;
  text-align: center;
  background: transparent;
  margin-top: -110px;
  z-index: 4;
}

.ellipse-text {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-weight: 400;
  transform: translateY(-60px); /* move up more */
  margin-top: 20px; /* reduce space above */
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px; /* space between lines */
}

.marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollLeft 50s linear infinite;
  align-items: center;
}

.marquee.reverse {
  animation: scrollRight 50s linear infinite;
}

.marquee img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Continuous scroll animations */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move half the content (because duplicated) */
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


.empower-section {
  /*background: radial-gradient(90% 120% at 10% 20%, #0a001a 0%, #030011 100%);*/
  color: #fff;
  padding: 150px 8% 120px; /* added top spacing for balanced layout */
  position: relative;
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

/* Header */
.empower-header {
  margin-top: 60px; /* pushes the whole header section down */
}

.empower-header h2 {
  font-size: 30px; /* reduced heading size */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.empower-header p {
  font-size: 15px;
  color: #bcbcbc;
  margin-top: 10px;
  margin-bottom: 50px;
  max-width: 600px;
}

/* Slider Layout */
.empower-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.empower-content {
  width: 50%;
}

.empower-content h3 {
  color: #00ffe0;
  font-size: 20px;
  margin-bottom: 10px;
}

.empower-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}

/* Extras box */
.extra-box {
  margin-top: 20px;
  display: none;
}

.extra-box div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  margin-right: 8px;
  font-size: 13px;
}

/* Image Styling */
.empower-image-container {
  width: 45%;
  position: relative;
  text-align: right;
}

.empower-image-container img {
  width: 100%;
  height: 320px; /* ✅ same height for all images */
  object-fit: cover; /* ensures consistent proportions */
  border-radius: 25px;
  box-shadow: 0 0 80px rgba(0, 255, 234, 0.3);
  transition: 0.6s;
}

.empower-image-container img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 100px rgba(0, 255, 234, 0.5);
}

/* Play Circle (Base Style) */
.play-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-circle i {
  color: #bbb;
  font-size: 22px;
}

/* Hover Glow */
.play-circle:hover {
  box-shadow: 0 0 30px rgba(0, 255, 234, 0.5);
  border-color: rgba(0, 255, 234, 0.6);
}

/* Right-side Play Button */
.play-circle.right-play {
  right: -70px;
}

/* Left-side Play Button */
.play-circle.left-play {
  left: -800px;
}

/* Curved lines effect */
.curved-lines {
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 220px;
  height: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  opacity: 0.6;
}


/* Music Icon Overlap */
.music-icon {
  position: absolute;
  bottom: -40px;
  left: -70px;
  width: 90px;
  height: 90px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.03);
}

.music-icon i {
  color: #aaa;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 1024px) {
  .empower-slider {
  animation: slideEmpower 5s linear infinite; /* 🔥 faster speed (10s) */
}

  .empower-content, .empower-image-container {
    width: 100%;
  }
  .music-icon, .play-circle {
    display: none;
  }
}

/* ===============================
   GLOBAL MUSIC DISTRIBUTION SECTION (PERFECTLY BALANCED LAYOUT)
=============================== */
.tune-section {
  position: relative;
  width: 100%;
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  overflow: hidden;
}

.tune-content {
  position: relative;
  z-index: 2;
}

.tune-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.tune-title span {
  color: #fff;
}

.tune-subtext {
  font-size: 18px;
  color: #dcdcdc;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.tune-btn {
  background: linear-gradient(90deg, #4328ff, #00c8ff);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tune-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #00c8ff;
}

/* ===============================
   FLOATING PLATFORM LOGOS
=============================== */
.tune-platforms {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.platform-img {
  position: absolute;
  width: 150px;
  height: auto;
  background: #fff;
  border-radius: 12px;
  padding: 12px 25px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.platform-img:hover {
  transform: scale(1.05);
}

/* ===== Balanced image positions like your screenshot ===== */
.top-left {
  top: 60px;
  left: 140px;
}

.top-right {
  top: 60px;
  right: 140px;
}

.bottom-left {
  bottom: 60px;
  left: 180px;
}

.bottom-right {
  bottom: 60px;
  right: 180px;
}

.mid-left {
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

.mid-right {
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

/* ===== Responsive adjustments ===== */
@media (max-width: 900px) {
  .platform-img {
    width: 100px;
    padding: 8px 16px;
  }
  .top-left { top: 40px; left: 50px; }
  .top-right { top: 40px; right: 50px; }
  .bottom-left { bottom: 60px; left: 50px; }
  .bottom-right { bottom: 60px; right: 50px; }
}

/* ===============================
   HOW DOES TUNEWAVE HELP LABELS SECTION
=============================== */
.labels-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 120px 10%;
  background: transparent; /* 🔹 removed blue radial background */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.labels-content {
  flex: 1;
  z-index: 2;
}

.labels-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.labels-title span {
 /* color: #9b59ff;*/
}

.labels-text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  max-width: 600px;
}

/* ===============================
   RIGHT SIDE ROTATING BAND VISUAL
=============================== */
.labels-visual {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* Enhanced rectangle outline */
.outline-rect {
  position: absolute;
  top: -28px;    /* moved a bit higher */
  left: 28px;    /* moved further right */
  width: 102%;   /* slightly bigger */
  height: 102%;
  border: 2px solid #fff;
  border-radius: 22px;
  z-index: 1;
  background: transparent;
  opacity: 0.8;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3)); /* soft glow effect */
}


/* Rotating band (reduced spacing) */
.rotating-band {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  animation: rotateBand 18s linear infinite;
  z-index: 2;
}

/* Each album */
.rotating-band img {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Even closer album spacing */
.rotating-band img:nth-child(1) { transform: rotateY(0deg) translateZ(220px); }
.rotating-band img:nth-child(2) { transform: rotateY(45deg) translateZ(220px); }
.rotating-band img:nth-child(3) { transform: rotateY(90deg) translateZ(220px); }
.rotating-band img:nth-child(4) { transform: rotateY(135deg) translateZ(220px); }
.rotating-band img:nth-child(5) { transform: rotateY(180deg) translateZ(220px); }
.rotating-band img:nth-child(6) { transform: rotateY(225deg) translateZ(220px); }
.rotating-band img:nth-child(7) { transform: rotateY(270deg) translateZ(220px); }
.rotating-band img:nth-child(8) { transform: rotateY(315deg) translateZ(220px); }

/* Rotation animation */
@keyframes rotateBand {
  0% { transform: rotateY(0deg) rotateX(15deg); }
  100% { transform: rotateY(360deg) rotateX(15deg); }
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 900px) {
  .labels-section {
    flex-direction: column;
    text-align: center;
  }
  .labels-content {
    margin-bottom: 40px;
  }
  .outline-box {
    width: 300px;
    height: 180px;
  }
  .rotating-band {
    width: 200px;
    height: 200px;
  }
  .rotating-band img {
    width: 100px;
    height: 100px;
  }
}

.clients-section {
  background: none;
  padding: 80px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Client Heading */
.client-heading {
  text-align: center;
  font-size: 20px;
  margin-top: -200px; 
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* Wrapper for carousel */
.reviews-section-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  align-items: center;
}

/* Reviews carousel container */
.reviews-section {
  display: flex;
  gap: 30px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  width: 100%;
}

/* Individual card */
.review-card {
  background: rgba(13, 13, 13, 1);
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 350px;
  min-width: calc(33.33% - 20px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

/* Background shape */
.review-card .background-shape {
  position: absolute;
  width: 130%;
  height: 130%;
  top: -15%;
  left: -15%;
  z-index: 0;
  transform: rotate(-15deg);
  opacity: 0.15;
  border-radius: 50%;
  transition: transform 0.8s ease, background 0.8s ease, box-shadow 0.8s ease;
}

.review-card:hover .background-shape {
  transform: rotate(5deg);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.review-card:nth-child(1) .background-shape {
  background: linear-gradient(180deg, #7738A2 6.25%, rgba(43, 75, 184, 0.3) 100%);
}

.review-card:nth-child(2) .background-shape {
  background: linear-gradient(180deg, #FF6B6B 6.25%, rgba(255, 183, 197, 0.3) 100%);
}

.review-card:nth-child(3) .background-shape {
  background: linear-gradient(180deg, #FFD93D 6.25%, rgba(255, 220, 120, 0.3) 100%);
}

.review-card:nth-child(4) .background-shape {
  background: linear-gradient(180deg, #4CAF50 6.25%, rgba(144, 238, 144, 0.3) 100%);
}

/* Client Image */
.client-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #4A90E2;
  z-index: 1;
  position: relative;
}

.client-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.client-role {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 15px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.role-icon {
  color: #4A90E2;
  margin-left: 5px;
  font-size: 1rem;
}

.client-quote {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  color: #ddd;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}

.arrow.left { left: -25px; }
.arrow.right { right: -25px; }

.arrow:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}


.ornament-divider {
  position: relative;
  width: 100%;
  height: 180px; /* adjust based on image */
  background: transparent;
  overflow: visible;
  z-index: 3;
}

.ornament-left {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-30px); /* adjust to control overlap */
  width: 220px; /* adjust as needed */
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}
