/* IM3-2026 Landing Page (PCU Light Theme)
   - White background (PCU-style)
   - Uses your brand colors:
     Primary:   #941c34 (Maroon)
     Secondary: #033b4a (Teal)
     Neutral:   #3a3a3a (Gray)
*/



/* ========== THEME TOKENS ========== */
:root {
  /* Brand */
  --pcu-maroon: linear-gradient(135deg, #1F4F7A 0%, #2F6FA5 50%, #3E87C6 100%);
  ;
  --pcu-teal: #033b4a;
  --pcu-gray: #3a3a3a;

  /* Surfaces (light) */
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --panel: #ffffff;
  --card: #ffffff;
  --alt: #fbfbfd;

  /* Text */
  --text: #121212;
  --muted: #4f4f4f;
  --muted2: #6a6a6a;

  /* Lines & shadows */
  --line: rgba(3, 59, 74, .16);
  --line2: rgba(148, 28, 52, .14);
  --shadow: 0 14px 40px rgba(3, 59, 74, .12);
  --shadow2: 0 10px 28px rgba(3, 59, 74, .10);

  /* Accents */
  --brand: var(--pcu-maroon);
  --brand2: var(--pcu-teal);
  --danger: #c62828;

  /* Layout */
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 10% -10%, rgba(148, 28, 52, .10), transparent 60%),
    radial-gradient(900px 520px at 95% -15%, rgba(3, 59, 74, .10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--alt));
  color: var(--text);
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== TOPBAR ========== */


/* ========== HEADER / NAV ========== */
.header {
  /* position: sticky; */
  /* top: 44px; */
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(3, 59, 74, .14);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(148, 28, 52, .06);
  border: 1px solid rgba(148, 28, 52, .18);
  padding: 6px;
}

.brand__text {
  min-width: 0
}

.brand__title {
  font-weight: bolder;
  letter-spacing: .2px
}

.brand__subtitle {
  font-size: 14px;
  color: var(--muted2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(3, 59, 74, .04);
  color: var(--text);
  cursor: pointer;
}

.nav__bars {
  width: 18px;
  height: 2px;
  background: var(--pcu-teal);
  position: relative;
  border-radius: 2px;
}

.nav__bars::before,
.nav__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--pcu-teal);
  border-radius: 2px;
}

.nav__bars::before {
  top: -6px
}

.nav__bars::after {
  top: 6px
}

.nav__menu {
  position: absolute;
  right: 20px;
  top: 108px;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(3, 59, 74, .14);
  box-shadow: var(--shadow2);
  width: min(360px, calc(100% - 40px));
}

.nav__menu a {
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}

.nav__menu a:hover {
  color: var(--pcu-teal);
  background: rgba(3, 59, 74, .06);
}

.nav__menu.is-open {
  display: flex
}

@media (min-width: 980px) {
  .nav__toggle {
    display: none
  }

  .nav__menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
  }

  .nav__menu a {
    padding: 10px 10px
  }
}



/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(3, 59, 74, .16);
  background: rgba(3, 59, 74, .04);
  color: var(--pcu-teal);
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, filter .15s ease;
}

.btn:hover {
  background: rgba(3, 59, 74, .07)
}

.btn:active {
  transform: translateY(1px)
}

.btn--primary {
  background: var(--pcu-maroon);
  border-color: rgba(148, 28, 52, .35);
  color: #ffffff;
}

.btn--primary:hover {
  filter: brightness(.96)
}

.btn--ghost {
  background: transparent;
}

.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px
}

.btn--block {
  width: 100%
}

/* ========== SECTIONS / TYPOGRAPHY ========== */
.section {
  padding: 64px 0
}

.section--alt {
  background: var(--bg-soft);
  border-top: 1px solid rgba(3, 59, 74, .12);
  border-bottom: 1px solid rgba(3, 59, 74, .12);
}

.sectionHead {
  margin-bottom: 22px;
  max-width: 860px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 10px
}

h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -.6px
}

h3 {
  font-size: 18px
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 980px) {
  .split {
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: start
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 42px 0 26px;
  overflow: hidden
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.18fr .82fr;
    gap: 28px;
    align-items: center
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 8% 10%, rgba(148, 28, 52, .12), transparent 60%),
    radial-gradient(700px 520px at 92% 20%, rgba(3, 59, 74, .12), transparent 62%);
  pointer-events: none;
  opacity: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .70);
  color: #0D0D0D;
  font-weight: 900;
  margin-bottom: 12px;
}

.kicker__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pcu-maroon), var(--pcu-teal));
}

.hero__title {
  font-size: clamp(34px, 5.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero__titleAccent {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--pcu-maroon), var(--pcu-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 950;
}

.hero__lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
}

.hero__meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 680px) {
  .hero__meta {
    grid-template-columns: repeat(3, 1fr)
  }
}

.metaCard {
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(3, 59, 74, .08);
}

.metaCard__label {
  font-size: 12px;
  color: rgba(58, 58, 58, .7);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px
}

.metaCard__value {
  margin-top: 6px;
  font-weight: 950;
  color: var(--pcu-gray)
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px
}

.hero__note {
  margin-top: 14px;
  border-left: 3px solid rgba(3, 59, 74, .55);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(3, 59, 74, .06);
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hero__noteIcon {
  color: var(--pcu-teal);
  margin-top: 1px
}

.hero__visual {
  position: relative;
  z-index: 1
}

.heroCard {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(3, 59, 74, .14);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .92);
}

.heroCard__img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.heroCard__overlay {
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .96));
  margin-top: -90px;
}

.heroCard__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(148, 28, 52, .10);
  border: 1px solid rgba(148, 28, 52, .22);
  font-weight: 950;
  font-size: 12px;
  color: var(--pcu-maroon);
}

.heroCard__list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: var(--pcu-gray);
  line-height: 1.65;
}

.trustRow {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.trustRow__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(3, 59, 74, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  color: var(--muted);
  font-weight: 900;
}

.trustRow__item img {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(3, 59, 74, .06);
  border: 1px solid rgba(3, 59, 74, .14);
  padding: 4px;
}

/* ========== CARDS ========== */
.cards3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 880px) {
  .cards3 {
    grid-template-columns: repeat(3, 1fr)
  }
}

.cards2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 880px) {
  .cards2 {
    grid-template-columns: repeat(2, 1fr)
  }
}

.card {
  border: 1px solid rgba(3, 59, 74, .14);
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(3, 59, 74, .10);
}

.card__icon {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--pcu-maroon)
}

.list {
  margin: 8px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.75
}

/* ========== BULLETS ========== */
.bullets {
  display: grid;
  gap: 12px;
  margin-top: 16px
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.bullet__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--pcu-maroon), var(--pcu-teal));
  flex: 0 0 auto;
}

/* ========== PANEL ========== */
.panel {
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(3, 59, 74, .05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}

.checklist {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  font-weight: 950;
  color: var(--pcu-teal);
  margin-top: 1px;
}

.panel__cta {
  display: grid;
  gap: 10px;
  margin-top: 14px
}

/* ========== TABS ========== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px
}

.tab {
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .80);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 950;
  cursor: pointer;
}

.tab.is-active {
  background: linear-gradient(90deg, rgba(148, 28, 52, .10), rgba(3, 59, 74, .10));
  color: var(--pcu-teal);
  border-color: rgba(3, 59, 74, .22);
}

.tabPanels {
  border: 1px solid rgba(3, 59, 74, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .90);
  padding: 16px;
}

.tabPanel {
  display: none
}

.tabPanel.is-active {
  display: block
}

.peopleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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


.person {
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .95);
  border-radius: 16px;
  padding: 14px;
}

.person__avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(148, 28, 52, .20);
  background: linear-gradient(135deg, rgba(148, 28, 52, .14), rgba(3, 59, 74, .10));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  margin-bottom: 10px;
  color: var(--pcu-maroon);
}

.person__avatar::after {
  content: attr(data-initials);
}

.person__name {
  font-weight: 950;
  margin-bottom: 6px
}

.person__role {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55
}

.note {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(3, 59, 74, .25);
  color: var(--muted);
  background: rgba(3, 59, 74, .04);
}

.muted {
  color: var(--muted)
}

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

.chip {
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .90);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
}

/* ========== THEMES ========== */
.themeGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 980px) {
  .themeGrid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.theme {
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .95);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(3, 59, 74, .10);
}

.theme ul {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.75
}

/* ========== TIMELINE ========== */
.timeline {
  display: grid;
  gap: 12px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 20px rgba(3, 59, 74, .09);
}

.timeline__item.is-highlight {
  background: linear-gradient(90deg, rgba(148, 28, 52, .08), rgba(3, 59, 74, .08));
  border-color: rgba(3, 59, 74, .18);
}

.timeline__date {
  font-weight: 950;
  color: var(--pcu-teal);
}

.timeline__title {
  font-weight: 950;
  color: var(--pcu-gray);
}

.timeline__note {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(58, 58, 58, .7)
}

@media (max-width: 520px) {
  .timeline__item {
    grid-template-columns: 1fr
  }
}

/* ========== TABLES ========== */
.tableWrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .95);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.table th,
.table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(3, 59, 74, .12);
  color: var(--muted);
}

.table th {
  color: var(--pcu-teal);
  font-size: 12px;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.table tr:last-child td {
  border-bottom: 0
}

.table--compact {
  min-width: 360px
}

.table--compact th,
.table--compact td {
  padding: 10px 12px
}

/* ========== FORMS ========== */
.form {
  margin-top: 14px
}

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

@media (min-width: 720px) {
  .form__row {
    grid-template-columns: repeat(2, 1fr)
  }
}

label {
  display: grid;
  gap: 8px;
  color: var(--pcu-gray);
  font-weight: 950
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(3, 59, 74, .18);
  background: rgba(255, 255, 255, .95);
  color: var(--pcu-gray);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(58, 58, 58, .55)
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(3, 59, 74, .55);
  box-shadow: 0 0 0 4px rgba(3, 59, 74, .10);
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px
}

.form__fineprint {
  margin-top: 10px
}

.input-error {
  border-color: rgba(198, 40, 40, .65) !important;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, .10) !important
}

/* ========== QR ========== */
.qr {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .95);
  padding: 14px;
  box-shadow: 0 10px 20px rgba(3, 59, 74, .10);
}

.qr img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(3, 59, 74, .04);
  border: 1px dashed rgba(3, 59, 74, .18);
}

.address {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.65
}

.linkBtn {
  border: none;
  background: transparent;
  color: var(--pcu-maroon);
  font-weight: 950;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.linkBtn:hover {
  text-decoration: underline
}

/* ========== FOOTER ========== */
.footer {
  padding: 44px 0 22px;
  border-top: 1px solid rgba(3, 59, 74, .14);
  background: rgba(3, 59, 74, .06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 980px) {
  .footer__grid {
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 22px
  }
}

.footer__brand {
  font-weight: 950;
  font-size: 18px;
  color: var(--pcu-teal)
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px
}

.footer__links a {
  color: var(--muted);
  font-weight: 800
}

.footer__links a:hover {
  color: var(--pcu-teal)
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(3, 59, 74, .14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--muted);
}

.socialRow {
  display: flex;
  gap: 10px;
  margin-top: 10px
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(3, 59, 74, .14);
  background: rgba(255, 255, 255, .90);
  display: grid;
  place-items: center;
  font-weight: 950;
  color: var(--pcu-teal);
}

.social:hover {
  color: #ffffff;
  background: var(--pcu-teal)
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(3, 59, 74, .18);
  box-shadow: var(--shadow2);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 950;
  color: var(--pcu-teal);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  max-width: calc(100% - 40px);
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}


.im3MarqueeWrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(90deg, #7b1026 0%, #a61d3d 50%, #7b1026 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.im3Marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.im3MarqueeTrack {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  animation: im3Scroll 22s linear infinite;
  will-change: transform;
}

.im3MarqueeTrack span {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.im3MarqueeTrack span::after {
  content: "✦";
  margin-left: 34px;
  color: #ffd37a;
  font-size: 16px;
  opacity: 0.95;
}

.im3MarqueeTrack span:nth-child(odd) {
  color: #ffd37a;
}

@keyframes im3Scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional hover pause */
.im3MarqueeWrap:hover .im3MarqueeTrack {
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .im3MarqueeWrap {
    padding: 12px 0;
  }

  .im3MarqueeTrack {
    gap: 26px;
  }

  .im3MarqueeTrack span {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .im3MarqueeTrack span::after {
    margin-left: 26px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .im3MarqueeWrap {
    padding: 10px 0;
  }

  .im3MarqueeTrack {
    gap: 20px;
    animation-duration: 16s;
  }

  .im3MarqueeTrack span {
    font-size: 14px;
    font-weight: 700;
  }

  .im3MarqueeTrack span::after {
    margin-left: 20px;
    font-size: 12px;
  }
}


/* ==========================================
   THEMES SECTION – PREMIUM IMAGE VISIBLE VERSION
   MAROON / DARK STYLE
========================================== */

.themesV2 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
  background: #161112;
}

/* ================= BACKGROUND ================= */

.themesV2-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* 6 clear image layers */
.themesV2-photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  opacity: 1;
  filter: none;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

/* ================= BIGGER IMAGE LAYOUT ================= */

/* Top Left */
.themesV2-bg .photo1 {
  top: -8%;
  left: -5%;
  width: 42%;
  height: 42%;
  background-image: url("assets/img/Picture1.jpg");
  transform: rotate(-6deg);
}

/* Top Center */
.themesV2-bg .photo2 {
  top: 2%;
  left: 30%;
  width: 34%;
  height: 32%;
  background-image: url("assets/img/Picture2.jpg");
  transform: rotate(3deg);
}

/* Top Right */
.themesV2-bg .photo3 {
  top: -6%;
  right: -5%;
  width: 40%;
  height: 40%;
  background-image: url("assets/img/Picture3.jpg");
  transform: rotate(6deg);
}

/* Bottom Left */
.themesV2-bg .photo4 {
  bottom: -6%;
  left: -5%;
  width: 40%;
  height: 40%;
  background-image: url("assets/img/Picture4.jpg");
  transform: rotate(5deg);
}

/* Bottom Center */
.themesV2-bg .photo5 {
  bottom: -8%;
  left: 32%;
  width: 32%;
  height: 36%;
  background-image: url("assets/img/Picture5.jpg");
  transform: rotate(-4deg);
}

/* Bottom Right */
.themesV2-bg .photo6 {
  bottom: -5%;
  right: -4%;
  width: 38%;
  height: 40%;
  background-image: url("assets/img/Picture6.jpg");
  transform: rotate(-7deg);
}

/* Very light overlay only for text readability */
/* .themesV2-overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(120deg, rgba(22, 17, 18, 0.32), rgba(32, 22, 24, 0.28)),
          radial-gradient(circle at 18% 20%, rgba(148, 28, 52, 0.12) 0%, transparent 34%),
          radial-gradient(circle at 82% 25%, rgba(148, 28, 52, 0.10) 0%, transparent 30%),
          radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 28%);
      } */

/* Subtle texture */
.themesV2-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.12;
}

/* Soft glow only */
.themesV2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.18;
}

.themesV2-glow-1 {
  top: -100px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: rgba(148, 28, 52, 0.28);
}

.themesV2-glow-2 {
  top: 25%;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
}

.themesV2-glow-3 {
  bottom: -120px;
  left: 35%;
  width: 400px;
  height: 400px;
  background: rgba(148, 28, 52, 0.14);
}

/* ================= CONTENT ================= */

.themesV2-content {
  position: relative;
  z-index: 2;
}

.themesV2-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

/* .themesV2-head h2 {
  font-size: 42px;
  color: #920000;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
} */

.themesV2-head h2 {
    font-size: 42px;
    color: #ffffff;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);

    /* Glass effect */
    background: linear-gradient(rgba(122, 30, 44, 0.9), rgba(90, 15, 26, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* for Safari */

    padding: 10px 20px;
    border-radius: 8px;
}

/* ================= GRID ================= */

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

/* ================= THEME CARDS ================= */

.themeCard {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 28px;
  /* background: rgba(28, 22, 24, 0.76); */
  background: linear-gradient(rgba(122, 30, 44, 0.9), rgba(90, 15, 26, 0.2));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.32s ease;
}

.themeCard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #941c34, #ff8da4, #941c34);
}

.themeCard::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(148, 28, 52, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.themeCard:hover {
  transform: translateY(-8px);
  /* background: rgba(34, 24, 27, 0.84);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(148, 28, 52, 0.10); */
}

.themeCard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.themeCard h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.10);
}

.themeCard-pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #941c34, #b72c47);
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(148, 28, 52, 0.22);
}

.themeCard ul {
  margin: 16px 0 0;
  padding-left: 18px;
  position: relative;
  z-index: 1;
}

.themeCard li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.75;
}

.themeCard:hover li {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .themeCard {
    grid-column: span 12;
  }

  .themesV2-bg .photo1,
  .themesV2-bg .photo2,
  .themesV2-bg .photo3,
  .themesV2-bg .photo4,
  .themesV2-bg .photo5,
  .themesV2-bg .photo6 {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .themesV2 {
    padding: 70px 0;
  }

  .themesV2-head h2 {
    font-size: 28px;
  }

  .themeCard {
    padding: 22px;
  }

  .themeCard-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .themesV2-bg .photo1,
  .themesV2-bg .photo2,
  .themesV2-bg .photo3,
  .themesV2-bg .photo4,
  .themesV2-bg .photo5,
  .themesV2-bg .photo6 {
    width: 56%;
    height: 22%;
    opacity: 1;
  }

  .themesV2-bg .photo1 {
    top: 0;
    left: -8%;
  }

  .themesV2-bg .photo2 {
    top: 10%;
    right: -12%;
    left: auto;
  }

  .themesV2-bg .photo3 {
    top: 28%;
    left: -10%;
    right: auto;
  }

  .themesV2-bg .photo4 {
    bottom: 28%;
    right: -12%;
    left: auto;
  }

  .themesV2-bg .photo5 {
    bottom: 12%;
    left: -10%;
  }

  .themesV2-bg .photo6 {
    bottom: -2%;
    right: -10%;
    left: auto;
  }
}