/* ============================================================
   CTTC 2026 — 22nd Commonwealth Table Tennis Championship
   Shared stylesheet. Federation look: deep blue / white / saffron.
   ============================================================ */

:root {
  --blue: #003DA5;
  --blue-700: #002A73;
  --blue-900: #001B4D;
  --blue-050: #EAF1FB;
  --saffron: #FF7A1A;
  --saffron-deep: #E85D00;
  --ink: #0A1330;
  --ink-soft: #131E42;
  --white: #FFFFFF;
  --paper: #F5F7FB;
  --line: #E2E8F2;
  --text: #16203A;
  --muted: #5A6784;
  --f-display: "Righteous", sans-serif;
  --f-body: "Viga", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-sm: 0 2px 10px rgba(10, 19, 48, .06);
  --shadow-md: 0 12px 34px rgba(10, 19, 48, .12);
  --shadow-lg: 0 26px 60px rgba(0, 42, 115, .22);
  --radius: 14px;
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.display-face {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.02;
}

a {
  text-decoration: none;
}

.section {
  padding: 74px 0;
}

.section-sm {
  padding: 48px 0;
}

.bg-paper {
  background: var(--paper);
}

.bg-ink {
  background: var(--ink);
  color: #cdd6ea;
}

.text-saffron {
  color: var(--saffron) !important;
}

.text-blue {
  color: var(--blue) !important;
}

/* Eyebrow labels */
.eyebrow {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: .82rem;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--saffron);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-transform: uppercase;
  color: var(--blue-900);
  margin: 10px 0 0;
}

.bg-ink .section-title {
  color: var(--white);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--f-body);
  font-weight: 600;
  border-radius: 999px;
  padding: .7rem 1.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}

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

.btn-cttc {
  background: var(--saffron);
  color: #fff;
  border: none;
  box-shadow: 0 8px 22px rgba(232, 93, 0, .35);
}

.btn-cttc:hover {
  background: var(--saffron-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 93, 0, .42);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border: none;
}

.btn-blue:hover {
  background: var(--blue-700);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light-cttc {
  border: 2px solid rgba(255, 255, 255, .6);
  color: #fff;
  background: transparent;
}

.btn-outline-light-cttc:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.btn-ghost-blue {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-ghost-blue:hover {
  background: var(--blue);
  color: #fff;
}

/* ============================================================
   LIVE TICKER (above navbar)
   ============================================================ */
.live-ticker {
  background: var(--ink);
  color: #fff;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.live-ticker .ticker-label {
  background: var(--saffron);
  color: #fff;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 8px 16px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-ticker .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .35;
    transform: scale(.7)
  }
}

.ticker-viewport {
  overflow: hidden;
  flex: 1;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 34s linear infinite;
}

.live-ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px;
  border-right: 1px solid rgba(255, 255, 255, .09);
}

.ticker-item .flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.ticker-item .ti-cat {
  color: #8ea6d6;
  font-weight: 600;
}

.ticker-item .ti-time {
  color: var(--saffron);
  font-weight: 700;
  font-family: var(--f-display);
  letter-spacing: .5px;
}

.ticker-item .ti-status {
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: 1px;
  color: #7f8fb5;
}

.ticker-item .ti-status.upcoming {
  color: #6fd08c;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-cttc {
  background: var(--white);
  box-shadow: 0 4px 18px rgba(10, 19, 48, .06);
  padding: 0;
}

.navbar-cttc .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--saffron);
}

.brand-text {
  line-height: 1;
}

.brand-text .bt-main {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.brand-text .bt-sub {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 700;
}

.navbar-cttc .nav-link {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.02rem;
  color: var(--blue-900) !important;
  padding: 2.2rem .95rem !important;
  position: relative;
}

.navbar-cttc .nav-link::after {
  content: "";
  position: absolute;
  left: .95rem;
  right: .95rem;
  bottom: 18px;
  height: 3px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}

.navbar-cttc .nav-link:hover::after,
.navbar-cttc .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-cttc .nav-link.active {
  color: var(--blue) !important;
}

.navbar-cttc .navbar-toggler {
  border: none;
  padding: .4rem .6rem;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  min-height: 770px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 27, 77, .92) 0%, rgba(0, 42, 115, .78) 42%, rgba(0, 61, 165, .35) 100%),
    url("../images/banner.avif") center/cover;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: -8%;
  width: 55%;
  height: 100%;
  background: var(--saffron);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .14;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  text-transform: uppercase;
  margin: 18px 0 6px;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .3);
}

.hero-title .hl {
  color: var(--saffron);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 22px 0 30px;
}

.hero-meta .hm {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta .hm i {
  color: var(--saffron);
  font-size: 1.5rem;
}

.hero-meta .hm .hm-k {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b9c6e6;
}

.hero-meta .hm .hm-v {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.25rem;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cd-box {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 14px 8px;
  min-width: 92px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.cd-box .cd-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
}

.cd-box .cd-lbl {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-top: 6px;
}

/* ============================================================
   QUICK LINK CARDS
   ============================================================ */
.quick-strip {
  margin-top: -58px;
  position: relative;
  z-index: 5;
}

.quick-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
  height: 100%;
  border-top: 4px solid transparent;
}

.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--saffron);
}

.quick-card .qc-ico {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue-050);
  color: var(--blue);
  font-size: 1.6rem;
  transition: background .3s, color .3s, transform .3s var(--ease);
}

.quick-card:hover .qc-ico {
  background: var(--blue);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.quick-card .qc-title {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-900);
  margin: 0;
}

.quick-card .qc-sub {
  font-size: .82rem;
  color: var(--muted);
  margin: 4px 0 0;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--line);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card .nc-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.news-card .nc-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--saffron);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.news-card .nc-body {
  padding: 18px 20px 22px;
}

.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-050);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 6px 10px 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.news-card .nc-title {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--blue-900);
  margin: 6px 0 8px;
  line-height: 1.05;
}

.news-card .nc-excerpt {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.read-more {
  font-weight: 700;
  color: var(--saffron);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more i {
  transition: transform .25s var(--ease);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* ============================================================
   NATIONS / SPONSOR STRIPS
   ============================================================ */
.nations-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.nation-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s;
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-900);
}

.nation-chip:hover {
  transform: translateY(-3px);
  border-color: var(--saffron);
}

.nation-chip img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.sponsor-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 26px;
  min-width: 150px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
  filter: grayscale(.2);
}

.sponsor-pill:hover {
  transform: translateY(-4px) scale(1.03);
  filter: grayscale(0);
  color: var(--blue);
}

.sponsor-pill small {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: 1px;
  color: var(--muted);
}

/* ============================================================
   VIDEO / PROMO
   ============================================================ */
.promo {
  position: relative;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 27, 77, .94) 0%, rgba(0, 42, 115, .65) 55%, rgba(0, 42, 115, .1) 100%),
    url("https://images.unsplash.com/photo-1611251135345-18c56206b863?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.promo .container {
  position: relative;
  z-index: 2;
}

.play-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 0 0 0 rgba(255, 122, 26, .55);
  animation: ring 2s infinite;
  cursor: pointer;
  transition: transform .25s var(--ease);
}

.play-btn:hover {
  transform: scale(1.08);
}

@keyframes ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 26, .5)
  }

  70% {
    box-shadow: 0 0 0 26px rgba(255, 122, 26, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 26, 0)
  }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  position: relative;
  color: #fff;
  padding: 90px 0 70px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;

  background:
    linear-gradient(rgba(7, 40, 89, 0.40),
      rgba(18, 84, 180, 0.55)),
    url("../images/breadcrump.png") center center / cover no-repeat;
}

/* Right side accent */
.page-header-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 153, 0, 0.18),
      rgba(255, 255, 255, 0.05));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.page-header-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
  margin: 8px 0 6px;
}

.breadcrumb-cttc {
  font-size: .85rem;
  color: #b9c6e6;
}

.breadcrumb-cttc a {
  color: #fff;
}

.breadcrumb-cttc a:hover {
  color: var(--saffron);
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--saffron));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card .ev-ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue-050);
  color: var(--blue);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.event-card.women .ev-ico {
  background: #FFEEE2;
  color: var(--saffron-deep);
}

.event-card h3 {
  text-transform: uppercase;
  color: var(--blue-900);
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.event-card .ev-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.event-card .ev-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.event-card .ev-list li i {
  color: var(--saffron);
  margin-top: 3px;
}

.medal-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.medal {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 700;
  color: #533;
}

.medal.gold {
  background: #FFD65A;
}

.medal.silver {
  background: #D9E0EA;
}

.medal.bronze {
  background: #E8A87C;
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-tab {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--blue-900);
  cursor: pointer;
  transition: all .25s var(--ease);
}

.filter-tab:hover {
  border-color: var(--blue);
}

.filter-tab.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.day-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.day-head {
  background: linear-gradient(100deg, var(--blue-900), var(--blue));
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}

.day-head .dh-day {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 1.4rem;
}

.day-head .dh-date {
  font-size: .85rem;
  color: #b9c6e6;
}

.day-head .dh-chip {
  background: var(--saffron);
  color: #fff;
  font-family: var(--f-display);
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: 1px;
}

.table-cttc {
  margin: 0;
}

.table-cttc thead th {
  background: var(--blue-050);
  color: var(--blue-900);
  text-transform: uppercase;
  font-family: var(--f-display);
  letter-spacing: 1px;
  font-size: .85rem;
  border: none;
}

.table-cttc td {
  vertical-align: middle;
  font-size: .92rem;
}

.badge-cat {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .68rem;
}

/* ============================================================
   TEAMS / VENUE
   ============================================================ */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 80%;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.team-card .tc-name {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.continent-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 22px;
}

.continent-head .ch-line {
  flex: 1;
  height: 2px;
  background: var(--line);
}

.continent-head h3 {
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}

.facility {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform .25s var(--ease), box-shadow .25s;
}

.facility:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.facility .fc-ico {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 1.3rem;
}

.facility h5 {
  font-family: var(--f-display);
  text-transform: uppercase;
  color: var(--blue-900);
  margin: 0 0 4px;
}

.facility p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .4s var(--ease), filter .4s;
  filter: saturate(.95);
}

.gallery-grid .g-item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

.gallery-grid .g-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.15);
}

/* ============================================================
   TICKETS / FORMS
   ============================================================ */
.ticket-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ticket-card.featured {
  border-color: var(--saffron);
  box-shadow: 0 20px 44px rgba(232, 93, 0, .18);
}

.ticket-head {
  padding: 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
}

.ticket-card.featured .ticket-head {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
}

.ticket-head .th-name {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.ticket-head .th-price {
  font-family: var(--f-display);
  font-size: 2.8rem;
  line-height: 1;
  margin-top: 6px;
}

.ticket-head .th-price small {
  font-size: 1rem;
  opacity: .85;
}

.ticket-body {
  padding: 22px 24px;
  flex: 1;
}

.ticket-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.ticket-body li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: .9rem;
  color: var(--text);
}

.ticket-body li i {
  color: #2fa96a;
  margin-top: 3px;
}

.ticket-body li.off i {
  color: #c4ccdb;
}

.ticket-body li.off {
  color: var(--muted);
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1.5px solid var(--line);
  padding: .7rem .9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 .2rem rgba(0, 61, 165, .14);
}

.form-label {
  font-weight: 600;
  color: var(--blue-900);
  font-size: .9rem;
}

.accordion-cttc .accordion-button {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--blue-900);
  font-size: 1.1rem;
}

.accordion-cttc .accordion-button:not(.collapsed) {
  background: var(--blue-050);
  color: var(--blue);
}

.accordion-cttc .accordion-button:focus {
  box-shadow: none;
  border-color: var(--line);
}

.accordion-cttc .accordion-item {
  border: 1px solid var(--line);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

/* ============================================================
   STAT BAND
   ============================================================ */
.stat-band {
  background: linear-gradient(120deg, var(--blue-900), var(--blue));
  color: #fff;
}

.stat {
  text-align: center;
  padding: 10px;
}

.stat .st-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--saffron);
}

.stat .st-lbl {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  color: #c3d0ec;
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #9fb0d0;
  padding: 50px 0 10px 0;
}

.footer h5 {
  font-family: var(--f-display);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.footer a {
  color: #9fb0d0;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer a:hover {
  color: white;
}

.footer .foot-links a {
  display: block;
  padding: 5px 0;
}

.footer .foot-links a:hover {
  padding-left: 6px;
}

.footer .brand-text .bt-main {
  color: #fff;
}

.footer .foot-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .9rem;
}

.footer .foot-contact i {
  color: var(--saffron);
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-size: 1.05rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.footer-social a:hover {
  background: var(--saffron);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 22px;
  padding: 22px 0;
  font-size: .82rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: none;
  background: var(--saffron);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(232, 93, 0, .4);
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s;
}

#backToTop.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#backToTop:hover {
  background: var(--saffron-deep);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero .col-lg-9 {
    padding: 20px 10px;
  }

  .navbar-cttc .nav-link {
    padding: .8rem 0 !important;
  }

  .navbar-cttc .nav-link::after {
    display: none;
  }

  .navbar-cttc .navbar-collapse {
    padding-bottom: 16px;
  }

  .hero {
    min-height: 560px;
  }

  .quick-strip {
    margin-top: 30px;
  }

  .live-ticker .ticker-label {
    padding: 8px 12px;
    font-size: .72rem;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 52px 0;
  }

  .cd-box {
    min-width: 68px;
    padding: 10px 4px;
  }

  .cd-box .cd-num {
    font-size: 1.9rem;
  }

  .hero-meta {
    gap: 16px;
  }

  .brand-text .bt-main {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {

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

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

/* keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.filter-tab:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 2px;
}


.navbar-brand img {
  width: 120px;
}

.footer-brand img {
  width: 220px;
}

.image-actions .btn-sm {
  padding: 10px 24px;
  font-size: 12px;
}

.partner-section img {
  width: 150px;
}

.organizing .display-face {
  font-size: 34px;
  font-family: var(--f-body);
}


/* navbar new css */
/* .navbar-cttc{
    background:#004aa8;
    min-height:90px;
    position:relative;
    z-index:1000;
} */
/* ==========================
   Desktop
========================== */

.navbar-cttc .container {
  position: relative;
}

.floating-logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1050;
  text-decoration: none;
}

.logo-card {
  width: 250px;
  background: #fff;
  border-radius: 0 0 35px 35px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.logo-card img {
  width: 160px;
  display: block;
  margin: auto;
}

.navbar-nav {
  margin-left: 280px;
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 600;
  padding: 18px 14px;
}

/* ==========================
   Mobile
========================== */

@media (max-width:991.98px) {

  .floating-logo {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: block;
  }

  .logo-card {
    width: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .logo-card img {
    width: 90px;
    margin: 8px 0;
  }

  .navbar-nav {
    margin-left: 0;
    margin-top: 15px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
  }

  .navbar-nav .nav-link {
    color: #222;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-toggler {
    border: none;
    box-shadow: none !important;
  }

  .navbar-toggler i {
    color: black !important;
    font-size: 32px;
  }
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

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

/* contact css */
.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .3s;
  border: 1px solid #e2e8f2;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #003da5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.contact-box h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.contact-box p {
  margin: 0;
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

.contact-box a {
  color: #666;
  text-decoration: none;
}

.contact-box a:hover {
  color: #0d6efd;
}

.host-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  background: linear-gradient(115deg, var(--blue-900), var(--blue) 65%, var(--blue-700));
  border-radius: 20px;
  padding: 38px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.host-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--saffron);
  opacity: .13;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.host-card>* {
  position: relative;
  z-index: 2;
}

.host-flag {
  flex: 0 0 auto;
  width: 190px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
  line-height: 0;
  border: 3px solid rgba(255, 255, 255, .35);
}

.host-flag img {
  width: 100%;
  height: auto;
  display: block;
}

.host-info {
  flex: 1;
  min-width: 260px;
}

.host-info h3 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  margin: 12px 0 8px;
  color: #fff;
}

.host-info p {
  color: #cfdcf5;
  max-width: 560px;
  margin: 0;
}

.host-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 18px;
  font-size: .9rem;
  color: #dbe4f7;
}

.host-meta i {
  color: var(--saffron);
  margin-right: 7px;
}

/* Badges */
.c-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
}

.c-badge.host {
  background: var(--saffron);
  color: #fff;
}

.c-badge.part {
  background: var(--blue-050);
  color: var(--blue);
}

.host-card .c-badge.host {
  box-shadow: 0 6px 18px rgba(232, 93, 0, .45);
}

/* Search + tabs */
.country-search {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.country-search .form-control {
  padding-left: 44px;
  border-radius: 999px;
}

.country-search i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.tab-count {
  display: inline-block;
  background: rgba(0, 61, 165, .1);
  color: inherit;
  border-radius: 999px;
  padding: 0 7px;
  font-size: .72rem;
  margin-left: 4px;
}

.filter-tab.active .tab-count {
  background: rgba(255, 255, 255, .25);
}

/* Country cards */
.country-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  animation: cardIn .45s var(--ease) both;
}

.country-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.country-card.is-host {
  border: 2px solid var(--saffron);
  background: #FFFCF8;
}

.country-card.is-host:hover {
  border-color: var(--saffron-deep);
}

.country-card .c-flag {
  width: 74px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(10, 19, 48, .2);
  margin-bottom: 12px;
  transition: transform .28s var(--ease);
}

.country-card:hover .c-flag {
  transform: scale(1.07);
}

.country-card .c-name {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-900);
  font-size: 1.1rem;
  line-height: 1.1;
}

.country-card .c-region {
  font-size: .72rem;
  color: var(--muted);
  margin: 3px 0 10px;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .host-card {
    padding: 26px 22px;
    gap: 20px;
  }

  .host-flag {
    width: 130px;
  }

  .country-card {
    padding: 16px 10px;
  }

  .country-card .c-flag {
    width: 58px;
    height: 40px;
  }

  .country-card .c-name {
    font-size: .95rem;
  }
}