/* ════════════════════════════════════════════════════════
   app.css — Shared design system
   International Faculty Pool, Government of Telangana
   ════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --navy: #0A245C;
  --muted-brown: #b59350;
  --gold: #F5A623;
  --white: #fff;
  --black: #000;
  --navy-light: rgba(10, 36, 92, .06);
  --teal-glow: rgba(193, 132, 0, 0.25);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden
}

a {
  text-decoration: none
}

.bg-navy {
  background-color: var(--navy);
}

/* ── TOP HEADER ──────────────────────────────────────── */
.top-header {
  background: #fff;
  border-bottom: 1.5px solid #eef0f5;
  padding: 10px 32px;
}

.portrait-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2.5px solid var(--navy);
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.badge-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2.5px solid var(--navy);
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-circle img {
  width: 90%;
  height: 90%;
  object-fit: contain
}

.portal-title {
  font-size: 27px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .3px;
  line-height: 1.1;
}

.portal-sub {
  font-size: 10.5px;
  font-weight: 800;
  color:var(--muted-brown); 
  letter-spacing:1px;
  /* letter-spacing: 3px; */
  /* text-transform: uppercase; */
}

/* ── NAVIGATION ──────────────────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.navbar {
  padding: 0.15rem 0 !important;
}

.main-nav .nav-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 9999px;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  background: var(--navy-light);
  color: var(--navy)
}

.main-nav .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  padding: 8px;
  min-width: 220px;
}

.main-nav .dropdown-item {
  font-size: 13px;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav .dropdown-item:hover {
  background: var(--navy-light);
  color: var(--navy)
}

.main-nav .dropdown-item i {
  color: var(--muted-brown);
  width: 16px;
  text-align: center
}

.btn-register {
  background: linear-gradient(135deg, var(--muted-brown), #a35600);
  color: #fff !important;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 20px;
  transition: .2s;
  box-shadow: 0 4px 14px var(--teal-glow);
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--teal-glow)
}

.btn-login-nav {
  border: 1.5px solid var(--navy);
  color: var(--navy) !important;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 20px;
  transition: .2s;
}

.btn-login-nav:hover {
  background: var(--navy);
  color: #fff !important
}

/* ── TICKER (typewriter) ─────────────────────────────── */
.ticker-bar {
  background: var(--navy);
  height: 35px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* border-bottom: 1px solid rgba(0, 180, 193, .3); */
}

.ticker-label {
  background: linear-gradient(135deg, var(--muted-brown), #0096a3);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  padding: 0 18px 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%)
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
}

.ticker-text-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-width: 0;
}

.ticker-text {
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.ticker-cursor {
  color: var(--muted-brown);
  font-weight: 300;
  font-size: 18px;
  animation: cur-blink .7s step-end infinite;
  margin-left: 1px;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes cur-blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.ticker-count {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: .5px;
  flex-shrink: 0;
}

.ticker-nav {
  background: transparent;
  border: 1.5px solid rgb(255 255 255 / 50%);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
  padding: 0;
}

.ticker-nav:hover {
  background: rgba(0, 180, 193, .2);
  color: #fff;
  border-color: var(--muted-brown)
}

.ticker-nav i {
  font-size: 9.5px;
  pointer-events: none
}


/* ── HERO (homepage) ─────────────────────────────────── */
.hero-wrap {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: #040e22
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 180, 193, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 193, .08) 1px, transparent 1px);
  background-size: 48px 48px
}

.hero-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 193, .18) 0%, transparent 70%);
  z-index: 2;
  animation: pulse-glow 6s ease-in-out infinite
}

.hero-glow2 {
  position: absolute;
  bottom: -120px;
  left: 100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 36, 92, .6) 0%, transparent 70%);
  z-index: 2
}

@keyframes pulse-glow {

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

  50% {
    transform: scale(1.12);
    opacity: 1
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 193, .15);
  border: 1px solid rgba(0, 180, 193, .4);
  color: var(--muted-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-brown);
  animation: blink 1.5s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.5px
}

.hero-h1 .teal-word {
  color: var(--muted-brown)
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--muted-brown), #0096a3);
  color: #fff;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: .25s;
  box-shadow: 0 6px 24px rgba(0, 180, 193, .4)
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgb(192 193 0 / 25%);
  color: #fff
}

.btn-cta-ghost {
  color: rgba(255, 255, 255, .85);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: .25s
}

.btn-cta-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .07)
}

.hero-chips {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5
}

.hero-chip {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 18px 24px;
  min-width: 190px;
  transition: .3s
}

.hero-chip:hover {
  background: rgba(0, 180, 193, .12);
  border-color: rgba(0, 180, 193, .4);
  transform: translateX(-4px)
}

.hero-chip .chip-num {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1
}

.hero-chip .chip-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px
}

.hero-chip .chip-icon {
  font-size: 22px;
  color: var(--muted-brown);
  margin-bottom: 6px
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: .3s
}

.hero-dot.active {
  width: 24px;
  background: #fff
}


/* ── ABOUT & CM ─────────────────────────────────────── */
.about-list li {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.about-list li .ck {
  color: var(--muted-brown);
  margin-top: 2px;
  flex-shrink: 0
}

.about-card {
  background: linear-gradient(145deg, var(--navy) 0%, #0d3d70 60%, #0a5080 100%);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 193, .25), transparent 70%)
}

.about-card h5 {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted-brown);
  letter-spacing: .5px;
  margin-bottom: 20px
}

.about-card li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6
}

.about-card li i {
  color: var(--muted-brown);
  flex-shrink: 0;
  margin-top: 2px
}

.cm-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #05101f 0%, #0a1e3d 50%, #061826 100%);
  padding: 50px 0
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

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

.cm-portrait-outer {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 20px
}

.cm-portrait-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(193, 132, 0, 0.4);
  animation: ring-spin 12s linear infinite
}

.cm-portrait-ring2 {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(193, 132, 0, 0.2);
  animation: ring-spin 20s linear infinite reverse
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.cm-portrait-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(193, 148, 0, 0.6);
  box-shadow: 0 0 40px rgba(193, 148, 0, .3), 0 0 0 8px rgba(193, 148, 0, .08)
}

.cm-portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cm-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-align: center
}

.cm-desig {
  font-size: 12px;
  color: var(--muted-brown);
  text-align: center;
  letter-spacing: .5px;
  margin-top: 4px
}

.cm-quote-wrap {
  position: relative
}

.cm-quote-mark {
  font-size: 120px;
  line-height: .8;
  font-family: Georgia, serif;
  color: var(--muted-brown);
  opacity: .2;
  position: absolute;
  top: -20px;
  left: -10px;
  pointer-events: none;
  font-weight: 900
}

.cm-text {
  font-size: 16px;
  color: rgba(255, 255, 255, .85);
  line-height: 2;
  font-style: italic;
  padding-left: 32px;
  font-weight: 400
}

.cm-sig {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-brown);
  margin-top: 20px;
  padding-left: 32px;
  display: flex;
  align-items: center;
  gap: 8px
}

.cm-sig::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--muted-brown)
}

.map-glow-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.map-glow-wrap::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 193, .12), transparent 70%);
  pointer-events: none
}

.map-glow-wrap img {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 24px rgba(0, 180, 193, .35)) drop-shadow(0 0 48px rgba(0, 180, 193, .15));
  animation: map-float 5s ease-in-out infinite
}

@keyframes map-float {

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

  50% {
    transform: translateY(-10px)
  }
}


/* ── PROCESS & ELIGIBILITY ───────────────────────────── */
.process-section {
  background: #f9fafb;
  padding: 50px 0
}

.flow-container {
  position: relative;
  padding: 0 20px
}

.flow-line {
  position: absolute;
  top: 34px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--muted-brown) 0, var(--muted-brown) 12px, transparent 12px, transparent 24px);
  z-index: 0
}

.flow-step {
  text-align: center;
  position: relative;
  z-index: 1
}

.flow-num-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--muted-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 180, 193, .25);
  transition: .3s
}

.flow-step:hover .flow-num-wrap {
  background: var(--muted-brown);
  box-shadow: 0 8px 28px rgba(0, 180, 193, .4)
}

.flow-step:hover .flow-num-wrap .flow-num {
  color: #fff
}

.flow-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--muted-brown);
  transition: .3s
}

.flow-icon-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff
}

.flow-card {
  background: #fff;
  border-radius: 16px;
  margin-top: 20px;
  padding: 24px 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
  border: 1.5px solid #eef0f5;
  transition: .3s;
  min-height: 135px;
}

.flow-step:hover .flow-card {
  box-shadow: 0 8px 32px rgba(0, 180, 193, .15);
  border-color: rgba(0, 180, 193, .3);
  transform: translateY(-4px)
}

.flow-card h6 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px
}

.flow-card p {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
  margin: 0
}

#eligibility {
  padding: 35px 0;
  background: #fff;
}

.eli-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e8ecf5;
  height: 100%;
  transition: .3s;
  background: #fff
}

.eli-card:hover {
  box-shadow: 0 12px 40px rgba(10, 36, 92, .1);
  border-color: rgba(0, 180, 193, .4);
  transform: translateY(-4px)
}

.eli-header-custom {
  padding: 32px 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.eli-header-nri {
  background: linear-gradient(135deg, #0A245C 0%, #00B4C1 100%);
}

.eli-header-intl {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.eli-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: .3s;
}

.eli-card-nri .eli-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.eli-card-intl .eli-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.eli-card-nri .eli-icon-wrap i,
.eli-card-intl .eli-icon-wrap i {
  color: #fff;
  font-size: 2em;

}

.eli-header-custom h4 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px
}

.eli-header-custom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  margin: 0
}

.eli-body {
  padding: 24px 28px
}

.eli-body li {
  font-size: 13.5px;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6
}

.eli-body li .ck {
  color: var(--muted-brown);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 11px
}

.eli-cta {
  display: block;
  text-align: center;
  padding: 14px;
  margin: 0 28px 24px;
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: .2s
}

.eli-card-nri .eli-cta {
  background: linear-gradient(135deg, var(--muted-brown), #0096a3);
}

.eli-card-intl .eli-cta {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.eli-cta:hover {
  opacity: .9;
  color: #fff;
  transform: translateY(-1px)
}


/* ── SESSION TYPES ───────────────────────────────────── */

.sessions{
  padding:50px 0;
  background:#f9fafb
}

.sess-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  height: 100%;
  transition: .3s;
  border: 1.5px solid #eef0f5;
  position: relative;
  overflow: hidden
}

.sess-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--muted-brown), var(--navy))
}

.sess-card:hover {
  box-shadow: 0 8px 28px rgba(10, 36, 92, .1);
  transform: translateY(-5px);
  border-color: #d0daf0
}

.sess-hex {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(0, 180, 193, .12), rgba(10, 36, 92, .08));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 180, 193, .25);
  transition: .3s
}

.sess-card:hover .sess-hex {
  background: linear-gradient(135deg, rgba(0, 180, 193, .25), rgba(10, 36, 92, .12));
  border-color: rgba(0, 180, 193, .5)
}

.sess-hex i {
  font-size: 30px;
  color: var(--muted-brown)
}

.sess-card h6 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px
}

.sess-card p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.6;
  margin: 0
}


/* ── DIRECTORY CARDS (Advisory/Committee) ─────────────── */
.group-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px 10px 16px;
  border-radius: 9999px;
  margin-bottom: 28px
}

.group-label i {
  color: var(--muted-brown)
}

.chairman-card {
  background: linear-gradient(145deg, var(--navy) 0%, #0d3d70 60%, #0a5080 100%);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.chairman-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 193, .2), transparent 70%)
}

.chairman-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 180, 193, .6);
  box-shadow: 0 0 30px rgba(0, 180, 193, .25), 0 0 0 6px rgba(0, 180, 193, .08);
  flex-shrink: 0
}

.chairman-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.chairman-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 180, 193, .3), rgba(10, 36, 92, .5));
  display: flex;
  align-items: center;
  justify-content: center
}

.chairman-photo-placeholder i {
  font-size: 44px;
  color: rgba(255, 255, 255, .5)
}

.chairman-name {
  font-size: 22px;
  font-weight: 900;
  color: #fff
}

.chairman-role {
  font-size: 13px;
  color: var(--muted-brown);
  font-weight: 700;
  letter-spacing: .5px;
  margin-top: 4px
}

.chairman-org {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  margin-top: 3px
}

.chairman-tag {
  display: inline-block;
  background: rgba(0, 180, 193, .2);
  border: 1px solid rgba(0, 180, 193, .4);
  color: var(--muted-brown);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px
}

.member-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #eef0f5;
  overflow: hidden;
  height: 100%;
  transition: .3s;
  position: relative
}

.member-card:hover {
  box-shadow: 0 12px 40px rgba(10, 36, 92, .1);
  border-color: rgba(0, 180, 193, .35);
  transform: translateY(-4px)
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--muted-brown), var(--navy))
}

.member-photo-wrap {
  height: 100px;
  background: linear-gradient(135deg, var(--navy), #0d3d70);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  position: relative
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background: #e8f0fe;
  position: absolute;
  bottom: -40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12)
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.member-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 180, 193, .2), rgba(10, 36, 92, .15));
  display: flex;
  align-items: center;
  justify-content: center
}

.member-avatar-placeholder i {
  font-size: 30px;
  color: var(--muted-brown)
}

.member-body {
  padding: 52px 20px 24px;
  text-align: center
}

.member-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px
}

.member-role {
  font-size: 12px;
  color: var(--muted-brown);
  font-weight: 700;
  margin-bottom: 4px
}

.member-org {
  font-size: 11.5px;
  color: #888;
  line-height: 1.5
}

.member-badge {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-top: 10px;
  letter-spacing: .3px
}


/* ── CONTACT & FORMS ─────────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 32px rgba(10, 36, 92, .08);
  border: 1.5px solid #eef0f5;
  height: 100%
}

.contact-icon-block {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(193 144 0 / 12%), rgba(10, 36, 92, .06));
  border: 1.5px solid rgb(193 80 0 / 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-icon-block i {
  font-size: 22px;
  color: var(--muted-brown)
}

.contact-card h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px
}

.contact-card p,
.contact-card a {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8
}

.contact-card a {
  color: var(--navy);
  font-weight: 600;
  transition: .2s
}

.contact-card a:hover {
  color: var(--muted-brown)
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 48px rgba(10, 36, 92, .1);
  border: 1.5px solid #eef0f5
}

.form-label-custom {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .3px;
  margin-bottom: 6px;
  text-transform: uppercase
}

.form-control-custom {
  border: 1.5px solid transparent;
  border-bottom: 2px solid #eef0f5;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #111;
  transition: all .25s ease-in-out;
  background: #f8fafc;
  width: 100%;
}

.form-control-custom:focus,
.form-control-custom:not(:placeholder-shown) {
  outline: none;
  border-bottom-color: var(--muted-brown);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 36, 92, 0.05);
}

.form-control-custom::placeholder {
  color: #b0b8c5;
  font-weight: 400;
}

/* ── INPUT ICON WRAPPER ──────────────────────────────── */
.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrap i {
  position: absolute;
  left: 16px;
  color: #a0abbf;
  font-size: 15px;
  pointer-events: none;
  transition: .25s ease;
}

.input-icon-wrap .form-control-custom {
  padding-left: 44px;
}

.input-icon-wrap .form-control-custom:focus+i,
.input-icon-wrap .form-control-custom:not(:placeholder-shown)+i {
  color: var(--muted-brown);
}


textarea.form-control-custom {
  resize: vertical;
  min-height: 130px
}

.btn-submit {
  background: linear-gradient(135deg, var(--muted-brown), #0096a3);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 20px rgba(0, 180, 193, .35)
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 180, 193, .45)
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none
}

.form-alert {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 20px;
  display: none
}

.form-alert.success {
  background: #e8fdf5;
  color: #0d7a55;
  border: 1.5px solid #a3efd0
}

.form-alert.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1.5px solid #fecaca
}

.map-embed-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10, 36, 92, .1);
  height: 320px;
  background: #e8ecf5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1.5px solid #e0e5f0
}

.map-placeholder {
  text-align: center;
  color: #aaa
}

.map-placeholder i {
  font-size: 48px;
  color: #d0d8ee;
  margin-bottom: 12px
}

/* ── STATUS TRACKER ───────────────────────────────────────── */
.status-tracker {
    position: relative;
    padding: 0 40px;
}
.tracker-line {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
}
.tracker-progress {
    height: 100%;
    background: var(--muted-brown);
    transition: width 1s ease;
}
.tracker-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
.tracker-step {
    text-align: center;
    width: 80px;
    margin-left: -40px;
}
.tracker-step:first-child { margin-left: 0; }
.tracker-step:last-child { margin-right: -40px; }

.step-blob {
    width: 44px;
    height: 44px;
    background: white;
    border: 4px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 800;
    color: #94a3b8;
    transition: all 0.3s ease;
}
.tracker-step.active .step-blob {
    border-color: var(--muted-brown);
    background: var(--muted-brown);
    color: white;
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.1);
}
.step-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
}
.tracker-step.active .step-text {
    color: var(--navy);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--muted-brown);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(13, 148, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}
@media (max-width: 768px) {
    .border-end-md { border-right: none !important; border-bottom: 1px solid #e2e8f0; padding-bottom: 1rem; }
}

/* ── PAGE HERO (sub-pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #040e22 0%, #0a1e3d 50%, #061826 100%);
  padding: 35px 0 35px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 193, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 193, .06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-glow {
  position: absolute;
  top: -60px;
  right: 10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 193, .14), transparent 70%);
  pointer-events: none;
}

.page-hero-glow2 {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, .08), transparent 70%);
  pointer-events: none;
}

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

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 193, .12);
  border: 1px solid rgba(0, 180, 193, .3);
  border-radius: 9999px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-brown);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  font-weight: 600
}

.page-breadcrumb a:hover {
  color: var(--muted-brown)
}

.page-breadcrumb .sep {
  color: rgba(255, 255, 255, .3)
}

.page-h1 {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-h1 span {
  color: var(--muted-brown)
}

.page-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  max-width: 560px
}

/* ── COMMON SECTION LABELS ───────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-brown);
  margin-bottom: 10px;
}

.section-h {
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.accent-bar {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--muted-brown), var(--navy));
  border-radius: 9999px;
  margin-bottom: 16px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.main-footer {
  background: linear-gradient(135deg, #040e22 0%, #0a1e3d 50%, #041420 100%);
  padding: 56px 0 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--muted-brown), var(--navy), var(--muted-brown));
}

.footer-logo img {
  height: 52px;
  filter: brightness(10) saturate(0)
}

.footer-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-top: 10px
}

.footer-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  margin-top: 6px
}

.footer-ht {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 14px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 9px;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--muted-brown)
}

.footer-links a i {
  font-size: 10px;
  color: var(--muted-brown)
}

.footer-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 48px;
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
}

/* ── STEPPER UI ───────────────────────────────────────── */
.registration-wrap {
  padding: 40px 0 100px;
  background: #f9fafb
}

.stepper-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.stepper-nav::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: #edf1f7;
  border-radius: 999px;
  z-index: 1;
}

.stepper-progress {
  position: absolute;
  top: 22px;
  left: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--muted-brown), #00c6d4);
  border-radius: 999px;
  z-index: 2;
  transition: width .5s ease-in-out;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100px
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #edf1f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 15px;
  font-weight: 800;
  color: #a0abbf;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #9aa5b1;
  transition: .3s
}

.step-item.active .step-num {
  border-color: var(--muted-brown);
  background: var(--muted-brown);
  color: #fff;
  box-shadow: 0 8px 24px var(--teal-glow);
  transform: scale(1.15);
}

.step-item.active .step-label {
  color: var(--navy);
  font-size: 12px;
}

.step-item.completed .step-num {
  border-color: var(--muted-brown);
  background: #e6f7f8;
  color: var(--muted-brown);
}

.step-item.completed .step-label {
  color: var(--muted-brown)
}

.custom-check .form-check-input[type=checkbox] {
  border: #0d6efd 1px solid;
}

.profile-card {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  position: relative;
  background: #fff;
}

.btn-check:checked+.profile-card {
  border-color: var(--navy);
  background-color: #f0fbfc;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 180, 193, 0.1);
}

.check-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--navy);
  display: none;
}

.btn-check:checked+.profile-card .check-icon {
  display: block;
}

/* ── FORM TRANSITIONS ────────────────────────────────── */
.reg-step-container {
  display: none;
  animation: fadeIn .4s ease-out
}

.reg-step-container.active {
  display: block
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ── AUTH CHOICES ────────────────────────────────────── */
.auth-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px
}

.auth-choice-card {
  border: 2px solid #eef0f5;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: .2s;
  background: #fff;
}

.auth-choice-card:hover {
  border-color: var(--muted-brown);
  background: #fafcfe;
  transform: translateY(-4px)
}

.auth-choice-card i {
  font-size: 32px;
  margin-bottom: 16px;
  display: block
}

.auth-choice-card .fa-google {
  color: #DB4437
}

.auth-choice-card .fa-envelope {
  color: var(--navy)
}

.auth-choice-card h6 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px
}

.auth-choice-card p {
  font-size: 12px;
  color: #777;
  margin: 0;
  line-height: 1.5
}

.otp-wrap {
  max-width: 400px;
  margin: 30px auto 0;
  text-align: center;
  display: none
}

.btn-google-signup {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid #e0e5f0;
  background: #fff;
  color: #444;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: .2s;
}

.btn-google-signup:hover {
  background: #f8f9fa;
  border-color: #d0d5e0
}

/* ── DOCUMENT UPLOADERS ───────────────────────────────── */
.doc-upload-box {
  border: 2px dashed #d0d8ee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  background: #fafbfe;
  transition: .2s;
  position: relative;
}

.doc-upload-box:hover {
  border-color: var(--muted-brown);
  background: #f0f7f8
}


.doc-upload-box h6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.doc-upload-box p {
  font-size: 11px;
  color: #888;
  margin: 0
}

.btn-action-custom {
  border: none;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Individual Colors with Soft Backgrounds */
.btn-view {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.btn-sync {
  background: rgba(0, 180, 193, 0.1);
  color: #00B4C1;
}

/* Brand Teal */
.btn-delete {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* Combined Hover Effects */
.btn-action-custom:hover {
  transform: translateY(-3px);
  /* Lift up */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  /* Shadow depth */
}

/* Specific Hover Color Shifts */
.btn-view:hover {
  background: #198754;
  color: #fff;
}

.btn-sync:hover {
  background: #00B4C1;
  color: #fff;
}

.btn-delete:hover {
  background: #dc3545;
  color: #fff;
}

/* Active (Click) Effect */
.btn-action-custom:active {
  transform: translateY(0);
  scale: 0.95;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer
}

/* ── UTILS ───────────────────────────────────────────── */
.reg-footer-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1.5px solid #eef0f5
}

.btn-save-draft {
  color: #666;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer
}

.btn-save-draft:hover {
  color: var(--navy)
}

/* ── ADMIN DASHBOARD ───────────────────────────────────────────── */

.admin-stat-card{
  background:linear-gradient(180deg,#fff, #f3fbff);
  border:1px solid rgba(10,36,92,.08);
  border-radius:26px;
  padding:24px;
  box-shadow:0 20px 50px rgba(10,36,92,.08);
  height:100%;
}
.stat-label{
  color:#00B4C1;
  font-size:12px;
  font-weight:800;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.stat-value{
  color:#0A245C;
  font-size:42px;
  font-weight:900;
  line-height:1;
  margin:14px 0 10px;
}
.stat-note{
  color:rgba(10,36,92,.72);
  font-size:14px;
}
.status-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:14px;
}
.status-block{
  border:1px solid rgba(10,36,92,.08);
  border-radius:20px;
  padding:18px;
  background:#fff;
}
.status-title{
  color:rgba(10,36,92,.66);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}
.status-count{
  color:#0A245C;
  font-size:30px;
  font-weight:900;
  margin-top:8px;
}
.admin-table thead th{
  border:none;
  background:#eef7fb;
  color:#0A245C;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.8px;
}
.admin-table tbody td{
  border-color:rgba(10,36,92,.08);
}
.quick-link-stack{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.quick-link-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid rgba(10,36,92,.08);
  background:#fff;
  color:#0A245C;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quick-link-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(10,36,92,.08);
  border-color:rgba(0,180,193,.35);
}
.quick-link-title{
  font-size:16px;
  font-weight:800;
}
.quick-link-note{
  font-size:13px;
  color:rgba(10,36,92,.68);
  margin-top:4px;
}
.status-pill{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.8px;
}
.status-draft{ background:#eef2f7; color:#4a5b72; }
.status-submitted{ background:#eef8ff; color:#0a4e8a; }
.status-assessing{ background:#fff7e8; color:#8a5d00; }
.status-approved{ background:#eafaf1; color:#147a3f; }
.status-rejected{ background:#fff0f0; color:#b42318; }
@media (max-width: 767px){
  .stat-value{ font-size:34px; }
}

    /* Container & Card Styling */
.availability-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.availability-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(162, 132, 112, 0.15); /* Muted brown shadow */
    border-color: var(--muted-brown);
}

/* Optional: Small top border to give it a "calendar header" feel */
.cal-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--muted-brown);
}
/* Calendar Tile with Muted Brown */
.cal-tile {
    width: 65px;
    height: 65px;
    position: relative;
    overflow: hidden;
    background: #fdfaf8; /* Very light brown tint */
    border: 2px solid var(--muted-brown);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.cal-day {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.cal-month {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted-brown);
    margin-top: 2px;
}

/* Text & Meta Styling */
.fac-name { 
    color: var(--navy); 
    font-size: 1.1rem; 
}

.fac-meta { 
    font-size: 0.85rem; 
    color: #6c757d; 
}

.fac-meta span i { 
    margin-right: 5px; 
    color: var(--muted-brown); 
}

/* Badge using Muted Brown */
.mode-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-left: auto;
    background: rgba(162, 132, 112, 0.1); /* Muted brown alpha */
    color: var(--muted-brown);
    border: 1px solid rgba(162, 132, 112, 0.2);
}

.view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-top: 15px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    background: #fdfaf8; /* Matches the cal-tile background */
    border: 1px dashed var(--muted-brown);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: var(--muted-brown);
    color: #fff;
    border-style: solid;
    transform: translateY(-2px);
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

.availability-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.summary-chip {
    background: #fdfaf8; /* Soft brown tint */
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-chip:hover {
    border-color: var(--muted-brown);
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.summary-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted-brown);
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.summary-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
}