/* ==========================================================================
   NirkEvent - Ultra-Premium Dark Glassmorphism Design System
   Testimonial Carousel, Input System & Checkbox Cards Styling
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #121212;
  --bg-dark-secondary: #1a1a1a;
  --bg-surface: rgba(26, 26, 26, 0.85);
  --bg-surface-hover: rgba(38, 38, 38, 0.92);
  --bg-card: rgba(30, 30, 30, 0.8);
  
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-bright: rgba(212, 175, 55, 0.55);
  --border-glass-cyan: rgba(212, 175, 55, 0.35);
  
  --accent-primary: #D4AF37;
  --accent-primary-hover: #b89527;
  --accent-cyan: #D4AF37;
  --accent-emerald: #d4c380;
  --accent-amber: #D4AF37;
  --accent-rose: #a67c1e;
  
  --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #f3e5ab 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #b89527 100%);
  --gradient-emerald: linear-gradient(135deg, #D4AF37 0%, #f3e5ab 100%);
  --gradient-dark: linear-gradient(180deg, rgba(30, 30, 30, 0.96) 0%, rgba(18, 18, 18, 0.98) 100%);

  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #e2e8f0;
  --text-dim: #cbd5e1;
  
  --font-primary: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  --font-display: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.45);
  --shadow-cyan: 0 0 25px rgba(212, 175, 55, 0.35);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Background */
body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 10% 10%, rgba(212, 175, 55, 0.08) 0px, transparent 50%),
    radial-gradient(at 90% 20%, rgba(212, 175, 55, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(212, 175, 55, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

p, span, label, div {
  color: inherit;
}

/* High Contrast Utilities */
.text-muted {
  color: #e2e8f0 !important;
}

.text-dim {
  color: #cbd5e1 !important;
}

.text-main {
  color: #ffffff !important;
}

.text-purple {
  color: #D4AF37 !important;
}

.text-cyan {
  color: #e5c060 !important;
}

.text-emerald {
  color: #b89527 !important;
}

.text-amber {
  color: #D4AF37 !important;
}

.text-rose {
  color: #f3e5ab !important;
}

/* ==========================================================================
   BRIGHT / LIGHT MODE STYLING OVERRIDES
   ========================================================================== */
.theme-bright {
  --bg-dark: #f5f5f5;
  --bg-dark-secondary: #e5e5e5;
  --bg-surface: rgba(255, 255, 255, 0.85);
  --bg-surface-hover: rgba(240, 240, 240, 0.92);
  --bg-card: rgba(255, 255, 255, 0.9);
  
  --border-glass: rgba(18, 18, 18, 0.12);
  --border-glass-bright: rgba(212, 175, 55, 0.6);
  --border-glass-cyan: rgba(212, 175, 55, 0.4);
  
  --text-main: #121212;
  --text-muted: #4a4a4a;
  --text-dim: #666666;
  
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.2);
  --gradient-dark: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
}

.theme-bright body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 10% 10%, rgba(212, 175, 55, 0.06) 0px, transparent 50%),
    radial-gradient(at 90% 20%, rgba(212, 175, 55, 0.06) 0px, transparent 50%);
  color: var(--text-main);
}

.theme-bright h1, 
.theme-bright h2, 
.theme-bright h3, 
.theme-bright h4, 
.theme-bright h5, 
.theme-bright h6, 
.theme-bright .font-display {
  color: #121212 !important;
}

.theme-bright .glass-panel,
.theme-bright .glass-panel-interactive {
  color: #121212 !important;
}

.theme-bright .text-main {
  color: #121212 !important;
}

.theme-bright .text-muted {
  color: #4a4a4a !important;
}

.theme-bright .text-dim {
  color: #666666 !important;
}

.theme-bright .form-control,
.theme-bright .form-select,
.theme-bright .glass-input,
.theme-bright .glass-input-animated,
.theme-bright input[type="text"],
.theme-bright input[type="email"],
.theme-bright input[type="tel"],
.theme-bright input[type="date"],
.theme-bright input[type="url"],
.theme-bright input[type="number"],
.theme-bright textarea,
.theme-bright select {
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #121212 !important;
  border-color: rgba(18, 18, 18, 0.15) !important;
}

.theme-bright .form-control::placeholder,
.theme-bright .glass-input::placeholder,
.theme-bright .glass-input-animated::placeholder {
  color: #888888 !important;
}

.theme-bright .quick-delivery-banner {
  background: var(--bg-dark-secondary) !important;
  border-bottom: 1px solid var(--border-glass) !important;
}

.theme-bright .nirkevent-navbar {
  background: rgba(255, 255, 255, 0.8) !important;
}

.theme-bright .specialty-check-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(18, 18, 18, 0.12) !important;
  color: #121212 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05) !important;
}

.theme-bright .specialty-check-card:hover {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: var(--accent-primary) !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2) !important;
}

.theme-bright .modal-content {
  background: var(--bg-dark-secondary) !important;
  color: #121212 !important;
}

.theme-bright .modal-header .btn-close {
  filter: invert(1);
}

.theme-bright .text-white {
  color: #121212 !important;
}

.theme-bright .text-light {
  color: #222222 !important;
}

.theme-bright .text-white-50 {
  color: rgba(18, 18, 18, 0.6) !important;
}

.theme-bright .text-muted {
  color: #4a4a4a !important;
}

.theme-bright .text-dim {
  color: #666666 !important;
}

.theme-bright .nirkevent-footer {
  background: #e5e5e5 !important;
  color: #121212 !important;
  border-top: 1px solid rgba(18, 18, 18, 0.1) !important;
}

.theme-bright .nirkevent-footer a,
.theme-bright .nirkevent-footer p,
.theme-bright .nirkevent-footer h6,
.theme-bright .nirkevent-footer span {
  color: #121212 !important;
}

.theme-bright .nirkevent-footer a:hover {
  color: var(--accent-primary) !important;
}

.theme-bright .navbar-collapse {
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1) !important;
}

.theme-bright .navbar-collapse a {
  color: #121212 !important;
}

.theme-bright .navbar-collapse a:hover {
  color: var(--accent-primary) !important;
}

.theme-bright .quick-delivery-banner a,
.theme-bright .quick-delivery-banner span,
.theme-bright .quick-delivery-banner strong {
  color: #121212 !important;
}

.theme-bright .navbar-brand span {
  color: #121212 !important;
}

.theme-bright .btn-glow-primary,
.theme-bright .btn-event-plan {
  color: #121212 !important;
}

.theme-bright .btn-glow-primary *,
.theme-bright .btn-event-plan * {
  color: #121212 !important;
}

.theme-bright .category-pill-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04) !important;
}

.theme-bright .category-pill-card.active,
.theme-bright .category-pill-card:hover {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25) !important;
}

/* Card Category Images Layout */
.category-pill-card {
  background: #ffffff !important;
  border: 2px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  padding: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  width: 100px !important;
  height: 112px !important;
  margin: 0 auto !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}
@media (min-width: 768px) {
  .category-pill-card {
    width: 140px !important;
    height: 155px !important;
    border-radius: 16px !important;
  }
}
.category-pill-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill !important;
}
.category-pill-card:hover, .category-pill-card.active {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45) !important;
  transform: translateY(-4px);
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--bg-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  color: #ffffff;
}

.glass-panel-interactive {
  background: var(--bg-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-normal);
  color: #ffffff;
}

.glass-panel-interactive:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-glass-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   SPECIALTY & ADD-ON CHECKBOX CARDS STYLING
   ========================================================================== */

.specialty-check-card {
  background: rgba(15, 23, 42, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: var(--radius-md) !important;
  padding: 1.1rem 1.25rem !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  color: #ffffff !important;
  display: block;
  height: 100%;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.specialty-check-card:hover {
  background: rgba(27, 39, 66, 0.96) !important;
  border-color: var(--accent-primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.specialty-check-card input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  accent-color: #a855f7 !important;
  cursor: pointer;
  margin-top: 0;
  vertical-align: middle;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  padding: 0 3.5rem;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(168, 85, 247, 0.25);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: all 0.3s ease;
  color: #ffffff;
}

.testimonial-carousel .carousel-control-prev {
  left: 0;
}

.testimonial-carousel .carousel-control-next {
  right: 0;
}

.testimonial-carousel .carousel-control-prev:hover,
.testimonial-carousel .carousel-control-next:hover {
  background: var(--gradient-primary);
  opacity: 1;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

@media (max-width: 767.98px) {
  .testimonial-carousel {
    padding: 0 1rem;
  }
  
  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next {
    top: auto;
    bottom: -55px;
    transform: none;
  }

  .testimonial-carousel .carousel-control-prev {
    left: 35%;
  }

  .testimonial-carousel .carousel-control-next {
    right: 35%;
  }
}

/* Global Modern Glass Input System */
.form-control,
.form-select,
.glass-input,
.glass-input-animated,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="url"],
input[type="number"],
textarea,
select {
  background-color: rgba(15, 23, 42, 0.78) !important;
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border-radius: 14px !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 1.1rem !important;
  font-size: 0.92rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

.form-control:focus,
.form-select:focus,
.glass-input:focus,
.glass-input-animated:focus,
input:focus,
textarea:focus,
select:focus {
  background-color: rgba(15, 23, 42, 0.95) !important;
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.5), inset 0 0 10px rgba(168, 85, 247, 0.15) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
  outline: none !important;
}

.form-control::placeholder,
.glass-input::placeholder,
.glass-input-animated::placeholder,
input::placeholder,
textarea::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

select option, .form-select option {
  background-color: #0f172a !important;
  color: #ffffff !important;
  padding: 0.5rem;
}

.input-icon-group {
  position: relative;
  width: 100%;
}

.input-icon-group i.input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  font-size: 1.05rem;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 5;
}

.input-icon-group.textarea-icon-group i.input-icon {
  top: 1.25rem;
  transform: translateY(0);
}

.input-icon-group input, 
.input-icon-group select, 
.input-icon-group textarea,
.input-icon-group .form-control,
.input-icon-group .form-select {
  padding-left: 3rem !important;
}

.input-icon-group:focus-within i.input-icon {
  color: var(--accent-primary);
  transform: translateY(-50%) scale(1.15);
}

.input-icon-group.textarea-icon-group:focus-within i.input-icon {
  transform: translateY(0) scale(1.15);
}

/* Offer Banner Cards */
.banner-offer-animated {
  background: linear-gradient(135deg, rgba(22, 32, 54, 0.95), rgba(15, 23, 42, 0.98)) !important;
  border: 1px solid var(--border-glass-bright) !important;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.banner-offer-animated:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(168, 85, 247, 0.35);
  border-color: var(--accent-cyan) !important;
}

.banner-offer-badge-warning {
  background: #fde047 !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.banner-offer-badge-info {
  background: #22d3ee !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* Vendor Service Cards */
.vendor-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  color: #ffffff;
}

.vendor-card:hover {
  border-color: var(--border-glass-bright);
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.vendor-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.vendor-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vendor-card:hover .vendor-card-img-wrap img {
  transform: scale(1.08);
}

.vendor-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.vendor-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.vendor-wishlist-btn:hover, .vendor-wishlist-btn.active {
  background: rgba(251, 113, 133, 0.3);
  color: var(--accent-rose);
  border-color: var(--accent-rose);
}

.vendor-card-body {
  padding: 1.25rem;
}

.slot-badge {
  background: rgba(34, 211, 238, 0.18);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.35);
  font-size: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Sidebar Styling */
.dashboard-sidebar {
  background: var(--bg-surface);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-glass);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dash-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: #e2e8f0 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

.dash-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  transform: translateX(4px);
}

.dash-nav-link.active {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.3) 0%, rgba(34, 211, 238, 0.2) 100%) !important;
  color: #ffffff !important;
  border: 1px solid var(--border-glass-bright) !important;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.25);
}

.dash-nav-link i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

/* Buttons */
.btn-glow-primary, .btn-add-to-plan {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md);
  padding: 0.6rem 1.2rem;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.45) !important;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap !important;
  cursor: pointer;
  z-index: 5;
}

.btn-glow-primary:hover, .btn-add-to-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(168, 85, 247, 0.65) !important;
  color: #ffffff !important;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid var(--border-glass) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  transition: var(--transition-fast);
  white-space: nowrap !important;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: var(--border-glass-bright) !important;
  color: #ffffff !important;
}

.btn-event-plan {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md);
  padding: 0.55rem 1.25rem;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.45) !important;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap !important;
}

/* Header Navbar & Compact Search Bar */
.nirkevent-navbar {
  background: rgba(7, 10, 18, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 0.65rem 0;
}

.location-badge-picker {
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.search-bar-wrap {
  position: relative;
  width: 100%;
}

.search-bar-wrap .search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a855f7;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 5;
}

.search-bar-wrap input {
  padding-left: 2.8rem !important;
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
  font-size: 0.88rem !important;
  min-height: 38px !important;
  border-radius: var(--radius-pill) !important;
}

.badge-counter {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--accent-rose);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category Quick Card Pills */
.category-pill-card {
  background: rgba(22, 32, 54, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  color: #ffffff !important;
  display: block;
}

.category-pill-card:hover, .category-pill-card.active {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.35), rgba(34, 211, 238, 0.25));
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  color: #ffffff !important;
}

.category-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(168, 85, 247, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: var(--transition-fast);
}

.category-pill-card:hover .category-icon-box {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: scale(1.1);
}

/* Mobile Hamburger Menu */
.navbar-toggler {
  padding: 0.5rem 0.75rem !important;
  border: 1px solid var(--accent-primary) !important;
  background: rgba(168, 85, 247, 0.3) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5) !important;
  outline: none !important;
  cursor: pointer !important;
  z-index: 1070 !important;
}

.navbar-toggler-icon-custom {
  color: #ffffff !important;
  font-size: 1.35rem;
  display: block;
}

@media (max-width: 991.98px) {
  .nirkevent-navbar .container {
    position: relative;
  }

  .navbar-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .navbar-collapse {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(10, 15, 28, 0.98) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
    margin-top: 0.75rem !important;
    border: 1px solid rgba(168, 85, 247, 0.5) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95) !important;
    z-index: 1065 !important;
  }

  .navbar-collapse.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .navbar-collapse:not(.show) {
    display: none !important;
  }
}

/* Footer Styling */
.nirkevent-footer {
  background: rgba(5, 8, 15, 0.96);
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem 0;
  margin-top: 5rem;
  color: #cbd5e1;
}

.nirkevent-footer a {
  color: #cbd5e1;
  transition: var(--transition-fast);
}

.nirkevent-footer a:hover {
  color: var(--accent-primary);
}

/* Bottom Center Controls & Indicators Wrap (Outside Carousel Container) */
.carousel-controls-indicators-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Arrows side-by-side */
.carousel-arrows-byside {
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-control-prev-custom,
.carousel-control-next-custom {
  background: rgba(18, 18, 18, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  outline: none;
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
  background: var(--accent-primary) !important;
  color: #121212 !important;
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5) !important;
}

/* Bright Theme Overrides for buttons */
.theme-bright .carousel-control-prev-custom,
.theme-bright .carousel-control-next-custom {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(18, 18, 18, 0.15) !important;
  color: #121212 !important;
}

.theme-bright .carousel-control-prev-custom:hover,
.theme-bright .carousel-control-next-custom:hover {
  background: var(--accent-primary) !important;
  color: #121212 !important;
  border-color: var(--accent-primary) !important;
}

/* Custom Bootstrap Indicators Scoped Override (circle / rounded pill / circle) */
.carousel-controls-indicators-wrap .carousel-indicators {
  position: static !important;
  margin: 0 !important;
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
}

.carousel-controls-indicators-wrap .carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.35) !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  opacity: 1 !important;
  text-indent: 0 !important; /* Reset Bootstrap text indent */
}

/* Active indicator style is a rounded horizontal pill */
.carousel-controls-indicators-wrap .carousel-indicators button.active {
  width: 24px !important;
  border-radius: 6px !important;
  background-color: var(--accent-primary) !important; /* Gold */
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5) !important;
}

.theme-bright .carousel-controls-indicators-wrap .carousel-indicators button {
  background-color: rgba(18, 18, 18, 0.3) !important;
}

.theme-bright .carousel-controls-indicators-wrap .carousel-indicators button.active {
  background-color: var(--accent-primary) !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3) !important;
}


