/* ==========================================================================
   GLOBAL WELLBEING CONFLUENCE (GWC 2026 - AYUSH TV) DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Serene Ayush Theme */
  --primary-dark: #07221a;
  --primary-emerald: #0d4738;
  --emerald-medium: #176b56;
  --emerald-accent: #26a68a;
  --emerald-light: #e8f5e9;
  --emerald-subtle: #f0f7f4;

  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa831a;
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #b8860b 100%);

  --sand-bg: #f8f6f0;
  --bg-light: #f4f8f6;
  --card-bg: #ffffff;

  --text-dark: #0c1c17;
  --text-muted: #4e635b;
  --text-light: #e0ece7;
  --text-white: #ffffff;

  --border-light: rgba(23, 107, 86, 0.12);
  --border-gold: rgba(212, 175, 55, 0.3);

  --shadow-sm: 0 4px 12px rgba(7, 34, 26, 0.05);
  --shadow-md: 0 8px 24px rgba(7, 34, 26, 0.08);
  --shadow-lg: 0 16px 40px rgba(7, 34, 26, 0.12);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);

  --glass-dark: rgba(7, 34, 26, 0.85);
  --glass-border: rgba(255, 255, 255, 0.12);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-emerald {
  color: var(--emerald-medium);
}

/* Container & Grid */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

/* Header Top Bar */
.header-top-bar {
  background: #041712;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1001;
}

.top-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-divider {
  color: rgba(212, 175, 55, 0.4);
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-links a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-bar-links a:hover {
  color: var(--gold-light);
}

/* Header & Navigation */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 0.75rem 0;
  background: rgba(7, 34, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.main-header.scrolled {
  background: rgba(7, 34, 26, 0.96);
  padding: 0.55rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(212, 175, 55, 0.3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem !important;
  text-decoration: none;
  transition: var(--transition-fast);
}

.brand-logo img {
  height: 58px;
  width: 58px;
  max-height: none;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: var(--transition-fast);
}

.brand-logo img:first-child {
  transform: scale(1.52);
  transform-origin: center center;
}

.brand-logo img + img {
  margin-left: 0 !important;
}

.main-header.scrolled .brand-logo img {
  height: 48px;
  width: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Button 1: Ayush TV */
.btn-header-ayushtv {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.45rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(23, 107, 86, 0.9) 0%, rgba(13, 71, 56, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.btn-header-ayushtv .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #26a68a;
  border-radius: 50%;
  box-shadow: 0 0 8px #26a68a;
  animation: pulseGlow 1.8s infinite;
}

.btn-header-ayushtv i {
  color: var(--gold-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.btn-header-ayushtv:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 6px 22px rgba(38, 166, 138, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  color: var(--gold-light);
}

.btn-header-ayushtv:hover i {
  transform: scale(1.2);
  color: #ffffff;
}

/* Button 2: GWC 2025 */
.btn-header-gwc2025 {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.45rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark);
  background: var(--gold-gradient);
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.btn-header-gwc2025 i {
  color: var(--primary-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.btn-header-gwc2025:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, #f3e5ab 50%, #d4af37 100%);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  color: var(--primary-dark);
}

.btn-header-gwc2025:hover i {
  transform: rotate(-10deg) scale(1.2);
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(38, 166, 138, 0.7);
  }

  70% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(38, 166, 138, 0);
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(38, 166, 138, 0);
  }
}

align-items: center;
gap: 1rem;
}

/* ==========================================================================
   SIGNATURE GWC 2025 GOLD GRADIENT BUTTON DESIGN (ALL BUTTONS ACROSS SITE)
   ========================================================================== */

.btn-default,
.btn-primary,
.btn-outline-gold,
.btn-emerald,
.btn-outline-emerald,
.btn-plan,
.btn-header-ayushtv,
.btn-header-gwc2025 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark) !important;
  background: var(--gold-gradient) !important;
  border: 1px solid var(--gold-light) !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35) !important;
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
}

.btn-default i,
.btn-primary i,
.btn-outline-gold i,
.btn-emerald i,
.btn-outline-emerald i,
.btn-plan i,
.btn-header-ayushtv i,
.btn-header-gwc2025 i {
  color: var(--primary-dark) !important;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.btn-default:hover,
.btn-primary:hover,
.btn-outline-gold:hover,
.btn-emerald:hover,
.btn-outline-emerald:hover,
.btn-plan:hover,
.btn-header-ayushtv:hover,
.btn-header-gwc2025:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, #f3e5ab 50%, #d4af37 100%) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6) !important;
  color: var(--primary-dark) !important;
  border-color: #ffffff !important;
}

.btn-default:hover i,
.btn-primary:hover i,
.btn-outline-gold:hover i,
.btn-emerald:hover i,
.btn-outline-emerald:hover i,
.btn-plan:hover i,
.btn-header-ayushtv:hover i,
.btn-header-gwc2025:hover i {
  transform: scale(1.15);
}

.btn-plan {
  width: 100%;
  padding: 0.9rem 1.5rem;
}

.btn-outline-emerald:hover {
  background: var(--primary-emerald);
  color: var(--text-white);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-normal);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer .nav-link {
  font-size: 1.15rem;
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Page Header Section */
.page-header-section {
  position: relative;
  padding: 9rem 0 4.5rem;
  background: linear-gradient(180deg, rgba(7, 34, 26, 0.88) 0%, rgba(7, 34, 26, 0.96) 100%), url('../img/hero-slide-2.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
}

.page-header-box h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.page-breadcrumb a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--gold-light);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem !important;
  text-decoration: none;
  transition: var(--transition-fast);
  margin-right: 2.5rem;
}

.brand-logo img {
  height: 58px;
  width: 58px;
  max-height: none;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: var(--transition-fast);
}

.brand-logo img:first-child {
  transform: scale(1.52);
  transform-origin: center center;
}

.brand-logo img + img {
  margin-left: 0 !important;
}

.main-header.scrolled .brand-logo img {
  height: 48px;
  width: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

/* Hero Section & Single Banner */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-color: var(--primary-dark);
}

.hero-banner-single {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Scrolling Announcement Ticker Bar - Perfect Continuous Marquee */
.scrolling-ticker-bar {
  background: linear-gradient(90deg, #07221a 0%, #0d4738 50%, #07221a 100%);
  border-top: 1px solid var(--gold-primary);
  border-bottom: 1px solid var(--gold-primary);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 10;
  width: 100%;
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 100%;
  animation: scrollMarqueeTrack 22s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 0.5px;
}

.ticker-track strong {
  color: #ffffff;
  font-weight: 700;
}

.ticker-track i {
  color: var(--gold-primary);
}

.ticker-separator {
  color: var(--gold-primary) !important;
  font-size: 0.9rem;
  opacity: 0.85;
}

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

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

.hero-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(7, 34, 26, 0.75) 0%,
      rgba(7, 34, 26, 0.6) 50%,
      rgba(7, 34, 26, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding-top: 4rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Live Countdown Bar Overlay */
.countdown-bar-wrapper {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 900px;
  z-index: 10;
}

.countdown-box {
  background: rgba(7, 34, 26, 0.85);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.countdown-header h4 {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timer-units {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.timer-label {
  font-size: 0.7rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.timer-dots {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-top: -0.5rem;
}

/* Swiper Pagination & Arrows Customization */
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--gold-primary);
  width: 32px;
  border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--gold-primary);
  background: rgba(7, 34, 26, 0.6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: var(--gold-primary);
  color: var(--primary-dark);
}

/* Stats Counter Strip */
.stats-section {
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(212, 175, 55, 0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-medium);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* About Us Section */
.about-section {
  background-color: var(--card-bg);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mv-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mv-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-fast);
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.mv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mv-card h3 {
  font-size: 1.25rem;
  color: var(--primary-emerald);
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-medium);
}

.mv-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-glass-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(7, 34, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* AYUSH Streams Interactive Tabs */
.ayush-pillars-section {
  background: var(--sand-bg);
}

.pillars-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-emerald);
  color: var(--text-white);
  border-color: var(--primary-emerald);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pillar-info h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.pillar-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.pillar-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
}

.pillar-check-item svg {
  color: var(--emerald-accent);
  flex-shrink: 0;
}

/* Pricing Section - High Impact Redesign */
.pricing-section {
  background: var(--primary-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.pricing-section .section-subtitle {
  color: var(--gold-light);
}

.pricing-section .section-title {
  color: var(--text-white);
}

.pricing-section .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Pricing Section Light Mode (Delegates Page) */
.pricing-section-light {
  background: #ffffff !important;
  color: var(--text-dark) !important;
}

.pricing-section-light::before {
  display: none !important;
}

.pricing-section-light .section-subtitle {
  color: var(--emerald-medium) !important;
}

.pricing-section-light .section-title {
  color: var(--primary-dark) !important;
}

.pricing-section-light .section-desc {
  color: var(--text-muted) !important;
}

.pricing-section-light .pricing-card {
  background: #f8faf9;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.pricing-section-light .pricing-card:hover {
  background: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-section-light .pricing-card.featured {
  background: #ffffff;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.pricing-section-light .pricing-icon {
  background: var(--emerald-light);
  color: var(--primary-emerald);
}

.pricing-section-light .pricing-card h3 {
  color: var(--primary-dark) !important;
}

.pricing-section-light .pricing-card p {
  color: var(--text-muted) !important;
}

.pricing-section-light .price-val {
  color: var(--primary-emerald) !important;
}

/* Card Individual Background Color Themes */
/* Card 1: Emerald Doctor Theme */
.pricing-card.card-theme-emerald {
  background: linear-gradient(145deg, #07221a 0%, #0d4738 100%) !important;
  border: 1.5px solid var(--gold-primary) !important;
  box-shadow: 0 10px 30px rgba(7, 34, 26, 0.25) !important;
}

.pricing-card.card-theme-emerald .pricing-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.pricing-card.card-theme-emerald h3 {
  color: #ffffff !important;
}

.pricing-card.card-theme-emerald p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.pricing-card.card-theme-emerald .price-val {
  color: var(--gold-light) !important;
}

.pricing-card.card-theme-emerald:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 36px rgba(7, 34, 26, 0.4) !important;
}

/* Card 2: Teal Student Theme */
.pricing-card.card-theme-teal {
  background: linear-gradient(145deg, #064e3b 0%, #047857 100%) !important;
  border: 1.5px solid rgba(52, 211, 153, 0.4) !important;
  box-shadow: 0 10px 30px rgba(6, 78, 59, 0.25) !important;
}

.pricing-card.card-theme-teal .pricing-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #a7f3d0 !important;
  border: 1px solid rgba(167, 243, 208, 0.4);
}

.pricing-card.card-theme-teal h3 {
  color: #ffffff !important;
}

.pricing-card.card-theme-teal p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.pricing-card.card-theme-teal .price-val {
  color: #a7f3d0 !important;
}

.pricing-card.card-theme-teal:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 36px rgba(6, 78, 59, 0.4) !important;
}

/* Card 3: Amber Wellbeing Theme */
.pricing-card.card-theme-amber {
  background: linear-gradient(145deg, #78350f 0%, #b45309 100%) !important;
  border: 1.5px solid rgba(251, 191, 36, 0.4) !important;
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.25) !important;
}

.pricing-card.card-theme-amber .pricing-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fde047 !important;
  border: 1px solid rgba(253, 224, 71, 0.4);
}

.pricing-card.card-theme-amber h3 {
  color: #ffffff !important;
}

.pricing-card.card-theme-amber p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.pricing-card.card-theme-amber .price-val {
  color: #fde047 !important;
}

.pricing-card.card-theme-amber:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 36px rgba(120, 53, 15, 0.4) !important;
}

/* Card 4: Rose Women Shakti Theme */
.pricing-card.card-theme-rose {
  background: linear-gradient(145deg, #881337 0%, #be123c 100%) !important;
  border: 1.5px solid rgba(251, 113, 133, 0.4) !important;
  box-shadow: 0 10px 30px rgba(136, 19, 55, 0.25) !important;
}

.pricing-card.card-theme-rose .pricing-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fecdd3 !important;
  border: 1px solid rgba(254, 205, 211, 0.4);
}

.pricing-card.card-theme-rose h3 {
  color: #ffffff !important;
}

.pricing-card.card-theme-rose p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.pricing-card.card-theme-rose .price-val {
  color: #fecdd3 !important;
}

.pricing-card.card-theme-rose:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 36px rgba(136, 19, 55, 0.4) !important;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  backdrop-filter: blur(12px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  background: rgba(13, 71, 56, 0.6);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.pricing-card h3 {
  color: var(--text-white);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.4;
  min-height: 40px;
}

.pricing-amount {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.price-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.35rem;
}

.pricing-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-feature-item svg {
  color: var(--emerald-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-plan {
  width: 100%;
}

/* Speakers & Leaders Section */
.speakers-section {
  background: var(--bg-light);
}

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

.speaker-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
}

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-accent);
}

.speaker-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-emerald);
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 3px solid var(--gold-primary);
}

.speaker-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.speaker-title {
  color: var(--emerald-medium);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.speaker-org {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Ayush TV & Retrospective Section */
.media-section {
  background: var(--card-bg);
}

.media-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-emerald) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--text-white);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.media-banner-content h2 {
  color: var(--text-white);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.media-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.video-thumb-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.video-thumb-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Registration Modal Dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 34, 26, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: var(--transition-fast);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: #fee2e2;
  color: #dc2626;
}

.modal-header {
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px rgba(13, 71, 56, 0.15);
  background: var(--card-bg);
}

select.form-control {
  cursor: pointer;
}

/* Toast Message */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2500;
}

.toast {
  background: var(--primary-dark);
  color: var(--text-white);
  border: 1px solid var(--gold-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInRight 0.4s ease forwards;
}

/* Footer Section */
.footer-section {
  background: linear-gradient(180deg, #07221a 0%, #041712 100%);
  color: var(--text-white);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-title {
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-links a:hover i {
  transform: translateX(2px);
  color: #ffffff;
}

.footer-subscribe-box {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-subscribe-box .form-control {
  border-radius: var(--radius-full);
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: white;
}

.footer-subscribe-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Registration Form Section */
.registration-form-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.registration-card-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 3rem;
  box-shadow: var(--shadow-lg);
}

.reg-form-header {
  margin-bottom: 2.25rem;
}

.reg-form-title {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.reg-form-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.required-star {
  color: #e11d48;
  font-weight: 700;
  margin-left: 2px;
}

.fee-display-card {
  background: linear-gradient(135deg, rgba(7, 34, 26, 0.04) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.fee-total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(7, 34, 26, 0.15);
  font-size: 1.1rem;
}

.fee-total-box span {
  font-weight: 600;
  color: var(--primary-dark);
}

.fee-total-box strong {
  font-size: 1.5rem;
  color: var(--primary-emerald);
  font-family: var(--font-heading);
}

/* Profile Dropdown Header Widget */
.profile-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.btn-profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.9rem;
  background: var(--gold-gradient);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  color: #07221a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition-fast);
}

.btn-profile-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #07221a;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.profile-name {
  font-weight: 700;
}

.profile-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: 240px;
  background: #07221a;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.profile-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown-header {
  padding: 0.5rem 1.25rem 0.75rem;
}

.user-info strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.user-info small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  margin-top: 2px;
}

.dropdown-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 0.4rem 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
}

.dropdown-item i {
  color: var(--gold-primary);
  width: 18px;
  font-size: 0.9rem;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  padding-left: 1.5rem;
}

.logout-item:hover {
  background: rgba(225, 29, 72, 0.2);
  color: #fecdd3;
}

.logout-item i {
  color: #fb7185;
}

/* Dashboard Services Grid */
.dashboard-services-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.dashboard-card {
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card-img-banner {
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.card-img-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 34, 26, 0.35) 0%, rgba(7, 34, 26, 0.9) 100%);
}

.dash-badge {
  position: relative;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-live {
  background: rgba(5, 150, 105, 0.9);
  color: #ffffff;
  border: 1px solid #34d399;
}

.badge-live i {
  color: #a7f3d0;
  font-size: 0.55rem;
  animation: pulse 1.5s infinite;
}

.badge-soon {
  background: rgba(212, 175, 55, 0.9);
  color: #07221a;
  border: 1px solid #fde047;
}

.card-body-wrapper {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dash-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 3;
  border: 3px solid #ffffff;
  transition: transform 0.3s ease;
}

.dashboard-card:hover .dash-card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Multi-colored Glowing Icon Badges */
.icon-emerald-glow {
  background: linear-gradient(135deg, #f59e0b 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}

.icon-teal-glow {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(6, 182, 212, 0.45);
}

.icon-amber-glow {
  background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(251, 191, 36, 0.45);
}

.icon-rose-glow {
  background: linear-gradient(135deg, #c026d3 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.45);
}

.dash-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-heading);
}

.dash-card-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.dash-card-footer {
  margin-top: auto;
}

/* Doctor Consultation Directory Page */
.doctor-directory-section {
  background: var(--bg-light);
  padding: 4.5rem 0;
}

.doctor-filter-box {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

.filter-header {
  margin-bottom: 1.5rem;
}

.filter-header h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.filter-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.filter-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 1.25rem;
  align-items: flex-end;
}

.doctor-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.doctor-card-item {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}

.doctor-card-item:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.doctor-card-row {
  display: grid;
  grid-template-columns: 140px 1fr 220px;
  gap: 2rem;
  align-items: center;
}

.doctor-avatar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
}

.doctor-avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #07221a 0%, #0d4738 100%);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-top: 0;
}

.online-badge.offline {
  background: rgba(107, 114, 128, 0.15);
  color: #6b7280;
}

.online-badge i {
  font-size: 0.55rem;
}

.doctor-header h2 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.spec-badge {
  display: inline-block;
  background: rgba(13, 71, 56, 0.08);
  color: var(--primary-emerald);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
}

.doctor-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.doctor-desc {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.doctor-action-box {
  text-align: right;
  border-left: 1px solid var(--border-light);
  padding-left: 2rem;
}

.consultation-fee {
  margin-bottom: 1.25rem;
}

.consultation-fee small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.consultation-fee strong {
  font-size: 1.6rem;
  color: var(--primary-emerald);
  font-family: var(--font-heading);
}

@media (max-width: 992px) {
  .doctor-card-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }

  .doctor-action-box {
    border-left: none;
    padding-left: 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1.25rem;
  }

  .filter-form-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .registration-card-wrapper {
    padding: 2rem 1.25rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .about-grid,
  .tab-content.active,
  .media-banner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 0.6rem 0;
  }

  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
  }

  .top-bar-links,
  .top-divider {
    display: none;
  }

  .top-bar-wrapper {
    justify-content: center;
  }

  .brand-logo {
    margin-right: 0;
    flex-shrink: 0;
  }

  .brand-logo img {
    height: 42px;
    width: 42px;
    max-height: none;
  }

  .brand-logo img:first-child {
    transform: scale(1.52);
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
  }

  .btn-header-ayushtv,
  .btn-header-gwc2025,
  .btn-profile-trigger {
    padding: 0.38rem 0.75rem !important;
    font-size: 0.78rem !important;
    gap: 0.35rem !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
    height: auto !important;
    line-height: 1.2 !important;
  }

  .btn-header-ayushtv i,
  .btn-header-gwc2025 i {
    font-size: 0.75rem !important;
  }

  .btn-header-ayushtv span,
  .btn-header-gwc2025 span,
  .btn-profile-trigger .profile-name {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
  }

  .btn-header-ayushtv .pulse-dot {
    width: 6px !important;
    height: 6px !important;
  }

  .btn-profile-trigger {
    padding: 0.35rem 0.65rem !important;
  }

  .profile-avatar {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.7rem !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .pricing-grid,
  .speakers-grid,
  .mv-cards-grid {
    grid-template-columns: 1fr;
  }

  .countdown-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 0.4rem 0 !important;
  }

  .brand-logo img {
    height: 32px !important;
    width: 32px !important;
    max-height: none !important;
  }

  .brand-logo img:first-child {
    transform: scale(1.52);
  }

  .header-actions {
    gap: 0.3rem !important;
  }

  .btn-header-ayushtv,
  .btn-header-gwc2025,
  .btn-profile-trigger {
    padding: 0.32rem 0.55rem !important;
    font-size: 0.72rem !important;
    gap: 0.25rem !important;
  }

  .btn-header-ayushtv i,
  .btn-header-gwc2025 i {
    font-size: 0.7rem !important;
  }

  .btn-header-ayushtv span,
  .btn-header-gwc2025 span,
  .btn-profile-trigger .profile-name {
    font-size: 0.72rem !important;
  }

  .btn-header-ayushtv .pulse-dot {
    display: none !important;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   WOMEN WELLBEING AMBASSADOR ID CARD STYLES
   ========================================================================== */

.id-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.2rem auto;
  padding: 1rem 0;
}

.id-card {
  position: relative;
  width: 85.6mm;
  height: 54mm;
  transform: scale(1.25);
  transform-origin: center center;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%,
      rgba(239, 126, 181, 0.20),
      transparent 28%),
    linear-gradient(135deg,
      #ffffff 0%,
      #fff8fc 55%,
      #fdebf5 100%);
  border: 0.35mm solid #6b176e;
  border-radius: 3mm;
  color: #241044;
  box-shadow: 0 12px 32px rgba(107, 23, 110, 0.35);
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .id-card {
    transform: scale(1.05);
  }
}

@media (max-width: 480px) {
  .id-card {
    transform: scale(0.92);
  }
}

/* Decorative background */
.id-card .bg-circle {
  position: absolute;
  width: 65mm;
  height: 25mm;
  right: -15mm;
  top: -10mm;
  background: rgba(236, 74, 147, 0.08);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.id-card .bg-curve {
  position: absolute;
  width: 100mm;
  height: 20mm;
  left: -15mm;
  bottom: 13mm;
  border-radius: 50%;
  background: rgba(238, 75, 151, 0.06);
  transform: rotate(-7deg);
}

/* HEADER */
.id-card .header {
  position: relative;
  height: 15mm;
  padding: 3.5mm 4.5mm 0;
  z-index: 2;
}

.id-card .small-title {
  font-size: 3.5mm;
  line-height: 1;
  font-weight: 800;
  color: #c91468;
  letter-spacing: 0.1mm;
}

.id-card .main-title {
  margin-top: 0.5mm;
  font-size: 2.8mm;
  line-height: 0.95;
  font-weight: 900;
  color: #281052;
  letter-spacing: -0.2mm;
}

.id-card .subtitle {
  margin-top: 1.2mm;
  width: 48mm;
  padding-top: 1mm;
  border-top: 0.25mm solid #a84578;
  font-size: 2.25mm;
  line-height: 1.1;
  font-weight: 700;
  color: #542063;
}

/* Woman illustration */
.id-card .woman-shape {
  position: absolute;
  right: 4mm;
  top: 1.5mm;
  width: 22mm;
  height: 13mm;
  color: #d0176c;
  opacity: 0.95;
}

.id-card .woman-head {
  position: absolute;
  width: 7mm;
  height: 8mm;
  right: 7mm;
  top: 1mm;
  background: #d0176c;
  border-radius: 50% 45% 48% 48%;
}

.id-card .woman-hair {
  position: absolute;
  width: 15mm;
  height: 13mm;
  right: 3mm;
  top: 0;
  border: 2.5mm solid #d0176c;
  border-left-color: transparent;
  border-radius: 50%;
}

/* PASS BAR */
.id-card .pass-bar {
  position: absolute;
  top: 16.5mm;
  left: 6.5mm;
  right: 6.5mm;
  height: 5.2mm;
  border-radius: 3mm;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #c51467, #b70d61);
  color: white;
  font-size: 1.65mm;
  font-weight: 800;
  letter-spacing: 0.05mm;
  z-index: 5;
}

.id-card .pass-bar::before,
.id-card .pass-bar::after {
  content: "✦";
  margin: 0 2mm;
  font-size: 2.5mm;
}

/* MAIN CONTENT */
.id-card .content {
  position: absolute;
  left: 5.5mm;
  right: 5.5mm;
  top: 26.2mm;
  bottom: 9.5mm;
  display: flex;
  gap: 3.5mm;
  z-index: 3;
}

/* Profile */
.id-card .profile {
  width: 20mm;
  height: 20mm;
  flex-shrink: 0;
  overflow: hidden;
  border: 0.4mm solid #c9186d;
  border-radius: 2.5mm;
  background: #f6dbe8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.id-card .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DETAILS */
.id-card .details {
  flex: 1;
  padding-top: 0.3mm;
}

.id-card .detail-row {
  min-height: 5.7mm;
  padding-bottom: 1mm;
  margin-bottom: 0.7mm;
  border-bottom: 0.2mm solid #bd719a;
}

.id-card .label {
  display: block;
  font-size: 1.7mm;
  line-height: 1;
  color: #bd1765;
  font-weight: 800;
  text-transform: uppercase;
}

.id-card .value {
  display: block;
  margin-top: 0.7mm;
  font-size: 2.7mm;
  line-height: 1;
  color: #111111;
  font-weight: 700;
}

/* QR CODE */
.id-card .qr-section {
  width: 16mm;
  flex-shrink: 0;
  text-align: center;
}

.id-card .qr-code {
  width: 15.5mm;
  height: 15.5mm;
  padding: 0.8mm;
  background: #ffffff;
  border: 0.3mm solid #a93376;
  border-radius: 1.5mm;
  display: flex;
  align-items: center;
  justify-content: center;
}

.id-card .qr-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.id-card .qr-text {
  margin-top: 1mm;
  font-size: 1.35mm;
  line-height: 1;
  color: #111111;
  font-weight: 700;
}

/* BRAND STRIP */
.id-card .brand-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.5mm;
  height: 5mm;
  background: linear-gradient(90deg, #c91468, #b80d61);
  color: white;
  display: flex;
  align-items: center;
  padding-left: 5mm;
  z-index: 5;
}

.id-card .brand-main {
  font-size: 3.3mm;
  font-weight: 800;
  font-style: italic;
}

.id-card .brand-sub {
  margin-left: 3mm;
  font-size: 1.8mm;
  color: #ffd85e;
  font-weight: 700;
}

/* BOTTOM FOOTER */
.id-card .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5.5mm;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff8fc;
  border-top: 0.25mm solid #d584aa;
  z-index: 6;
}

.id-card .footer-item {
  width: 33.33%;
  text-align: center;
  font-size: 1.25mm;
  line-height: 1.05;
  color: #5c1b66;
  font-weight: 700;
}

.id-card .footer-item strong {
  display: block;
  color: #c91468;
  font-size: 1.4mm;
  margin-bottom: 0.4mm;
}

.id-card .footer-item:not(:last-child) {
  border-right: 0.2mm solid #d084a8;
}

/* ==========================================================================
   MOBILE PROFILE SIDEBAR & RESPONSIVE HEADER STYLES
   ========================================================================== */

@media (max-width: 768px) {
  /* Keep Ayush TV and GWC 2025 buttons visible on mobile UI */

  /* Make header action clean with just profile icon button */
  .btn-profile-trigger {
    padding: 0.35rem 0.45rem !important;
    background: linear-gradient(135deg, #07221a 0%, #0d4738 100%) !important;
    border: 1px solid var(--gold-primary) !important;
    border-radius: var(--radius-full) !important;
    gap: 0 !important;
    box-shadow: 0 4px 12px rgba(7, 34, 26, 0.2) !important;
  }

  .btn-profile-trigger .profile-name,
  .btn-profile-trigger .profile-arrow {
    display: none !important;
  }

  .btn-profile-trigger .profile-avatar {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #f5d77f 0%, #d4af37 100%) !important;
    color: #07221a !important;
  }

  /* Hide default desktop dropdown menu on mobile since sidebar opens instead */
  .profile-dropdown-menu {
    display: none !important;
  }
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 34, 26, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Profile Sidebar Drawer */
.mobile-profile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: -10px 0 35px rgba(7, 34, 26, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-profile-sidebar.active {
  transform: translateX(0);
}

.sidebar-header {
  background: linear-gradient(135deg, #07221a 0%, #0d4738 100%);
  padding: 1.5rem 1.25rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold-primary);
}

.sidebar-user-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sidebar-user-badge .profile-avatar.avatar-lg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d77f 0%, #d4af37 100%);
  color: #07221a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.sidebar-user-badge .user-info {
  display: flex;
  flex-direction: column;
}

.sidebar-user-badge .user-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.sidebar-user-badge .user-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-close-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.sidebar-body {
  padding: 1.25rem;
  flex: 1;
}

.nav-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--emerald-medium);
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.35rem;
  transition: all 0.2s ease;
}

.sidebar-nav-item i {
  width: 22px;
  font-size: 1.1rem;
  color: var(--primary-emerald);
  text-align: center;
  transition: all 0.2s ease;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
  background: var(--emerald-light);
  color: var(--primary-dark);
}

.sidebar-nav-item.active i,
.sidebar-nav-item:hover i {
  color: var(--emerald-accent);
  transform: scale(1.1);
}

.sidebar-footer {
  padding: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--bg-light);
}

.sidebar-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem;
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid rgba(225, 29, 72, 0.2);
  transition: all 0.2s ease;
}

.sidebar-logout-btn:hover {
  background: #e11d48;
  color: #ffffff;
}

/* ==========================================================================
   EVENTS & DOCUMENTS PAGE RESPONSIVE STYLES
   ========================================================================== */

.events-document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
}

.doc-card-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

@media (max-width: 992px) {
  .events-document-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 2.5rem 0 !important;
  }

  .events-section .section-header {
    margin-bottom: 2rem !important;
  }

  .events-section .section-title {
    font-size: 2rem !important;
  }

  .event-doc-card {
    padding: 1.5rem !important;
    border-radius: var(--radius-md) !important;
  }

  .doc-card-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .doc-card-actions button {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .event-doc-card {
    padding: 1.25rem !important;
  }

  .event-doc-card h3 {
    font-size: 1.3rem !important;
  }
}

/* ==========================================================================
   DASHBOARD HERO SHOWCASE BANNER (ID CARD SURROUNDING LAYOUT)
   ========================================================================== */

.dashboard-hero-banner {
  background: linear-gradient(135deg, #07221a 0%, #0d4738 50%, #176b56 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  margin-bottom: 3rem;
  box-shadow: 0 16px 40px rgba(7, 34, 26, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.dashboard-hero-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.dashboard-hero-left {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.dashboard-hero-left .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.dashboard-hero-left h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.dashboard-hero-left p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 480px;
  text-align: justify;
}

.dashboard-hero-left p:last-child {
  margin-bottom: 0;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  width: 100%;
}

.hero-action-buttons .btn-hero-action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.hero-action-buttons .btn-hero-primary {
  background: linear-gradient(135deg, #f5d77f 0%, #d4af37 100%);
  color: #07221a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 1px solid var(--gold-light);
}

.hero-action-buttons .btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.hero-action-buttons .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.hero-action-buttons .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.dashboard-hero-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}

.dashboard-hero-center .id-card-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 107mm;
  height: 67.5mm;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-hero-right {
  flex: 1;
  min-width: 260px;
  max-width: 330px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-hero-right h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.6rem;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  text-align: left;
  flex-wrap: wrap;
}

.hero-stat-row .stat-label {
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hero-stat-row .stat-value {
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .dashboard-hero-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.5rem;
    gap: 2rem;
  }

  .dashboard-hero-left {
    align-items: center;
    text-align: center;
  }

  .dashboard-hero-left .hero-tag {
    align-self: center;
  }

  .dashboard-hero-left p {
    max-width: 100%;
  }

  .hero-action-buttons {
    justify-content: center;
  }

  .dashboard-hero-left h2 {
    font-size: 1.6rem;
  }

  .dashboard-hero-right {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboard-hero-center .id-card-wrapper {
    width: 90mm;
    height: 57mm;
  }
}

@media (max-width: 480px) {
  .dashboard-hero-center .id-card-wrapper {
    width: 79mm;
    height: 50mm;
  }
}
}

/* ==========================================================================
   DOCTOR PROFILE IMAGE OVERLAY BADGE STYLES
   ========================================================================== */

.doctor-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0;
}

.avatar-badge-tag {
  position: static;
  bottom: auto;
  left: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
}

.avatar-badge-tag.verified {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
}

.avatar-badge-tag.unverified {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
}

/* ==========================================================================
   REGISTRATION FORM ACCORDION & AYUSH COUNCIL FILE UPLOAD STYLES
   ========================================================================== */

.accordion-item {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(7, 34, 26, 0.05);
  transition: var(--transition-fast);
  margin-top: 0.5rem;
}

.accordion-item.active {
  box-shadow: 0 8px 24px rgba(7, 34, 26, 0.1);
  border-color: var(--gold-primary);
}

.accordion-header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.35rem;
  background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition-fast);
  text-align: left;
}

.accordion-header-btn:hover {
  background: var(--emerald-subtle);
}

.accordion-title-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.accordion-title-box i {
  color: var(--emerald-medium);
  font-size: 1.15rem;
}

.accordion-arrow {
  color: var(--emerald-medium);
  font-size: 0.9rem;
  transition: transform 0.35s ease;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

.accordion-content-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.35rem;
  background: #ffffff;
}

.accordion-item.active .accordion-content-body,
.sub-accordion-item.active .accordion-content-body {
  max-height: 900px;
  padding: 1.25rem 1.35rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

.accordion-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

  .accordion-inner-grid .form-group {
    grid-column: span 1 !important;
  }
}

/* Custom File Upload Box */
.file-upload-box {
  position: relative;
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-md);
  background: var(--emerald-subtle);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  overflow: hidden;
}

.file-upload-box:hover,
.file-upload-box.dragover {
  border-color: var(--emerald-accent);
  background: var(--emerald-light);
}

.file-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
}

.file-upload-icon {
  font-size: 2rem;
  color: var(--emerald-medium);
  transition: var(--transition-fast);
}

.file-upload-box:hover .file-upload-icon {
  transform: translateY(-3px) scale(1.1);
  color: var(--emerald-accent);
}

.file-upload-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.file-upload-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Individual Field Sub-Accordion Styles */
.additional-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.sub-accordion-item {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(7, 34, 26, 0.04);
  transition: var(--transition-fast);
}

.sub-accordion-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 20px rgba(7, 34, 26, 0.1);
}

.sub-accordion-btn {
  padding: 0.95rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
  color: var(--primary-dark);
  text-align: left;
}

.sub-accordion-item.active .sub-accordion-btn,
.sub-accordion-btn:hover {
  background: var(--emerald-subtle);
  color: var(--primary-emerald);
}

.sub-accordion-btn .accordion-title-box i {
  color: var(--emerald-medium);
  font-size: 1.05rem;
}

.sub-accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

/* Small Compact File Upload UI */
.small-file-upload-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.small-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}

.small-upload-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.1rem;
  background: var(--emerald-subtle);
  border: 1.5px dashed var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-fast);
  width: 100%;
  pointer-events: none;
}

.small-file-upload-wrapper:hover .small-upload-btn {
  border-color: var(--emerald-accent);
  background: var(--emerald-light);
  color: var(--primary-emerald);
}

.small-upload-btn i {
  color: var(--emerald-medium);
  font-size: 1.1rem;
}

.payment-section {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-card-wrapper {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.payment-status-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.icon-box-success {
  background: #f0fdf4;
  color: #16a34a;
}

.badge-status-paid {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.payment-status-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1f2937;
}

.payment-status-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
}

.payment-actions-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.payment-actions-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  background: #16a34a;
  color: white;
  border: 2px solid #16a34a;
}

.payment-actions-grid a:hover {
  background: #15803d;
  border-color: #15803d;
}

.payment-section {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-card-wrapper {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.payment-status-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
}

.icon-box-failure {
  background: #fef2f2;
  color: #dc2626;
}

.badge-status-failed {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

.payment-status-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1f2937;
}

.payment-status-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
}

.payment-actions-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.payment-actions-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-retry {
  background: #dc2626;
  color: white;
}

.btn-retry:hover {
  background: #b91c1c;
}

.btn-home {
  background: transparent;
  border: 2px solid #dc2626;
  color: #dc2626;
}

.btn-home:hover {
  background: #dc2626;
  color: white;
}