/* =============================================================
   ANCHOR AMOL SONI — style.css
   Theme: Black base · White text · Gold + Silver accents
   ============================================================= */

/* -------------------------------------------------------------
   THEME VARIABLES  (change these to re-theme the whole site)
------------------------------------------------------------- */
:root {
  /* Core surfaces */
  --c-black: #0a0a0a;
  --c-bg: #0d0d0d;
  --c-surface: #141414;
  --c-surface-2: #191919;
  --c-surface-3: #1f1f1f;

  /* Gold accents (solid — no gradient) */
  --c-gold: #F2CC22;
  --c-gold-light: #f7da55;
  --c-gold-deep: #d4af1e;
  --c-gold-grad: #F2CC22;
  /* kept as a variable name but now a solid colour */

  /* Silver accents */
  --c-silver: #c8c8c8;
  --c-silver-light: #ececec;
  --c-silver-deep: #8d8d8d;

  /* Text */
  --c-white: #ffffff;
  --c-text: #ededed;
  --c-muted: #9a9a9a;

  /* Borders / shadows */
  --c-border: rgba(242, 204, 34, 0.18);
  --c-border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 12px 38px rgba(242, 204, 34, 0.22);

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-util: 'Oswald', sans-serif;

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container-pad: 1rem;
}

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

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* -------------------------------------------------------------
   BASE / RESET
------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
  /* no horizontal scroll on mobile */
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  transition: color .3s var(--ease);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--c-white);
  margin: 0;
  line-height: 1.2;
}

/* Gold gradient text helper */
.gold-text {
  background: var(--c-gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--c-gold);
}

/* -------------------------------------------------------------
   REUSABLE BITS
------------------------------------------------------------- */
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow i {
  font-size: 1rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: .5px;
}

.section-title.left {
  text-align: left;
}

.section-sub {
  color: var(--c-muted);
  margin-top: .9rem;
  font-size: 1.02rem;
}

/* Buttons */
.btn-gold {
  background: var(--c-gold-grad);
  color: #1a1305;
  font-weight: 600;
  border: none;
  padding: .8rem 1.9rem;
  border-radius: 50px;
  letter-spacing: .3px;
  box-shadow: 0 8px 22px rgba(242, 204, 34, 0.28);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(242, 204, 34, 0.45);
  filter: brightness(1.06);
  color: #1a1305;
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--c-white);
  padding: .8rem 1.7rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all .35s var(--ease);
}

.btn-outline-light:hover {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
  transform: translateY(-3px);
}

.btn-play i {
  font-size: 1.2rem;
  vertical-align: -2px;
  margin-right: 4px;
}

/* -------------------------------------------------------------
   1. TOP BAR
------------------------------------------------------------- */
.topbar {
  background: linear-gradient(90deg, #060606, #151515, #060606);
  border-bottom: 1px solid var(--c-border);
  font-size: .85rem;
  position: relative;
  z-index: 1040;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .55rem 0;
}

.topbar-contact {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.topbar-contact a,
.topbar-tagline {
  color: var(--c-silver);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.topbar-contact a:hover {
  color: var(--c-gold);
}

.topbar-contact i,
.topbar-tagline i {
  color: var(--c-gold);
}

.topbar-tagline {
  font-family: var(--font-util);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .78rem;
}

.topbar-social {
  display: flex;
  gap: .85rem;
}

.topbar-social a {
  color: var(--c-silver);
  font-size: 1rem;
}

.topbar-social a:hover {
  color: var(--c-gold);
  transform: translateY(-2px);
  transition: all .3s var(--ease);
}

/* -------------------------------------------------------------
   2. NAVBAR
------------------------------------------------------------- */
/* header is the sticky element (its child nav couldn't stick on its own
   because the header was the same height as the nav) */
header.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-nav {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-soft);
  position: relative;
  z-index: 1030;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-nav.scrolled {
  padding: .45rem 0;
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.brand-logo {
  height: 80px;
  width: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  background: var(--c-gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.brand-sub {
  font-family: var(--font-util);
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-silver-deep);
  margin-top: 3px;
}

.site-nav .nav-link {
  color: var(--c-text);
  font-weight: 500;
  font-size: .95rem;
  margin: 0 .35rem;
  position: relative;
  padding: .4rem .2rem;
}

.site-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--c-gold-grad);
  transition: width .35s var(--ease);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--c-gold);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
  padding: .55rem 1.4rem;
  font-size: .92rem;
}

/* Custom hamburger */
.navbar-toggler {
  border: none;
  padding: .4rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-gold);
  margin: 5px 0;
  transition: .3s var(--ease);
}

/* -------------------------------------------------------------
   3. HERO
------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--c-black);
  overflow: hidden;
}

/* signature stage spotlights */
.spotlight {
  position: absolute;
  top: -20%;
  width: 60vw;
  height: 130%;
  pointer-events: none;
  z-index: 2;
  opacity: .5;
  filter: blur(8px);
}

.spotlight-1 {
  left: -10%;
  background: radial-gradient(ellipse at top, rgba(242, 204, 34, 0.25), transparent 55%);
  transform: rotate(8deg);
  animation: sway1 9s ease-in-out infinite alternate;
}

.spotlight-2 {
  right: -10%;
  background: radial-gradient(ellipse at top, rgba(200, 200, 200, 0.14), transparent 55%);
  transform: rotate(-8deg);
  animation: sway2 11s ease-in-out infinite alternate;
}

@keyframes sway1 {
  from {
    transform: rotate(6deg) translateX(-10px);
  }

  to {
    transform: rotate(12deg) translateX(20px);
  }
}

@keyframes sway2 {
  from {
    transform: rotate(-6deg) translateX(10px);
  }

  to {
    transform: rotate(-12deg) translateX(-20px);
  }
}

/* split hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0 2.5rem;
  position: relative;
  z-index: 3;
}

.hero-text {
  max-width: 620px;
}

.hero-name {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  letter-spacing: .5px;
  line-height: 1.05;
  margin-bottom: .4rem;
}

.hero-watermark {
  font-family: var(--font-util);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  letter-spacing: .42em;
  color: rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .8rem;
}

.hero-watermark::first-letter {
  color: var(--c-gold);
}

.hero-tag {
  display: inline-block;
  font-style: italic;
  color: var(--c-gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 4px;
  margin-bottom: 1.6rem;
}

.hero-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--c-white);
  margin-bottom: .4rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--c-silver-light);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold i,
.btn-dark-outline i {
  margin-right: 6px;
}

/* dark outline button (for "Watch in Action") */
.btn-dark-outline {
  background: rgba(20, 20, 20, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--c-white);
  padding: .8rem 1.7rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all .35s var(--ease);
}

.btn-dark-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-3px);
}

/* auto-changing photo with zoom-out animation */
.hero-photo {
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/4.6;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--c-gold);
  box-shadow: 0 24px 60px rgba(242, 204, 34, 0.18);
  background: var(--c-surface-3);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoom 6s ease forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.16);
  }

  to {
    transform: scale(1);
  }
}

/* show-carousel (gallery slider) controls */
.show-carousel .carousel-control-prev,
.show-carousel .carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 15, 15, 0.55);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s var(--ease);
  z-index: 4;
}

.show-carousel .carousel-control-prev i,
.show-carousel .carousel-control-next i {
  color: var(--c-gold);
  font-size: 1.4rem;
}

.show-carousel .carousel-control-prev:hover,
.show-carousel .carousel-control-next:hover {
  background: var(--c-gold);
}

.show-carousel .carousel-control-prev:hover i,
.show-carousel .carousel-control-next:hover i {
  color: #1a1305;
}

/* hero stat strip */
.hero-stats {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--c-surface), var(--c-surface-2));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin: 1rem auto 0;
  max-width: 920px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-stats .stat {
  text-align: center;
  padding: 1.6rem 1rem;
  position: relative;
}

.hero-stats .stat+.stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--c-border);
}

.hero-stats .num {
  font-family: var(--font-util);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--c-gold);
}

.hero-stats sup {
  color: var(--c-gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-stats small {
  display: block;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .72rem;
  margin-top: .3rem;
  font-family: var(--font-util);
}

/* -------------------------------------------------------------
   4. SERVICES
------------------------------------------------------------- */
.services {
  background: var(--c-bg);
}

.service-card {
  background: linear-gradient(160deg, var(--c-surface), var(--c-surface-2));
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 2.3rem 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(242, 204, 34, 0.07), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--c-border);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: var(--c-gold);
  background: rgba(242, 204, 34, 0.1);
  border: 1px solid var(--c-border);
  margin-bottom: 1.3rem;
  transition: all .4s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--c-gold-grad);
  color: #1a1305;
  transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .7rem;
}

.service-card p {
  color: var(--c-muted);
  font-size: .96rem;
  margin-bottom: 1.2rem;
}

.service-link {
  color: var(--c-gold);
  font-weight: 600;
  font-family: var(--font-util);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .82rem;
}

.service-link:hover {
  color: var(--c-gold-light);
  letter-spacing: 2px;
}

/* -------------------------------------------------------------
   5. ABOUT
------------------------------------------------------------- */
.about {
  background: linear-gradient(180deg, var(--c-bg), var(--c-surface));
}

.about-media {
  position: relative;
  padding: 1rem;
}

.about-img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--c-surface-3);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-soft);
}

.about-badge {
  position: absolute;
  right: -10px;
  bottom: 25px;
  background: var(--c-gold-grad);
  color: #1a1305;
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-num {
  font-family: var(--font-util);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.2;
}

.float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--c-gold);
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-soft);
}

.float-mic {
  top: -6px;
  left: -6px;
  animation: floatY 4s ease-in-out infinite;
}

.float-star {
  top: 40%;
  right: -14px;
  color: var(--c-silver);
  animation: floatY 5s ease-in-out infinite .8s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.lead-text {
  font-size: 1.15rem;
  color: var(--c-silver-light);
  font-weight: 500;
  margin: 1rem 0;
}

.about-list {
  margin: 1.4rem 0 1.8rem;
}

.about-list li {
  margin-bottom: .7rem;
  color: var(--c-text);
}

.about-list i {
  color: var(--c-gold);
  margin-right: .6rem;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.about-call {
  color: var(--c-white);
  font-weight: 600;
}

.about-call i {
  color: var(--c-gold);
  margin-right: .4rem;
}

.about-call:hover {
  color: var(--c-gold);
}

.achieve-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.4rem 0 1.8rem;
}

.achieve-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.1rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.achieve-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-border);
  background: linear-gradient(160deg, var(--c-surface-2), var(--c-surface-3));
}

.achieve-card i {
  font-size: 1.5rem;
  color: var(--c-gold);
  margin-bottom: .6rem;
  display: inline-block;
}

.achieve-card h5 {
  font-size: .95rem;
  color: var(--c-white);
  margin-bottom: .35rem;
}

.achieve-card p {
  font-size: .8rem;
  color: var(--c-muted);
  line-height: 1.4;
  margin: 0;
}

/* -------------------------------------------------------------
   6. WHY CHOOSE
------------------------------------------------------------- */
.why {
  background: var(--c-surface);
}

.why-card {
  text-align: center;
  padding: 2.2rem 1.4rem;
  height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--c-border-soft);
  background: var(--c-bg);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}

.why-card i {
  font-size: 2.4rem;
  color: var(--c-gold);
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform .4s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--c-border);
  background: linear-gradient(160deg, var(--c-surface-2), var(--c-surface-3));
}

.why-card:hover i {
  transform: scale(1.15) rotate(5deg);
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.why-card p {
  color: var(--c-muted);
  font-size: .92rem;
}

/* -------------------------------------------------------------
   7. HOW IT WORKS
------------------------------------------------------------- */
.how {
  background: linear-gradient(180deg, var(--c-surface), var(--c-bg));
}

.how-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}

.how-step {
  position: relative;
  padding-top: 1.5rem;
}

.how-num {
  font-family: var(--font-util);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 204, 34, 0.5);
  position: absolute;
  top: -10px;
  left: 8px;
  z-index: 0;
}

.how-body {
  position: relative;
  z-index: 1;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.4rem 1.6rem;
  height: 100%;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}

.how-step:hover .how-body {
  transform: translateY(-8px);
  border-color: var(--c-border);
}

.how-body i {
  font-size: 1.8rem;
  color: var(--c-gold);
  margin-bottom: .8rem;
  display: inline-block;
}

.how-body h4 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.how-body p {
  color: var(--c-muted);
  font-size: .9rem;
}

/* -------------------------------------------------------------
   8. IMAGE MARQUEE — Gallery & BTS (JS auto-scroll, pause on hover)
------------------------------------------------------------- */
.bts {
  background: var(--c-black);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.bts-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.bts-track {
  display: flex;
  align-items: center;
  gap: .9rem;
  width: max-content;
  will-change: transform;
  /* movement is driven by script.js (rAF) */
}

.bts-card {
  flex: 0 0 auto;
  width: 215px;
  height: 268px;
  /* smaller so 5+ cards show at once */
  border-radius: 18px;
  overflow: hidden;
  background: var(--c-surface-3);
  border: 1px solid var(--c-border-soft);
  box-shadow: var(--shadow-soft);
}

.bts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease);
}

.bts-card:hover img {
  transform: scale(1.07);
}

/* -------------------------------------------------------------
   8B. FEATURED ON — TV/OTT LOGO MARQUEE (JS auto-scroll, pause on hover)
------------------------------------------------------------- */
.featured-on {
  background: var(--c-surface);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  /* movement is driven by script.js (rAF) */
}

.logo-card {
  flex: 0 0 auto;
  width: 180px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  font-family: var(--font-util);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: opacity .35s var(--ease), filter .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

/* Once a real logo <img> is dropped in, it sizes to fit automatically */
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-card:hover {
  opacity: 1;
  filter: grayscale(0);
  border-color: var(--c-border);
  transform: translateY(-3px);
}

/* -------------------------------------------------------------
   9. SHOWCASE CAROUSEL
------------------------------------------------------------- */
.showcase {
  background: var(--c-bg);
}

.show-carousel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-soft);
}

.show-slide {
  min-height: 460px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-surface-3);
  display: flex;
  align-items: flex-end;
  position: relative;
}

.show-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.85), transparent 60%);
}

.show-caption {
  position: relative;
  z-index: 2;
  padding: 2rem 2.4rem;
}

.show-caption h4 {
  font-size: 1.6rem;
  margin-bottom: .3rem;
}

.show-caption p {
  color: var(--c-silver);
  margin: 0;
}

.show-carousel .carousel-control-prev {
  left: 1.5%;
}

.show-carousel .carousel-control-next {
  right: 1.5%;
}

/* -------------------------------------------------------------
   VIDEOS — Watch in Action (YouTube facade grid)
------------------------------------------------------------- */
.videos {
  background: var(--c-bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.yt-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.yt-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-border);
  box-shadow: var(--shadow-gold);
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #000;
  cursor: pointer;
  display: block;
}

.yt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 55%);
  transition: background .3s var(--ease);
  z-index: 1;
}

.yt-card:hover .yt-thumb::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 60%);
}

.yt-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: #ff0000;
  color: #fff;
  font-size: 1.6rem;
  z-index: 2;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform .3s var(--ease), background .3s var(--ease);
}

.yt-card:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.yt-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.1rem;
  color: var(--c-text);
  font-weight: 500;
}

.yt-meta i {
  color: var(--c-gold);
}

.videos-cta {
  text-align: center;
  margin-top: 2.5rem;
}


.testimonials {
  background: linear-gradient(180deg, var(--c-bg), var(--c-surface));
  position: relative;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  top: 6%;
  right: 6%;
  font-size: 14rem;
  color: rgba(242, 204, 34, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testi3d {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.testi3d-stage {
  position: relative;
  height: 360px;
  perspective: 1700px;
  transform-style: preserve-3d;
}

.t-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 340px;
  margin-left: -170px;
  /* horizontally centred base */
  min-height: 320px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-soft);
  border-radius: 18px;
  padding: 2rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  text-align: left;
  cursor: pointer;
  backface-visibility: hidden;
  transition: transform .6s var(--ease), opacity .6s var(--ease),
    background .5s var(--ease), box-shadow .5s var(--ease);
}

.t-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-util);
  font-weight: 700;
  font-size: 1.2rem;
  color: #10100c;
  background: var(--av, var(--c-gold));
  margin-bottom: 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.t-quote {
  color: var(--c-silver-light);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.t-name {
  font-style: italic;
  color: var(--c-muted);
  font-size: .92rem;
  display: block;
  margin-bottom: .9rem;
}

.t-readmore {
  background: none;
  border: none;
  padding: 0;
  color: var(--c-gold);
  font-weight: 600;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer;
}

.t-readmore i {
  font-size: .78rem;
}

.t-readmore:hover {
  gap: .55rem;
}

/* the front (active) card — highlighted gold with a folded corner */
.t-card.is-active {
  background: var(--c-gold-grad);
  border-color: transparent;
  box-shadow: 0 26px 60px rgba(242, 204, 34, 0.32);
}

.t-card.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: var(--c-bg) var(--c-bg) transparent transparent;
  border-top-right-radius: 18px;
}

.t-card.is-active .t-quote {
  color: #1c1606;
}

.t-card.is-active .t-name {
  color: #5a4a16;
}

.t-card.is-active .t-readmore {
  color: #2a2008;
}

/* nav */
.testi3d-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  margin-top: 1.6rem;
}

.t-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
  color: var(--c-gold);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.t-arrow:hover {
  background: var(--c-gold);
  color: #1a1305;
  transform: translateY(-2px);
}

.t-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  padding: 0;
}

.t-dot.active {
  background: var(--c-gold);
  width: 26px;
  border-radius: 6px;
}

/* full-review modal */
.testi-modal .modal-content {
  background: linear-gradient(160deg, var(--c-surface-2), var(--c-surface-3));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  padding: 2.4rem;
  position: relative;
}

.testi-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  filter: invert(1) grayscale(1);
  opacity: .7;
}

.testi-modal .modal-quote-ic {
  font-size: 3rem;
  color: var(--c-gold);
  line-height: 1;
}

.testi-modal .modal-quote {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--c-silver-light);
  font-style: italic;
  margin: .6rem 0 1.2rem;
}

.testi-modal .modal-name {
  color: var(--c-gold);
  font-family: var(--font-display);
  font-weight: 600;
}

/* -------------------------------------------------------------
   11. GALLERY GRID  (4/row desktop, 2/row mobile)
------------------------------------------------------------- */
.gallery {
  background: var(--c-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--c-border-soft);
  background: var(--c-surface-3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(242, 204, 34, 0.35), rgba(5, 5, 5, 0.5));
  color: var(--c-white);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}





.soniamol {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid yellow;
}

/* -------------------------------------------------------------
   13. CONTACT
------------------------------------------------------------- */
.contact {
  background: linear-gradient(180deg, var(--c-surface), var(--c-bg));
}

.contact-info {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.info-ic {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(242, 204, 34, 0.1);
  border: 1px solid var(--c-border);
  color: var(--c-gold);
  font-size: 1.1rem;
}

.info-row strong {
  display: block;
  color: var(--c-white);
  margin-bottom: 2px;
}

.info-row a,
.info-row span {
  color: var(--c-muted);
  font-size: .94rem;
}

.info-row a:hover {
  color: var(--c-gold);
}

.info-social {
  display: flex;
  gap: .8rem;
  margin: .4rem 0 1.4rem;
}

.info-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-surface-3);
  color: var(--c-silver);
  border: 1px solid var(--c-border-soft);
  transition: all .3s var(--ease);
}

.info-social a:hover {
  background: var(--c-gold);
  color: #1a1305;
  transform: translateY(-3px);
}

.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--c-border-soft);
}

.contact-map iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
  filter: grayscale(.4) invert(.9) hue-rotate(180deg) contrast(.9);
}

.contact-form {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.form-label {
  color: var(--c-silver);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: .4rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--c-bg);
  border: 1px solid var(--c-border-soft);
  color: var(--c-text);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
}

.contact-form .form-control::placeholder {
  color: #6a6a6a;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--c-bg);
  color: var(--c-text);
  border-color: var(--c-gold);
  box-shadow: 0 0 0 .2rem rgba(242, 204, 34, 0.18);
}

.contact-form select option {
  background: var(--c-surface-2);
}

.btn-block-cta {
  width: 100%;
  padding: .9rem;
  font-size: 1.02rem;
}

.form-note {
  margin-top: .8rem;
  font-size: .9rem;
  color: var(--c-gold);
  min-height: 1rem;
}

/* -------------------------------------------------------------
   14. FOOTER
------------------------------------------------------------- */
.footer {
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
  padding: 3.5rem 0 1.5rem;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-about {
  color: var(--c-muted);
  font-size: .92rem;
  max-width: 330px;
}

.footer-social {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--c-surface-2);
  color: var(--c-silver);
  border: 1px solid var(--c-border-soft);
  transition: all .3s var(--ease);
}

.footer-social a:hover {
  background: var(--c-gold);
  color: #1a1305;
  transform: translateY(-3px);
}

.footer h5 {
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  color: var(--c-gold);
  margin-bottom: 1.2rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: .65rem;
}

.footer-links a {
  color: var(--c-muted);
  font-size: .92rem;
}

.footer-links a:hover {
  color: var(--c-gold);
  padding-left: 5px;
}

.footer-contact li {
  color: var(--c-muted);
  font-size: .92rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.footer-contact i {
  color: var(--c-gold);
  margin-top: 4px;
}

.footer-contact a {
  color: var(--c-muted);
}

.footer-contact a:hover {
  color: var(--c-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--c-border-soft);
  color: var(--c-silver-deep);
  font-size: .85rem;
}

.footer-bottom i {
  color: var(--c-gold);
}

/* -------------------------------------------------------------
   12. FLOATING BUTTONS + BACK TO TOP
------------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 24px;
  z-index: 1050;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transition: transform .3s var(--ease);
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-whatsapp {
  left: 24px;
  background: #25d366;
  animation: pulseGreen 2.4s infinite;
}

.float-call {
  right: 24px;
  background: var(--c-gold-grad);
  color: #1a1305;
  animation: pulseGold 2.4s infinite;
}

.float-call:hover {
  color: #1a1305;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 204, 34, 0.5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(242, 204, 34, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 204, 34, 0);
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1045;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
  color: var(--c-gold);
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-gold);
  color: #1a1305;
}

/* -------------------------------------------------------------
   SCROLL REVEAL ANIMATION
------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--c-surface);
    margin-top: .8rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border-soft);
  }

  .site-nav .nav-link {
    margin: .2rem 0;
  }

  .nav-cta {
    margin: .8rem 0 0;
    display: inline-block;
  }

  .how-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .topbar-tagline {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-watermark {
    letter-spacing: .32em;
  }

  .hero-tag,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-photo-frame {
    max-width: 380px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .hero-carousel .carousel-item {
    min-height: 78vh;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }

  .hero-stats .stat:nth-child(3)::before,
  .hero-stats .stat:nth-child(odd)::before {
    display: none;
  }

  .hero-stats .stat:nth-child(2)::before,
  .hero-stats .stat:nth-child(4)::before {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 2 per row on mobile */
  .video-grid {
    grid-template-columns: 1fr;
  }

  .section-title.left {
    text-align: center;
  }

  .about-cta,
  .section-head {
    text-align: center;
  }

  .achieve-highlights {
    grid-template-columns: 1fr;
  }

  .quote-bg {
    font-size: 8rem;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-contact {
    justify-content: center;
  }

  .t-card {
    width: 300px;
    margin-left: -150px;
  }

  .testi3d-stage {
    height: 380px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .how-track {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .bts-card {
    width: 150px;
    height: 190px;
    border-radius: 14px;
  }

  .logo-card {
    width: 130px;
    height: 72px;
    font-size: .72rem;
    padding: 0 .6rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-black, #0a0a0a);
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.preloader-ring {
  position: absolute;
  top: -14px;
  width: 78px;
  height: 78px;
  border: 3px solid rgba(242, 204, 34, 0.18);
  border-top-color: var(--c-gold, #F2CC22);
  border-radius: 50%;
  animation: preSpin 0.9s linear infinite;
}
.preloader-mic {
  font-size: 2.1rem;
  color: var(--c-gold, #F2CC22);
  animation: prePulse 1.2s ease-in-out infinite;
}
.preloader-name {
  font-family: var(--font-util, 'Oswald', sans-serif);
  font-weight: 700;
  letter-spacing: 6px;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.85;
}
@keyframes preSpin {
  to { transform: rotate(360deg); }
}
@keyframes prePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.82); opacity: 0.6; }
}