/* Aditya Music — Saregama-like layout + logo palette (#ED1C24 / #00AEEF / black / white)
   Typography (per saregama.com): UI/body ≈ Source Sans Pro → we use Source Sans 3.
   Section titles like Product Store `h2.headTitle` use Poppins from Google Fonts — we mirror that for headings. */
:root {
  --font-heading: "Poppins", system-ui, -apple-system, sans-serif;
  --brand-red: #fc030b;
  --brand-red-dark: #c41218;
  --brand-blue: #00a5f1;
  --brand-black: #090506;
  --primary: var(--brand-red);
  --primary-hover: var(--brand-red-dark);
  --accent: var(--brand-blue);
  --bs-primary: var(--brand-red);
  --bs-primary-rgb: 237, 28, 36;
  --bg: #ffffff;
  /* Saregama page canvas */
  --page-canvas: #f3f3f4;
  --bg-muted: #f4f6f8;
  --text: #1a1a1a;
  /* Saregama body copy (~#898d8f) — headings/cards override darker */
  --text-body: #6e7174;
  --text-muted: #5c636a;
  /* Saregama accent link (~#10bbc1); we use brand blue */
  --link-accent: var(--brand-blue);
  --radius: 15px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-brand: 0 6px 22px rgba(237, 28, 36, 0.35);
  --header-h: 64px;
  --nav-h: 88px;
  --nav-active: #090506;
  --nav-active-dark: #fc030b;
  --nav-muted: #6b7280;
  --bs-body-font-family: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Alias: "SourceSansProLight" (Light/300). Uses already-imported Source Sans 3. */
.font-sourcesansprolight {
  font-family: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
}

/* If you want to reference it as a font-family name: */
@font-face {
  font-family: "SourceSansProLight";
  src: local("Source Sans 3 Light"), local("Source Sans Pro Light");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Bootstrap 3 icon font (web import) */
@font-face {
  font-family: "Glyphicons Halflings";
  src: url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/fonts/glyphicons-halflings-regular.eot");
  src:
    url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/fonts/glyphicons-halflings-regular.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/fonts/glyphicons-halflings-regular.woff2")
      format("woff2"),
    url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/fonts/glyphicons-halflings-regular.woff")
      format("woff"),
    url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/fonts/glyphicons-halflings-regular.ttf")
      format("truetype"),
    url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular")
      format("svg");
  font-weight: 400;
  font-style: normal;
}

/* Bootstrap-aligned brand buttons (unique: red fill + sky-blue underline + lift on hover) */
.btn-am-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-red);
  --bs-btn-border-color: var(--brand-red);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-red-dark);
  --bs-btn-hover-border-color: var(--brand-red-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-red-dark);
  --bs-btn-active-border-color: var(--brand-red-dark);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e9a0a3;
  --bs-btn-disabled-border-color: #e9a0a3;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 3px solid var(--brand-blue) !important;
  box-shadow: var(--shadow-brand);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-am-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 174, 239, 0.35);
  border-bottom-color: var(--brand-blue) !important;
}

.btn-am-primary:active {
  transform: translateY(0);
}

/* Dark CTAs — logo “MUSIC” bar */
.btn-am-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-black);
  --bs-btn-border-color: var(--brand-black);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1f1f1f;
  --bs-btn-hover-border-color: #1f1f1f;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 3px solid var(--brand-blue) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-am-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 174, 239, 0.25);
}

.page-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--page-canvas);
}

/* ——— About page (middle section only) ——— */
.about-main {
  padding: 28px 0 52px;
}

.about-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.about-title {
  font-family: var(--font-heading);
  font-size: 50px;
  color: var(--brand-red);
  font-weight: 100;
  margin: 16px 50px 16px;
  text-align: center;
}

.about-content {
  margin: 0 50px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-body);
}

.about-content p {
  color: #090506;
  font-size: 17px;
  display: block;
  line-height: 37px;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #1f2328;
  margin: 14px 0 6px;
}

.about-content strong {
  color: #1f2328;
  font-weight: 700;
}

.about-tagline {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.02em;
  color: #82c341;
  margin: 42px 0 0;
}

@media (min-width: 768px) {
  .about-main {
    padding: 36px 0 64px;
  }
}

/* ——— Hindi / regional music catalog (Bollywood Films Albums style) ——— */
.music-main {
  padding: 28px 0 52px;
}

.music-main .music-catalog-panel {
  padding-top: 28px;
  padding-bottom: 32px;
}

.music-promo-wrap {
  margin-bottom: 0.75rem;
}

.music-promo-wrap .music-catalog-promo-inner {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.music-promo-wrap .banner-box {
  border-radius: 20px;
}

.music-catalog-head {
  margin-bottom: 1.25rem;
}

.music-catalog-head .headTitle {
  margin-bottom: 1rem;
}

.music-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 1rem;
}

.music-catalog-tabs {
  display: inline-flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.home-tabs__container {
  padding-top: 10px;
  padding-bottom: 6px;
}

.home-tabs__head {
  margin-bottom: 14px;
}

.home-tabs__main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.home-tab {
  border: 1px solid rgba(9, 5, 6, 0.12);
  background: #ffffff;
  color: rgba(9, 5, 6, 0.78);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.home-tab:hover {
  border-color: rgba(252, 3, 11, 0.4);
  color: var(--brand-red);
  transform: translateY(-1px);
}

.home-tab.is-active,
.home-tab[aria-selected="true"] {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(252, 3, 11, 0.22);
}

.home-tabs__panels .container.box-white-container,
.home-tabs__panels .container.box-black-container {
  width: 100%;
  max-width: 95%;
}

@media (max-width: 991.98px) {
  .home-tabs__main {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 6px;
    padding-top: 2px;
    margin-left: -2px;
    margin-right: -2px;
  }

  .home-tab {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.1;
  }

  .home-tabs__main::-webkit-scrollbar {
    height: 6px;
  }

  .home-tabs__main::-webkit-scrollbar-thumb {
    background: rgba(9, 5, 6, 0.12);
    border-radius: 999px;
  }
}

.music-catalog-tab {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 0;
  background: #fff;
  color: #4b4b4b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.music-catalog-tab:hover {
  background: #f9fafb;
  color: var(--brand-red);
}

.music-catalog-tab.is-active {
  background: var(--brand-red);
  color: #fff;
}

.music-catalog-alpha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  flex: 1 1 200px;
  min-width: 0;
  padding: 8px 10px;
  background: #f0f0f0;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

.music-catalog-alpha a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4b4b4b;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

.music-catalog-alpha a:hover {
  background: rgba(252, 3, 11, 0.1);
  color: var(--brand-red);
}

.music-catalog-alpha a.is-active {
  background: #fff;
  color: var(--brand-red);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.music-catalog-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 220px;
  min-width: 160px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
}

.music-catalog-search .fa-search {
  color: #9ca3af;
  font-size: 14px;
}

.music-catalog-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 14px;
  color: #1a1a1a;
  min-width: 0;
}

.music-catalog-search input::placeholder {
  color: #9ca3af;
}

.music-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 576px) {
  .music-catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .music-catalog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.music-catalog-grid .album-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.music-catalog-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0 8px;
}

.music-catalog-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #eceef1;
  border-top-color: var(--brand-red);
  border-radius: 50%;
  animation: music-catalog-spin 0.75s linear infinite;
}

@keyframes music-catalog-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .music-main {
    padding: 36px 0 64px;
  }
}

/* ——— Contact page (middle section only) ——— */
.contact-breadcrumb {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-section {
  padding: 34px 0 52px;
  /* background: #ffffff; */
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-info-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 18px 22px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.contact-info-icon i {
  font-size: 18px;
}

.contact-info-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-red);
}

.contact-info-lead {
  margin: 8px 0 10px;
  font-size: 17px;
  line-height: 37px;
  color: rgba(9, 5, 6, 0.55);
}

.contact-info-value {
  margin: 0;
  font-size: 17px;
  line-height: 37px;
  font-weight: 600;
  color: rgba(9, 5, 6, 0.68);
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--brand-red);
  text-decoration: underline;
}

.contact-map-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #e9edf1;
}

.contact-map-banner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35) 55%, rgba(255, 255, 255, 0));
}

.contact-map-overlay .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 14px;
  pointer-events: none;
}

.contact-crumbs {
  font-size: 12px;
  line-height: 1.4;
  color: #6e7174;
  margin: 0;
}

.contact-crumbs a {
  color: #6e7174;
  text-decoration: none;
}

.contact-crumbs a:hover {
  text-decoration: underline;
}

.contact-crumb-sep {
  margin: 0 8px;
  opacity: 0.65;
}

.contact-title {
  margin: 6px 0 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: #20b3b7;
}

.contact-form-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 52px;
  color: var(--brand-red);
  margin: 8px 0 20px;
}

.contact-main {
  padding: 18px 0 52px;
}

.contact-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.contact-form {
  font-family: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #090506;
}

.contact-input {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  background: #fff;
  padding: 6px 12px;
  font-size: 18px;
  line-height: 1.2;
  color: #090506;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.contact-input::placeholder {
  color: rgba(9, 5, 6, 0.45);
}

.contact-input:focus {
  border-color: #bdbdbd;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.09);
}

.contact-select {
  padding-right: 32px;
}

.contact-field {
  position: relative;
}

.contact-star {
  position: absolute;
  right: -14px;
  top: 9px;
  color: #e11d48;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.contact-field--textarea .contact-star {
  top: 12px;
}

.contact-textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  padding: 10px 12px;
  font-size: 18px;
  line-height: 1.4;
  outline: none;
  resize: vertical;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.contact-textarea::placeholder {
  color: rgba(9, 5, 6, 0.45);
}

.contact-textarea:focus {
  border-color: #bdbdbd;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.09);
}

.contact-submit {
  display: inline-block;
  min-width: 140px;
  height: 44px;
  border: 0;
  border-radius: 2px;
  background: var(--brand-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-submit:hover {
  background: var(--brand-red-dark);
}

.contact-follow {
  margin-top: 40px;
  text-align: center;
}

.contact-follow-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  color: #20b3b7;
  margin: 0 0 10px;
}

.contact-follow-icons {
  display: inline-flex;
  gap: 10px;
}

.contact-note {
  margin: 14px 0 0;
  text-align: left;
  font-size: 12px;
  color: rgba(9, 5, 6, 0.45);
}

.contact-note-star {
  color: #e11d48;
  font-weight: 700;
}

.contact-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  background: var(--brand-red);
  font-size: 28px;
}

.contact-circle:hover {
  background: #0b8fd0;
  color: #fff !important;
}

.contact-circle:visited {
  color: #fff !important;
}

.contact-side {
  background: #ffffff;
}

.contact-side-head {
  background: #6e6e6e;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
}

.contact-side-body {
  padding: 12px;
  font-size: 12px;
  line-height: 1.45;
  color: #090506;
}

.contact-side-title {
  font-weight: 700;
  margin: 0 0 10px;
}

.contact-side-body p {
  margin: 0 0 10px;
}

.contact-side-body a {
  color: #20b3b7;
  text-decoration: none;
}

.contact-side-body a:hover {
  text-decoration: underline;
}

.contact-side-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 12px 0;
}

.contact-side-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-side-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  background: var(--brand-red);
}

.contact-side-icon:hover {
  background: #0b8fd0;
  color: #fff !important;
}

.contact-side-icon:visited {
  color: #fff !important;
}

@media (min-width: 992px) {
  .contact-map-banner {
    height: 320px;
  }

  .contact-info-section {
    padding: 44px 0 64px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .contact-info-card {
    padding: 30px 18px 24px;
  }
}

a,
button,
.btn {
  transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease,
    transform 0.2s ease, opacity 0.35s ease;
}

/* Headings / hero titles: Poppins (matches Saregama Product Store & similar blocks) */
h1,
h2,
h3,
.hero-title {
  font-family: var(--font-heading);
}

.music-col > h3,
.music-store .h5 {
  font-family: var(--font-heading);
  font-weight: 600;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* In-page content links — Saregama-style accent (mapped to brand blue, not #10bbc1) */
main a:not(.btn):not(.stretched-link):not(.black-button) {
  color: var(--link-accent);
}

main a:not(.btn):not(.stretched-link):not(.black-button):hover {
  color: var(--nav-active-dark);
}

/* Beat generic main link rule (same specificity, later wins) */
main .know-more a {
  color: var(--brand-red);
}

main .know-more a:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

main .know-more--on-dark a {
  color: var(--brand-blue);
}

main .know-more--on-dark a:hover {
  color: #7ddbfc;
  text-decoration: underline;
}

main .banner-box .black-button,
main .banner-box .black-button:hover {
  color: #fff;
  text-decoration: none;
}

/* Keep buttons / UI chips on inherited or explicit colors */
main .btn,
main .btn:hover,
main .album-card a,
main .banner-box a,
main .dropdown-item {
  text-decoration: none;
}

main .btn {
  color: inherit;
}

main .btn-am-primary,
main .btn-am-dark {
  color: #fff;
}

main .btn-am-primary:hover,
main .btn-am-dark:hover {
  text-decoration: none;
}

.link-all {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-red);
}

.link-all:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

/* Slightly narrower than default Bootstrap `container` at XL */
.container {
  max-width: 90%;
}

/* ——— Header (Saregama-style: light top bar, search + icon row, mega dropdowns) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.24s ease-in-out;
}

/* Only hide nav icon parts (emoji) on scroll */
.site-header.site-header--icons-hidden .nav-icon {
  display: none;
}

.header-top {
  background: #f5f6f8;
  border-bottom: 1px solid #e8eaed;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding: 10px 0;
  flex-wrap: wrap;
}

@media (max-width: 767.98px) {
  .search-wrap {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.logo {
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.92;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.search-wrap {
  position: relative;
  min-width: 200px;
}

.search-wrap input {
  width: 100%;
  padding: 10px 46px 10px 18px;
  border: 1px solid #dde1e6;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-wrap input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.18);
}

.search-submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--nav-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}

.search-submit:hover {
  background: rgba(0, 174, 239, 0.12);
  color: var(--nav-active);
}

.header-actions {
  display: flex;
  align-items: flex-end;
  gap: 4px 20px;
  flex-shrink: 0;
}

.header-action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 52px;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  color: #090506;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.header-action-link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #fc030b;
}

.header-action-icon svg {
  width: 26px;
  height: 26px;
}

.header-action-label {
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

/* Icon row + dropdowns — dark strip #090506; panels slightly elevated for contrast */
.main-nav {
  --main-nav-bg: #090506;
  --main-nav-panel: #141210;
  --main-nav-panel-deep: #0f0d0c;
  --main-nav-border: rgba(255, 255, 255, 0.12);
  --main-nav-border-soft: rgba(255, 255, 255, 0.08);
  --main-nav-text: rgba(255, 255, 255, 0.92);
  --main-nav-text-muted: rgba(255, 255, 255, 0.58);
  --main-nav-hover-fill: rgba(252, 3, 11, 0.2);
  --main-nav-hover-fill-strong: rgba(252, 3, 11, 0.28);
  border-top: 1px solid var(--main-nav-border-soft);
  padding: 0;
  background: var(--main-nav-bg) !important;
  color: var(--main-nav-text);
}

.main-nav.navbar-light .navbar-nav .nav-link {
  color: var(--main-nav-text);
}

.main-nav .dropdown-menu {
  --bs-dropdown-bg: var(--main-nav-panel);
  --bs-dropdown-border-color: var(--main-nav-border);
  --bs-dropdown-link-color: var(--main-nav-text);
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-link-hover-bg: var(--main-nav-hover-fill);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: var(--main-nav-hover-fill-strong);
  --bs-dropdown-link-disabled-color: rgba(255, 255, 255, 0.35);
  color: var(--main-nav-text);
}

/* Music Showcase row: glyphicon chevron matches dark strip */
.main-nav .nav-label .glyphicon {
  color: var(--main-nav-text-muted);
  opacity: 1;
}

.main-nav .nav-pill[aria-expanded="true"] .glyphicon-menu-down {
  color: #fc030b;
}

.main-nav .container {
  position: relative;
}

.main-nav-toggler {
  position: relative;
  z-index: 2;
  padding: 0.35rem 0.5rem;
  margin: 0.5rem 0;
}

.main-nav-toggler .navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-nav-list {
  row-gap: 0.25rem;
  justify-content: center;
}

.main-nav-list > .nav-item {
  position: relative;
}

.nav-pill,
.nav-pill-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 78px;
  padding: 10px 8px 8px;
  margin: 0 auto;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--main-nav-text, #fff);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-pill:hover,
.nav-pill-link:hover,
.nav-pill:focus-visible,
.nav-pill-link:focus-visible {
  color: #fc030b;
}

/* Active page highlighting (header menu) */
.main-nav .nav-pill-link.is-active,
.main-nav .nav-pill.is-active,
.main-nav .nav-pill-link[aria-current="page"],
.main-nav .nav-pill[aria-current="page"] {
  color: var(--brand-red);
}

.nav-pill.dropdown-toggle::after {
  display: none;
}

.nav-pill--current,
.nav-pill--current.show,
.nav-pill--current[aria-expanded="true"] {
  color: #fc030b;
  background: transparent;
}

.nav-pill--current .nav-chevron::before {
  border-color: #fc030b transparent transparent transparent;
}

.business-main {
  background: #fff;
}

.business-mosaic {
  background: #090506;
}

.business-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 10px;
}

.business-mosaic__grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(1.05) contrast(1.02);
}

@media (min-width: 768px) {
  .business-mosaic__grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    padding: 14px;
  }

  .business-mosaic__grid img {
    height: 140px;
    border-radius: 10px;
  }
}

.business-intro {
  padding: 28px 0 44px;
}

.business-eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-red);
  font-size: 12px;
}

.business-title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-red);
}

.business-subtitle {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
}

.business-vertical-card {
  border: 1px solid #eceef1;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(9, 5, 6, 0.06);
  font-size: 17px;
}

.business-vertical-card .card-body {
  padding: 20px 18px;
}

.business-vertical-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(252, 3, 11, 0.08);
  color: var(--brand-red);
  font-size: 22px;
  margin-bottom: 12px;
}

.business-vertical-card__title {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 0 8px;
}

.business-vertical-card__desc {
  color: rgba(0, 0, 0, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

.business-vertical-card__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.business-vertical-card__list dt {
  font-weight: 800;
  color: rgba(0, 0, 0, 0.78);
  font-size: 18px;
}

.business-vertical-card__list dd {
  margin: 2px 0 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.45;
}

.career-main {
  background: #fff;
}

.career-hero {
  background: #090506;
  color: #fff;
  padding: 34px 0 28px;
}

.career-eyebrow {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.career-title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.career-subtitle {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.career-search {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.career-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}

.career-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 18, 16, 0.9);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.career-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.career-input:focus {
  border-color: rgba(252, 3, 11, 0.55);
  box-shadow: 0 0 0 4px rgba(252, 3, 11, 0.18);
}

.career-search__btn {
  border-radius: 14px;
  font-weight: 800;
  padding: 12px 14px;
  border-bottom: 3px solid var(--brand-blue);
}

.career-quicklinks a {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.career-quicklinks a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.career-section {
  padding: 34px 0;
}

.career-section--alt {
  background: #f6f7f9;
}

.career-section__head {
  max-width: 920px;
}

.career-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-red);
}

.career-section__subtitle {
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
}

.career-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(252, 3, 11, 0.08);
  color: rgba(9, 5, 6, 0.82);
  font-weight: 800;
  font-size: 12px;
}

.career-role-card,
.career-culture-card,
.career-location-card {
  border: 1px solid #eceef1;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(9, 5, 6, 0.06);
}

.career-role-card .card-body,
.career-culture-card .card-body,
.career-location-card .card-body {
  padding: 18px;
}

.career-role-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.career-role-card__title {
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-heading);
  margin: 0 0 8px;
}

.career-role-card__desc {
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.career-culture-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(252, 3, 11, 0.08);
  color: var(--brand-red);
  font-size: 22px;
  margin-bottom: 12px;
}

.career-culture-card__title {
  font-size: 17px;
  font-weight: 900;
  font-family: var(--font-heading);
  margin: 0 0 8px;
}

.career-culture-card__desc {
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.career-step {
  height: 100%;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid #eceef1;
  background: #fff;
  box-shadow: 0 10px 24px rgba(9, 5, 6, 0.05);
}

.career-step__num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(252, 3, 11, 0.1);
  color: var(--brand-red);
  font-weight: 900;
  margin-bottom: 10px;
}

.career-step__title {
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-heading);
  margin: 0 0 6px;
}

.career-step__desc {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.career-location-card__title {
  font-size: 17px;
  font-weight: 900;
  font-family: var(--font-heading);
  margin: 0 0 6px;
}

.career-location-card__desc {
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.career-accommodations {
  padding: 18px 0 26px;
  background: #090506;
  color: rgba(255, 255, 255, 0.78);
}

.career-accommodations a {
  color: #fff;
  font-weight: 800;
}

.career-accommodations a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.nav-label {
  display: block;
}

/* Chevron: down when closed, up when open (Saregama-style) */
.nav-chevron {
  display: block;
  width: 0;
  height: 0;
  margin-top: 1px;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: var(--nav-muted) transparent transparent transparent;
  transition: transform 0.2s ease;
}

.main-nav .nav-chevron {
  border-top-color: var(--main-nav-text-muted, rgba(255, 255, 255, 0.55));
}

.main-nav .nav-pill[aria-expanded="true"] .nav-chevron {
  border-top-color: #fc030b;
}

.nav-pill.dropdown-toggle .nav-chevron {
  margin-top: 2px;
}

.nav-pill[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  border-top-color: var(--nav-active);
}

.nav-pill--current[aria-expanded="false"] .nav-chevron {
  border-top-color: #fc030b;
}

.nav-item:not(.dropdown) .nav-chevron {
  display: none;
}

/* Dropdown panels — dark panels on #090506 strip */
.main-nav .nav-dropdown-menu {
  z-index: 1045;
  min-width: 240px;
  max-width: min(320px, 94vw);
  padding: 0.4rem 0;
  margin-top: 0.35rem !important;
  border: 1px solid var(--main-nav-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45) !important;
}

.main-nav .nav-dropdown-menu .dropdown-item {
  padding: 0.55rem 1rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--main-nav-text);
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-heading);
}

.main-nav .nav-dropdown-menu .dropdown-item:hover,
.main-nav .nav-dropdown-menu .dropdown-item:focus,
.main-nav .nav-dropdown-menu .dropdown-item:focus-visible {
  background: var(--main-nav-hover-fill);
  color: #fff;
}

.main-nav .nav-dropdown-menu .dropdown-divider {
  margin: 0.25rem 0;
  opacity: 1;
  border-color: var(--main-nav-border);
}

/* Nested (second level) — Hindi Films → … */
.main-nav .nav-dropdown-menu .dropend > .dropdown-item.dropdown-toggle::after {
  margin-left: auto;
  vertical-align: middle;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: rgba(255, 255, 255, 0.7);
}

.main-nav .nav-dropdown-menu .dropend .dropdown-menu.nav-submenu {
  margin-top: 0 !important;
  border: 1px solid var(--main-nav-border);
  border-radius: var(--radius-sm);
  background: var(--main-nav-panel-deep);
}

/* Desktop: open menus on hover (CSS-only) */
@media (min-width: 992px) {
  .main-nav .nav-item.dropdown:hover > .dropdown-menu,
  .main-nav .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  .main-nav .nav-dropdown-menu .dropend:hover > .dropdown-menu.nav-submenu,
  .main-nav .nav-dropdown-menu .dropend:focus-within > .dropdown-menu.nav-submenu {
    display: block;
  }

  /* Remove hover gap so cursor can travel into submenu */
  .main-nav .nav-item.dropdown > .dropdown-menu {
    margin-top: 0 !important;
    top: calc(100% - 1px);
  }

  .main-nav .nav-dropdown-menu .dropend > .dropdown-menu.nav-submenu {
    margin-left: 0 !important;
    top: -1px;
  }
}

@media (max-width: 991.98px) {
  .main-nav-list {
    align-items: stretch !important;
  }

  .nav-pill,
  .nav-pill-link {
    max-width: none;
    flex-direction: row;
    justify-content: flex-start;
    min-height: 48px;
    padding: 8px 12px;
    text-align: left;
  }

  .nav-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .nav-label {
    flex: 1;
  }

  .nav-pill.dropdown-toggle .nav-chevron {
    margin-left: auto;
  }

  .main-nav .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid var(--main-nav-border);
    margin-top: 0 !important;
    margin-left: 1rem !important;
    background: var(--main-nav-panel-deep);
  }

  .main-nav .nav-dropdown-menu .dropend .dropdown-menu.nav-submenu {
    position: static !important;
    margin-left: 0 !important;
    background: var(--main-nav-bg);
    border-color: var(--main-nav-border);
  }
}

/* ——— Full-bleed hero — matches Saregama banner assets (e.g. 1920×700, 96:35) ——— */
.hero-fullbleed {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  /* Same intrinsic ratio as saregama.com slider images (1920 / 700) */
  aspect-ratio: 1920 / 700;
  max-height: 700px;
}

@media (max-width: 768px) {
  .hero-slider {
    max-height: none;
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }
}

.hero-slider .hero-owl.owl-carousel {
  height: 100%;
}

.hero-slider .hero-owl .owl-stage-outer,
.hero-slider .hero-owl .owl-stage,
.hero-slider .hero-owl .owl-item {
  height: 100%;
}

.hero-slider .hero-owl .item {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  min-height: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, transparent 55%); */
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 0 1.75rem;
  max-width: 100%;
}

@media (min-width: 769px) {
  .hero-content {
    padding: 1.75rem 0 2.25rem;
  }
}

.hero-title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  max-width: 36rem;
}

.hero-lead {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 32rem;
}

/* Owl Carousel — hero */
.hero-slider .hero-owl .owl-nav {
  margin: 0;
}

.hero-slider .hero-owl .owl-nav button.owl-prev,
.hero-slider .hero-owl .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 50%;
  background: var(--brand-red) !important;
  color: #fff !important;
}

.hero-slider .hero-owl .owl-nav button.owl-prev:hover,
.hero-slider .hero-owl .owl-nav button.owl-next:hover {
  background: #0b8fd0 !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.06);
}

.hero-slider .hero-owl .owl-nav button.owl-prev {
  left: 16px;
}

.hero-slider .hero-owl .owl-nav button.owl-next {
  right: 16px;
}

.hero-slider .hero-owl .owl-nav button.owl-prev span,
.hero-slider .hero-owl .owl-nav button.owl-next span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-slider .hero-owl .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0 !important;
}

.hero-slider .hero-owl .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.4);
  /* border: 1px solid rgba(0, 174, 239, 0.6); */
  transition: background 0.2s, transform 0.2s;
}

.hero-slider .hero-owl .owl-dots .owl-dot.active span,
.hero-slider .hero-owl .owl-dots .owl-dot:hover span {
  background: var(--brand-red);
  border-color: var(--brand-blue);
  transform: scale(1.2);
}

/* ——— Section titles ——— */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

/* Saregama-style section rhythm + titles (.headTitle, .know-more) */
.section-block {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Saregama .mainHeading — same as .headTitle (new home uses ~25px / #4B4B4B) */
.headTitle,
.mainHeading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #4b4b4b;
  margin: 0 0 1rem;
}

.section-head-sg .headTitle {
  margin-bottom: 0;
}

.know-more {
  flex-shrink: 0;
}

.know-more a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-red);
}

.know-more a:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

.know-more--on-dark a {
  color: var(--brand-blue);
}

.know-more--on-dark a:hover {
  color: #7ddbfc;
}

/* Saregama .boxWhiteContainer — shared white cards (kebab + camelCase) */
.container.box-white-container,
.container.boxWhiteContainer {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
  background: #fff;
  color: #1c1c1c;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.25rem;
}

.box-white-container .headTitle,
.boxWhiteContainer .headTitle,
.box-white-container .mainHeading,
.boxWhiteContainer .mainHeading {
  color: #4b4b4b;
}

/* Saregama .boxBlackContainer.films-section */
.container.box-black-container,
.container.boxBlackContainer {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 35px;
  background: #090506;
  color: #f0f0f0;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
}

.box-black-container .headTitle,
.boxBlackContainer .headTitle,
.box-black-container .mainHeading,
.boxBlackContainer .mainHeading {
  color: #fff;
}

/* Saregama .fullBanner — edge-to-edge strip, inner .container */
.full-banner {
  width: 100%;
  margin-bottom: 0;
}

.full-banner .promo-banner {
  margin-bottom: 0;
}

/* Live Events — .liveEvents-container + .bannerBox / .blackButton */
.live-events-box {
  margin-top: 0.5rem;
}

.banner-box {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.banner-box .img-blk {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 760 / 350;
  object-fit: cover;
}

.banner-box .black-button {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.banner-box .black-button:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

/* ——— Music store — matches Saregama .container.boxWhiteContainer.music-store ——— */
.music-store-section {
  background: transparent;
}

.music-store-inner {
  margin-bottom: 0;
}

.music-store .music-col h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: inherit;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 600px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.album-card {
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.album-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.album-card img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.album-card .meta {
  padding: 10px;
}

.album-card .title {
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 4px;
  line-height: 1.3;
}

.album-card .sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.music-col .btn-wrap {
  text-align: center;
  margin-top: 16px;
}

/* Top songs */
.song-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.song-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 12px;
  background: #f5f6f8;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.song-row img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
}

.song-info .t {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 2px;
}

.song-info .a {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.price-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ——— New releases ——— */
.new-releases-container {
  margin-bottom: 0;
}

.nr-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.nr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nr-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 45%);
}

.nr-card .nr-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* ——— Owl carousels (products, pocket aces, films) ——— */
.carousel-section {
  margin-bottom: 36px;
}

.carousel-wrap {
  position: relative;
}

.carousel-section .owl-carousel .owl-nav {
  margin: 0;
}

.carousel-section .owl-carousel .owl-nav button.owl-prev,
.carousel-section .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  background: var(--brand-red) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(237, 28, 36, 0.35);
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s, opacity 0.2s, box-shadow 0.2s;
}

.carousel-section .owl-carousel .owl-nav button.owl-prev:hover,
.carousel-section .owl-carousel .owl-nav button.owl-next:hover {
  background: #0b8fd0 !important;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 22px rgba(0, 174, 239, 0.35);
}

.carousel-section .owl-carousel .owl-nav button.owl-prev {
  left: -55px;
}

.carousel-section .owl-carousel .owl-nav button.owl-next {
  right: -55px;
}

.carousel-section .owl-carousel .owl-nav button.owl-prev span,
.carousel-section .owl-carousel .owl-nav button.owl-next span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 640px) {
  .carousel-section .owl-carousel .owl-nav button.owl-prev {
    left: 4px;
  }

  .carousel-section .owl-carousel .owl-nav button.owl-next {
    right: 4px;
  }
}

.carousel-section .owl-carousel .owl-nav button.owl-prev.disabled,
.carousel-section .owl-carousel .owl-nav button.owl-next.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-section .owl-carousel {
  padding-bottom: 4px;
}

/* Product cards */
.product-card {
  width: 100%;
  background: rgba(0, 174, 239, 0.09);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card img {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.7em;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
  max-width: 160px;
}

/* Pocket Aces */
.pocket-card {
  width: 100%;
  border-radius: var(--radius);
  padding: 28px 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
}

.pocket-card.coral {
  background: linear-gradient(160deg, #ff8a80, #ff6b6b);
}

.pocket-card.teal {
  background: linear-gradient(160deg, #4dd0c4, #26a69a);
}

.pocket-card .circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pocket-social {
  display: flex;
  gap: 10px;
  margin-top: auto;
  opacity: 0.95;
}

.pocket-social span {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* Promo banner */
.promo-banner {
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .promo-banner {
    grid-template-columns: 1fr;
  }
}

.promo-left {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.promo-left h3 {
  margin: 0;
  color: #ffd54f;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.promo-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-store {
  height: 40px;
  padding: 0 14px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-right {
  background: linear-gradient(135deg, #c62828, #e53935);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.promo-right img {
  max-height: 180px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Talent section */
.talent-grid {
  margin-bottom: 2rem;
}

.talent-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  box-shadow: var(--shadow);
}

.talent-card.pink {
  background: linear-gradient(135deg, #ec407a, #d81b60);
}

.talent-card.pink img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.talent-card.dark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talent-card.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}

.talent-inner {
  position: relative;
  z-index: 2;
}

.talent-inner h3 {
  margin: 0 0 8px;
  color: #ffeb3b;
  font-size: 1.35rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.talent-card.dark .talent-inner h3 {
  color: #fff;
}

.talent-inner p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  max-width: 280px;
}

/* Yoodlee Films — album-style row (matches Saregama reference: white panel, blue titles, white nav pills) */
.container.box-white-container.films-section--album {
  padding: 20px 22px;
  border-radius: 15px;
  border: 1px solid #eceef1;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.films-section--album .films-section__head {
  align-items: baseline;
  margin-bottom: 1rem !important;
}

.films-section__see-all {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.films-section__see-all:hover {
  color: #0b8fd0;
  text-decoration: none;
}

.films-section--album .yoodlee-carousel-wrap {
  overflow: visible;
  /* Room for overlapping nav; buttons sit over thumb edges */
  padding-inline: 18px;
  margin-inline: -4px;
}

.films-section--album #carousel-films .owl-stage {
  display: flex;
}

.films-section--album #carousel-films .owl-item {
  display: flex;
}

.films-section--album #carousel-films .item {
  width: 100%;
  height: 100%;
}

.film-card--album {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.film-card--album .film-card__media {
  display: block;
  text-decoration: none;
  color: inherit;
}

.film-card--album .film-card__thumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #ececec;
  aspect-ratio: 1 / 1;
}

.film-card--album .film-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.film-card__hover-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 6px 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #333;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  white-space: nowrap;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Tooltip pointer (reference: small arrow under chip) */
.film-card__hover-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #d5d5d5;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9));
}

.film-card__thumb:hover .film-card__hover-label,
.film-card__thumb:focus-within .film-card__hover-label {
  opacity: 1;
}

.film-card__title {
  margin: 4px 0 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.film-card__title a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.film-card__subtitle {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #6e7174;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Card titles: light blue like reference (not body black) */
main .films-section--album .film-card__title a {
  color: var(--brand-blue);
}

main .films-section--album .film-card__title a:hover {
  color: #0b8fd0;
  text-decoration: none;
}

/* Prev/next: white circles overlapping thumbs — prev grey chevron, next blue ring + blue chevron */
.films-section--album .owl-carousel .owl-nav {
  margin-top: 0;
}

.films-section--album .owl-carousel .owl-nav button.owl-prev,
.films-section--album .owl-carousel .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:var(--brand-red) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
  z-index: 4;
  /* Vertical align to square poster (not whole tile incl. text) */
  top: clamp(56px, 22vw, 90px) !important;
  transform: translateY(-50%);
}

.films-section--album .owl-carousel .owl-nav button.owl-prev {
  left: -55px;
  /* border: 1px solid #e3e3e3 !important; */
  color: #fff !important;
}

.films-section--album .owl-carousel .owl-nav button.owl-next {
  right: -55px;
  /* border: 1px solid var(--brand-blue) !important; */
  color: #fff !important;
}

.films-section--album .owl-carousel .owl-nav button.owl-prev:hover {
  background: #0b8fd0 !important;
  /* border-color: #d0d0d0 !important; */
  color: #FFF !important;
  transform: translateY(-50%);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14) !important;
}

.films-section--album .owl-carousel .owl-nav button.owl-next:hover {
  background: #0b8fd0 !important;
  /* border-color: #0b8fd0 !important; */
  color: #fff !important;
  transform: translateY(-50%);
  box-shadow: 0 3px 12px rgba(0, 165, 241, 0.25) !important;
}

.films-section--album .owl-carousel .owl-nav button.owl-prev.disabled,
.films-section--album .owl-carousel .owl-nav button.owl-next.disabled {
  transform: translateY(-50%);
  opacity: 0.4;
}

@media (max-width: 640px) {
  .container.box-white-container.films-section--album {
    padding: 16px 14px;
  }

  .films-section--album .yoodlee-carousel-wrap {
    padding-inline: 12px;
  }

  .films-section--album .owl-carousel .owl-nav button.owl-prev,
  .films-section--album .owl-carousel .owl-nav button.owl-next {
    width: 34px;
    height: 34px;
    top: clamp(48px, 19vw, 100px) !important;
  }

  .films-section--album .owl-carousel .owl-nav button.owl-prev {
    left: -38px;
  }

  .films-section--album .owl-carousel .owl-nav button.owl-next {
    right: -38px;
  }
}

/* Yoodlee Films — dark / cinematic strip (wide posters, blue circular nav outside card) */
.films-section--cinematic .yoodlee-carousel-wrap {
  overflow: visible;
  padding-inline: 0;
}

.films-section--cinematic #carousel-films-dark .owl-stage {
  display: flex;
}

.films-section--cinematic #carousel-films-dark .owl-item {
  display: flex;
}

.films-section--cinematic #carousel-films-dark .item {
  width: 100%;
}

.film-card--cinematic {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s;
}

.film-card--cinematic:hover {
  transform: scale(1.02);
}

.film-card--cinematic img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  width: 100%;
  display: block;
}

.films-section--cinematic .owl-carousel .owl-nav button.owl-prev,
.films-section--cinematic .owl-carousel .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-blue) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
}

.films-section--cinematic .owl-carousel .owl-nav button.owl-prev:hover,
.films-section--cinematic .owl-carousel .owl-nav button.owl-next:hover {
  background: #0b8fd0 !important;
  color: #fff !important;
  transform: translateY(-50%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.films-section--cinematic .owl-carousel .owl-nav button.owl-prev.disabled,
.films-section--cinematic .owl-carousel .owl-nav button.owl-next.disabled {
  transform: translateY(-50%);
}

.films-section--cinematic .owl-carousel .owl-nav button.owl-prev {
  left: -22px;
}

.films-section--cinematic .owl-carousel .owl-nav button.owl-next {
  right: -22px;
}

@media (max-width: 640px) {
  .films-section--cinematic .owl-carousel .owl-nav button.owl-prev {
    left: -8px;
  }

  .films-section--cinematic .owl-carousel .owl-nav button.owl-next {
    right: -8px;
  }
}

/* ——— Footer ——— */
.site-footer {
  border-top: 4px solid var(--brand-black);
  background: #090506;
}

.footer-grid {
  margin-bottom: 0;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

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

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* ——— Social page (banner strip + cards) ——— */
.social-main {
  padding: 0 0 56px;
}

.social-strip {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.social-strip__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  overflow: hidden;
}

.social-strip__img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
}

.social-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--brand-red);
  font-weight: 500;
  text-align: center;
  margin: 28px 0 22px;
}

.social-cards {
  padding: 10px 0 0;
}

.social-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  padding: 34px 18px 28px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #090506;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 140px;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-red);
  text-decoration: none;
  color: #090506;
}

.social-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(252, 3, 11, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(252, 3, 11, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.social-card__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #090506;
  transition: color 0.18s ease;
}

.social-card.social-card--yt {
  --social-brand: #c41218;
}
.social-card.social-card--fb {
  --social-brand: #1877f2;
}
.social-card.social-card--ig {
  --social-brand: #e1306c;
}
.social-card.social-card--tw {
  --social-brand: #1d9bf0;
}
.social-card.social-card--in {
  --social-brand: #0a66c2;
}

/* Hover state: match reference (brand tint border + subtle icon lift) */
.social-card:hover {
  border-color: rgba(252, 3, 11, 0.18);
}

.social-card:hover .social-card__icon {
  background: rgba(252, 3, 11, 0.12);
  border-color: rgba(252, 3, 11, 0.2);
  transform: translateY(-1px);
}

.social-card:hover .social-card__icon i {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .social-strip__row {
    grid-template-columns: repeat(4, 1fr);
  }
  .social-strip__img:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 576px) {
  .social-strip__img {
    height: 72px;
  }
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  color: var(--brand-red);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-icons a i {
  font-size: 15px;
  line-height: 1;
}

.social-icons a:hover {
  transform: translateY(-1px);
  background: var(--brand-red);
  border-color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-bottom {
  font-size: 13px;
  color: #fff;
}

.pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-icons span {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glyphicon {
  font-size: 9px;
}

.glyphicon-menu-down::before, .glyphicon-menu-up {
  content: "\e259";
  font-size: 9px;
  padding-left: 0px;
}

/* Desktop (lg+): keep nav strip visible. Must be media-scoped — an unscoped rule
   here used display:block!important and broke Bootstrap’s mobile collapse plugin
   (hamburger could not open #mainNavCollapse). */
@media (min-width: 992px) {
  .main-nav.navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
}

/* ---------------- Mobile-first responsiveness pass ---------------- */
@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-top-inner {
    min-height: 56px;
    gap: 10px;
    padding: 8px 0;
    justify-content: center;
  }

  .logo-img {
    height: 34px;
    max-width: min(150px, 42vw);
  }

  .logo {
    margin-left: auto;
    margin-right: auto;
  }

  .search-wrap {
    min-width: 0;
    width: 100%;
    max-width: none;
    order: 3;
  }

  /* Mobile drawer styling — same dark family as nav strip */
  .main-nav.navbar-expand-lg .navbar-collapse {
    width: 100%;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--main-nav-panel);
    border-top: 1px solid var(--main-nav-border);
    margin-top: 6px;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  }

  /* Reinforce Bootstrap collapse visibility (avoid stray display rules fighting .collapsing) */
  #mainNavCollapse.collapse:not(.show):not(.collapsing) {
    display: none !important;
  }

  #mainNavCollapse.collapse.show,
  #mainNavCollapse.collapsing {
    display: block !important;
  }

  .main-nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.25rem 0.15rem;
    gap: 0;
  }

  .main-nav-list > .nav-item {
    width: 100%;
    margin-bottom: 6px;
  }

  .main-nav .nav-pill,
  .main-nav .nav-pill-link {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    justify-content: space-between;
    border-radius: 12px;
    border: 1px solid var(--main-nav-border);
    background: var(--main-nav-panel-deep);
    color: var(--main-nav-text);
    font-size: 15px;
    font-weight: 600;
  }

  .main-nav .nav-label {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .main-nav .nav-pill[aria-expanded="true"] {
    background: var(--main-nav-hover-fill);
    border-color: rgba(252, 3, 11, 0.45);
    color: #fff;
  }

  .main-nav .nav-dropdown-menu {
    width: 100%;
    min-width: 0;
    max-width: none;
    position: static !important;
    transform: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    background: var(--main-nav-panel-deep);
    border: 1px solid var(--main-nav-border);
    border-radius: 14px;
    padding: 8px;
    margin-top: 8px !important;
    margin-left: 0 !important;
    margin-bottom: 6px;
  }

  .main-nav .nav-dropdown-menu .dropdown-item {
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-nav-text);
    line-height: 1.3;
    transition: background 0.2s, color 0.2s;
  }

  .main-nav .nav-dropdown-menu .dropdown-item + .dropdown-item {
    margin-top: 2px;
  }

  .main-nav .nav-dropdown-menu .dropdown-item:hover,
  .main-nav .nav-dropdown-menu .dropdown-item:focus,
  .main-nav .nav-dropdown-menu .dropdown-item:focus-visible,
  .main-nav .nav-dropdown-menu .dropdown-item:active {
    background: var(--main-nav-hover-fill);
    color: #fff;
  }

  .main-nav .nav-dropdown-menu .dropdown-divider {
    margin: 0.35rem 0;
    border-color: var(--main-nav-border);
  }

  .main-nav .nav-dropdown-menu .dropend .dropdown-menu.nav-submenu {
    margin-top: 6px !important;
    margin-left: 8px !important;
    border-left: 2px solid var(--main-nav-border);
    background: var(--main-nav-bg);
  }

  .container.box-white-container,
  .container.boxWhiteContainer,
  .container.box-black-container,
  .container.boxBlackContainer {
    width: 100%;
    border-radius: 12px;
    padding: 16px 14px;
    margin-bottom: 14px;
  }

  .headTitle,
  .mainHeading {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .hero-content {
    padding-inline: 14px;
    bottom: 12px;
  }

  .hero-title {
    font-size: clamp(1.05rem, 4.8vw, 1.3rem);
  }

  .hero-lead {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .song-row {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .song-row img {
    width: 44px;
    height: 44px;
  }

  .song-row .price-btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .promo-banner {
    border-radius: 12px;
    padding: 16px;
  }

  .promo-left {
    text-align: left;
  }

  .banner-box .black-button {
    left: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .carousel-section .owl-carousel .owl-nav button.owl-prev,
  .carousel-section .owl-carousel .owl-nav button.owl-next {
    width: 34px;
    height: 34px;
  }

  .site-footer {
    padding-bottom: 14px;
  }

  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-col li {
    margin-bottom: 6px;
  }

  .footer-col a {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .album-grid {
    grid-template-columns: 1fr;
  }

  .hero-fullbleed {
    min-height: 220px;
  }

  .hero-content .btn {
    width: 100%;
  }
}

/* User-requested color overrides */
.btn,
.btn-am-primary,
.btn-am-dark,
.black-button {
  background-color: #fc030b !important;
  border-color: #fc030b !important;
  color: #fff !important;
}

.btn:hover,
.btn:focus,
.btn-am-primary:hover,
.btn-am-primary:focus,
.btn-am-dark:hover,
.btn-am-dark:focus,
.black-button:hover,
.black-button:focus {
  background-color: #00a5f1 !important;
  border-color: #00a5f1 !important;
  color: #fff !important;
}

.font-15em {
  font-size: 1.5em !important;
}

.container.box-black-container.films-section--album {
  padding: 20px 22px;
  border-radius: 15px;
  border: 1px solid #000;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 50px;
  color: var(--brand-red);
  font-weight: 100;
  margin: 16px 50px 16px;
  text-align: center;
}

.contactLastColumn{
  text-align: left;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0;
  border: 1px solid #EAEAEA;
  background: #FFF;
  margin-top: var(--bs-gutter-y);
}

.contactFormArea{
  margin: 20px 50px;
}

.addessTitle {
    background: #090506 ;
    font-size: 25px;
    padding: 15px 21px 17px;
    color: #fff;
}

.addresscontent {
  font-size: 18px;
  color: #090506;
}

.social-platform-icon{
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(178, 29, 47, 0.08);
    color: var(--brand-red);
    font-size: 1.75rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-card:hover .social-platform-icon {
  background: var(--brand-red);
    color: #fff;
    transform: scale(1.08);
}

/* Netflix-style careers layout (scoped) */
.career-main.career-netflix {
  background: #090506;
  color: rgba(255, 255, 255, 0.86);
}

.career-main.career-netflix a {
  color: inherit;
}

.career-nx-hero {
  padding: 36px 0 28px;
  background: radial-gradient(1200px 400px at 25% 0%, rgba(252, 3, 11, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75)),
    linear-gradient(90deg, #090506, #130b0c 35%, #090506);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.career-nx-hero__inner {
  padding: 18px 0;
}

.career-nx-hero__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.career-nx-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 46px);
}

.career-nx-shell {
  padding: 26px 0 40px;
}

/* Make roles+details section LIGHT (keep hero dark) */
.career-main.career-netflix .career-nx-shell {
  background: #fff;
  color: rgba(9, 5, 6, 0.92);
  border-top: 1px solid #eceef1;
}

.career-main.career-netflix .career-nx-shell .career-nx-sidebar__card,
.career-main.career-netflix .career-nx-shell .career-nx-detail {
  background: #fff;
  border: 1px solid #eceef1;
  box-shadow: 0 16px 40px rgba(9, 5, 6, 0.06);
}

.career-main.career-netflix .career-nx-shell .career-nx-detail__head {
  border-bottom: 1px solid #eceef1;
  background: radial-gradient(800px 240px at 15% 0%, rgba(252, 3, 11, 0.12), transparent 55%), #fff;
}

.career-main.career-netflix .career-nx-shell .career-nx-label,
.career-main.career-netflix .career-nx-shell .career-nx-sidebar__sub,
.career-main.career-netflix .career-nx-shell .career-nx-role__meta,
.career-main.career-netflix .career-nx-shell .career-nx-detail__kicker,
.career-main.career-netflix .career-nx-shell .career-nx-detail__meta {
  color: rgba(9, 5, 6, 0.6);
}

.career-main.career-netflix .career-nx-shell .career-nx-sidebar__title,
.career-main.career-netflix .career-nx-shell .career-nx-detail__title,
.career-main.career-netflix .career-nx-shell .career-nx-detail__body h3,
.career-main.career-netflix .career-nx-shell .career-nx-role__title {
  color: rgba(9, 5, 6, 0.92);
}

.career-main.career-netflix .career-nx-shell .career-nx-input {
  border: 1px solid #dde1e6;
  background: #fff;
  color: rgba(9, 5, 6, 0.92);
}

.career-main.career-netflix .career-nx-shell .career-nx-input::placeholder {
  color: rgba(9, 5, 6, 0.4);
}

.career-main.career-netflix .career-nx-shell .career-nx-role {
  border: 1px solid #eceef1;
  background: #fff;
  color: rgba(9, 5, 6, 0.92);
}

.career-main.career-netflix .career-nx-shell .career-nx-role:hover {
  border-color: rgba(252, 3, 11, 0.4);
}

.career-main.career-netflix .career-nx-shell .career-nx-role.is-active {
  border-color: rgba(252, 3, 11, 0.65);
  background: rgba(252, 3, 11, 0.06);
  box-shadow: 0 0 0 3px rgba(252, 3, 11, 0.1);
}

.career-main.career-netflix .career-nx-shell .career-nx-detail__body {
  color: rgba(9, 5, 6, 0.72);
}

.career-main.career-netflix .career-nx-shell .career-nx-detail__body li {
  color: rgba(9, 5, 6, 0.72);
}

.career-nx-sidebar {
  position: relative;
}

@media (min-width: 992px) {
  .career-nx-sidebar {
    position: sticky;
    top: 18px;
    align-self: flex-start;
  }
}

.career-nx-sidebar__card {
  border-radius: 16px;
  background: rgba(20, 18, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 14px;
}

.career-nx-filters {
  display: grid;
  gap: 12px;
}

.career-nx-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.career-nx-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(252, 3, 11, 0.25);
  background: rgba(9, 5, 6, 0.9);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.career-nx-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.career-nx-input:focus {
  border-color: rgba(252, 3, 11, 0.6);
  box-shadow: 0 0 0 4px rgba(252, 3, 11, 0.18);
}

.career-nx-sidebar__head {
  padding: 4px 2px 10px;
}

.career-nx-sidebar__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  font-size: 18px;
}

.career-nx-sidebar__sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.career-nx-roles {
  display: grid;
  gap: 8px;
}

.career-nx-role {
  width: 100%;
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 5, 6, 0.7);
  padding: 12px 12px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}

.career-nx-role:hover {
  transform: translateY(-1px);
  border-color: rgba(252, 3, 11, 0.45);
}

.career-nx-role.is-active {
  border-color: rgba(252, 3, 11, 0.75);
  box-shadow: 0 0 0 3px rgba(252, 3, 11, 0.12);
  background: rgba(252, 3, 11, 0.08);
}

.career-nx-role__title {
  display: block;
  font-weight: 900;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.25;
}

.career-nx-role__meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.career-nx-detail {
  border-radius: 18px;
  background: rgba(20, 18, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.career-nx-detail__head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(252, 3, 11, 0.12), transparent 60%);
}

.career-nx-detail__kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.career-nx-detail__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  font-size: 22px;
}

.career-nx-detail__meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.career-nx-apply {
  border-radius: 14px;
  font-weight: 900;
  padding: 10px 14px;
  border-bottom: 3px solid var(--brand-blue);
}

.career-nx-detail__body {
  padding: 16px 18px 18px;
  font-size: 15px;
  line-height: 1.7;
}

.career-nx-detail__body h3 {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: 16px;
}

.career-nx-detail__body ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.career-nx-detail__body li {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.82);
}

.career-nx-apply-panel__inner {
  border-radius: 18px;
  background: rgba(20, 18, 16, 0.92);
  border: 1px solid rgba(252, 3, 11, 0.28);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  padding: 16px 18px;
}

.career-nx-apply-panel__title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: 18px;
}

.career-nx-apply-panel__sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.career-nx-apply-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px) {
  .career-nx-apply-flow {
    grid-template-columns: 220px 1fr;
    gap: 22px;
  }
}

.career-nx-stepper__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.career-nx-stepper__list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.career-nx-step {
  position: relative;
  padding-left: 34px;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-nx-step__dot {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}

.career-nx-step.is-active {
  color: rgba(255, 255, 255, 0.9);
}

.career-nx-step.is-active .career-nx-step__dot {
  background: rgba(252, 3, 11, 0.18);
  border-color: rgba(252, 3, 11, 0.7);
  box-shadow: 0 0 0 4px rgba(252, 3, 11, 0.12);
}

.career-nx-form-section {
  border-radius: 16px;
  border: 1px solid rgba(252, 3, 11, 0.22);
  background: rgba(9, 5, 6, 0.65);
  padding: 14px;
  margin-bottom: 14px;
}

.career-nx-form-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: 16px;
  margin: 0 0 10px;
}

.career-nx-field {
  display: grid;
  gap: 8px;
}

.career-nx-field__label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.72);
}

.career-nx-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .career-nx-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

.career-nx-upload {
  position: relative;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(20, 18, 16, 0.6);
  padding: 14px 14px 14px;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.career-nx-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.career-nx-upload__hint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.4;
  padding-right: 120px;
}

.career-nx-upload__btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #090506;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
}

.career-nx-upload__btn:hover {
  background: #fff;
}

.career-nx-appfor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.career-nx-appfor__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(252, 3, 11, 0.12);
  color: var(--brand-red);
}

.career-nx-appfor__title {
  font-weight: 900;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.25;
}

.career-nx-appfor__meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin-top: 2px;
}

.career-nx-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.career-nx-apply-submit {
  border-radius: 14px;
  font-weight: 900;
  padding: 10px 14px;
  border-bottom: 3px solid var(--brand-blue);
}

.career-nx-form-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.career-nx-form-note a {
  color: #fff;
  font-weight: 900;
}

/* Career page light section (below dark hero) */
.career-light {
  background: #fff;
  color: rgba(9, 5, 6, 0.92);
  padding: 40px 0 54px;
}

.career-light__head {
  max-width: 920px;
  margin: 0 auto;
}

.career-light__eyebrow {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(9, 5, 6, 0.6);
  font-size: 12px;
}

.career-light__title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-red);
}

.career-light__subtitle {
  color: rgba(9, 5, 6, 0.62);
  font-size: 15px;
}

.career-light-card {
  border: 1px solid #eceef1;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(9, 5, 6, 0.06);
}

.career-light-card .card-body {
  padding: 18px;
}

.career-light-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(252, 3, 11, 0.08);
  color: var(--brand-red);
  font-size: 22px;
  margin-bottom: 12px;
}

.career-light-card__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 17px;
  margin: 0 0 8px;
}

.career-light-card__desc {
  color: rgba(9, 5, 6, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.career-light__divider {
  height: 1px;
  background: #eceef1;
  margin: 22px 0;
}

.career-light-panel {
  border: 1px solid #eceef1;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(9, 5, 6, 0.06);
  background: #fff;
  padding: 18px;
}

.career-light-panel__title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(9, 5, 6, 0.92);
}

.career-light-steps {
  display: grid;
  gap: 12px;
}

.career-light-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.career-light-step__num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(252, 3, 11, 0.1);
  color: var(--brand-red);
  font-weight: 900;
}

.career-light-step__title {
  font-weight: 900;
  color: rgba(9, 5, 6, 0.92);
}

.career-light-step__desc {
  color: rgba(9, 5, 6, 0.62);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 2px;
}

.career-light-list {
  padding-left: 18px;
  color: rgba(9, 5, 6, 0.66);
}

.career-light-list li {
  margin: 8px 0;
}

.career-light-note {
  border-radius: 14px;
  border: 1px solid rgba(252, 3, 11, 0.2);
  background: rgba(252, 3, 11, 0.06);
  padding: 14px 16px;
  color: rgba(9, 5, 6, 0.72);
  font-size: 14px;
}

.career-light-note a {
  color: rgba(9, 5, 6, 0.92);
  font-weight: 900;
}

.career-light-note a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Apply page (light theme) */
.apply-main {
  background: #fff;
}

.apply-hero {
  padding: 26px 0 16px;
  border-bottom: 1px solid #eceef1;
  background: radial-gradient(1000px 320px at 20% 0%, rgba(252, 3, 11, 0.12), transparent 55%), #fff;
}

.apply-eyebrow {
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(9, 5, 6, 0.62);
  font-size: 12px;
}

.apply-title {
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-red);
}

.apply-subtitle {
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
}

.apply-shell {
  padding: 22px 0 44px;
}

.apply-stepper {
  border-radius: 16px;
  border: 1px solid #eceef1;
  background: #fff;
  box-shadow: 0 18px 55px rgba(9, 5, 6, 0.06);
  padding: 14px;
}

.apply-stepper__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.apply-stepper__list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(9, 5, 6, 0.08);
}

.apply-step {
  position: relative;
  padding-left: 34px;
  margin: 12px 0;
  color: rgba(9, 5, 6, 0.56);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apply-step__dot {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(9, 5, 6, 0.08);
  border: 1px solid rgba(9, 5, 6, 0.14);
}

.apply-step.is-active {
  color: rgba(9, 5, 6, 0.86);
}

.apply-step.is-active .apply-step__dot {
  background: rgba(252, 3, 11, 0.14);
  border-color: rgba(252, 3, 11, 0.7);
  box-shadow: 0 0 0 4px rgba(252, 3, 11, 0.1);
}

.apply-card {
  border-radius: 16px;
  border: 1px solid #eceef1;
  background: #fff;
  box-shadow: 0 18px 55px rgba(9, 5, 6, 0.06);
  padding: 16px;
  margin-bottom: 14px;
}

.apply-card__title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(9, 5, 6, 0.92);
  font-size: 16px;
  margin: 0 0 10px;
}

.apply-label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(9, 5, 6, 0.72);
  margin-bottom: 8px;
}

.apply-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #dde1e6;
  background: #fff;
  color: rgba(9, 5, 6, 0.92);
  padding: 12px 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.apply-input:focus {
  border-color: rgba(252, 3, 11, 0.6);
  box-shadow: 0 0 0 4px rgba(252, 3, 11, 0.14);
}

.apply-grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .apply-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

.apply-upload {
  position: relative;
  border-radius: 14px;
  border: 1px dashed rgba(9, 5, 6, 0.18);
  background: #f8fafc;
  padding: 14px 14px 14px;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.apply-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.apply-upload__hint {
  color: rgba(9, 5, 6, 0.62);
  font-size: 13px;
  line-height: 1.4;
  padding-right: 120px;
}

.apply-upload__btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
}

.apply-upload__btn:hover {
  background: var(--brand-red-dark);
}

.apply-appfor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apply-appfor__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(252, 3, 11, 0.1);
  color: var(--brand-red);
}

.apply-appfor__title {
  font-weight: 900;
  color: rgba(9, 5, 6, 0.92);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.25;
}

.apply-appfor__meta {
  color: rgba(9, 5, 6, 0.62);
  font-size: 13px;
  margin-top: 2px;
}

.apply-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.apply-actions--wizard {
  justify-content: space-between;
  padding-top: 10px;
}

.apply-actions__right {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.apply-actions__note {
  padding-top: 10px;
}

.apply-step-panel[hidden] {
  display: none !important;
}

.apply-back[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.apply-back.btn-outline-secondary {
  border-radius: 14px;
  font-weight: 900;
  padding: 10px 14px;
}

.apply-next {
  border-radius: 14px;
  font-weight: 900;
  padding: 10px 14px;
  border-bottom: 3px solid var(--brand-blue);
}

.apply-submit {
  border-radius: 14px;
  font-weight: 900;
  padding: 10px 14px;
  border-bottom: 3px solid var(--brand-blue);
}

.apply-note {
  color: rgba(9, 5, 6, 0.62);
  font-size: 13px;
}

.apply-note a {
  color: rgba(9, 5, 6, 0.92);
  font-weight: 900;
}
