/* =========================================================
   INSPIRO THEME SYSTEM
   Works alongside Bootstrap without overriding it
   ========================================================= */

/* ===============================
   1. DESIGN TOKENS
================================ */
:root{

  /* Theme Core (Purple Identity) */
  --theme:#4C1D95;
  --theme-dark:#2C1A4D;
  --theme-light:#EDE9FE;
  --theme-darker:#0d0916;

  /* Accent (Teal Energy) */
  --accent:#14B8A6;
  --accent-dark:#0F766E;
  --accent-light:#CCFBF1;

  /* Neutrals */
  --neutral:#F4F6FA;
  --white:#ffffff;
  --black:#000000;

  /* Text */
  --text-main:#0F172A;
  --text-muted:#64748B;

  /* Borders */
  --border:#E2E8F0;

  /* Effects */
  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:30px;

  --shadow-sm:0 4px 20px rgba(0,0,0,0.05);
  --shadow-md:0 10px 35px rgba(0,0,0,0.08);

  --transition:.3s ease;
}


/* =========================================================
   2. BACKGROUND UTILITIES
   (Does NOT override Bootstrap)
   ========================================================= */

.bg-theme{ background-color:var(--theme)!important; }
.bg-theme-dark{ background-color:var(--theme-dark)!important; }
.bg-theme-darker{ background-color:var(--theme-darker)!important; }
.bg-theme-light{ background-color:var(--theme-light)!important; }

.bg-accent{ background-color:var(--accent)!important; }
.bg-accent-dark{ background-color:var(--accent-dark)!important; }
.bg-accent-light{ background-color:var(--accent-light)!important; }

.bg-neutral{ background-color:var(--neutral)!important; }


/* 1. The Base Layer */
.bg-gradient {
  position: relative; 
  overflow: hidden;  
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--theme), var(--accent)) !important;
  color: #fff;
  z-index: 1;
}

/* 2. The Shared Glow Base */
.bg-gradient::before,
.bg-gradient::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none; /* Allows clicking buttons through the glow */
  z-index: -1;           /* Forces the glow BEHIND the text */
}

/* 3. The Static Center Light */
.bg-gradient::before {
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  filter: blur(60px);
  opacity: 0.6;
}

/* 4. The Pulsing Outer Glow */
.bg-gradient::after {
  width: 1000px;
  height: 1000px; 
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  filter: blur(90px);
  animation: pulseGlow 8s ease-in-out infinite;
}

/* 5. The Animation */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* 6. Ensure Content Visibility */
.bg-gradient .container {
  position: relative;
  z-index: 2; /* High-ground for your text and buttons */
}

.bg-gradient2{
  background:var(--theme);
  color:#fff;
  background: radial-gradient(circle,rgba(76, 29, 149, 1) 0%, rgba(13, 9, 22, 1) 100%);
}

/* HERO */
.hero-slider-wrapper {
    min-height: 400px;
    height: 60vh; /* Adjust height as needed */
}

.heroSwiper, .hero-slide {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-slide {
    padding: 100px 0;
}

/* Customizing Pagination */
.hero-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color, #ff4d00);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}


/* =========================================================
   3. TEXT UTILITIES
================================ */

.text-theme{ color:var(--theme)!important; }
.text-theme-dark{ color:var(--theme-dark)!important; }
.text-theme-light{ color:var(--theme-light)!important; }

.text-accent{ color:var(--accent)!important; }
.text-accent-dark{ color:var(--accent-dark)!important; }

.text-main{ color:var(--text-main)!important; }
.text-muted-custom{ color:var(--text-muted)!important; }


/* =========================================================
   4. BORDER UTILITIES
================================ */

.border-theme{ border-color:var(--theme)!important; }
.border-accent{ border-color:var(--accent)!important; }
.border-neutral{ border-color:var(--border)!important; }


/* =========================================================
   5. BUTTON SYSTEM
   (Custom — Bootstrap untouched)
================================ */

/* --- Theme Button --- */
.btn-theme{
  background:var(--theme);
  color:#fff;
  border:none;
  border-radius:var(--radius-lg);
  padding:.6rem 1.5rem;
  transition:var(--transition);
}

.btn-theme:hover{
  background:var(--theme-dark);
  color:#fff;
}


/* --- Accent Button --- */
.btn-accent{
  background:var(--accent);
  color:#fff;
  border:none;
  border-radius:var(--radius-lg);
  padding:.6rem 1.5rem;
  transition:var(--transition);
}

.btn-accent:hover{
  background:var(--accent-dark);
  color:#fff;
}


/* --- Outline Accent --- */
.btn-outline-accent{
  background:transparent;
  border:1px solid var(--accent);
  color:var(--accent);
  border-radius:var(--radius-lg);
  padding:.6rem 1.5rem;
  transition:var(--transition);
}

.btn-outline-accent:hover{
  background:var(--accent);
  color:#fff;
}


/* --- Gradient Premium --- */
.btn-theme-gradient{
  background:linear-gradient(90deg,var(--theme),var(--accent));
  border:none;
  color:#fff;
  border-radius:var(--radius-lg);
  padding:.6rem 1.5rem;
  transition:var(--transition);
}

.btn-theme-gradient:hover{
  opacity:.9;
  color:#fff;
}


/* Make selected categories look "active" */
.btn-check:checked + .btn {
    background-color: #14B8A6 !important; /* Replace with your --theme-color */
    color: #ffffff !important;
    border-color: #0d6efd !important;
    transform: scale(1.05); /* Slight "pop" effect */
    transition: all 0.2s ease;
}

/* Optional: Add a checkmark icon via CSS when selected */
.btn-check:checked + .btn::before {
    content: "✓ ";
    font-weight: bold;
}


/* =========================================================
   6. CARD & SURFACE HELPERS
================================ */

.card-theme{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
  transition:var(--transition);
}

.card-theme:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}


/* =========================================================
   7. NAVBAR / LAYOUT ENHANCEMENT
================================ */

.navbar-theme{
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow-sm);
}

.nav-link-theme{
  color:var(--text-main)!important;
  font-weight:500;
  transition:var(--transition);
}

.nav-link-theme:hover{
  color:var(--accent)!important;
}

.navbar-brand-theme{
  color:var(--theme)!important;
}


/* =========================================================
   8. GLOBAL BASE
================================ */

body{
  background:var(--neutral);
  color:var(--text-main);
}

a{
  text-decoration:none;
  transition:var(--transition);
}

a:hover{
  color:var(--accent);
}


/* =========================================================
   9. DARK MODE FOUNDATION
================================ */

[data-theme="dark"]{
  --neutral:#0F172A;
  --text-main:#F1F5F9;
  --border:#1E293B;
}




/* Premium Slim Offcanvas */
.offcanvas {
    width: 250px !important; /* Forces the width to stay small */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
   /* background-color: #2B2079 !important; /* Matching Inspiro Theme */
    color: white !important;
}

/* Optional: Add a subtle blur to the backdrop to keep it high-end */
.offcanvas-backdrop.show {
    opacity: 0.3;
    backdrop-filter: blur(4px);
}

/* Ensure images/logo inside the menu don't overflow */
.offcanvas-body img {
    max-width: 100%;
    height: auto;
}

.custom-offcanvas {
  padding-top: 10px;
  width: 250px;
}
.offcanvas-nav .nav-link {
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  border-bottom: 1px solid #f1f1f1;
}

.offcanvas-nav .nav-link i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--theme);
}

.offcanvas-nav .nav-link:hover {
  background: rgba(0,0,0,0.03);
  color: var(--theme);
  padding-left: 15px;
}

.offcanvas-nav .nav-link.active {
  color: var(--theme);
  font-weight: 600;
  background: rgba(0,0,0,0.04);
}

/* Remove last border */
.offcanvas-nav .nav-item:last-child .nav-link {
  border-bottom: none;
}

/* Dropdown improvements */
.dropdown-menu .dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: rgba(0,0,0,0.04);
  color: var(--theme);
}


/* MOBILE BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 7px 0;
    z-index: 1000;
}

.bottom-nav a {
    color: #14B8A6;
    font-size: 22px;
}

@media(min-width:992px){
    .bottom-nav { display:none; }
}

/* =========================================================
   SECTION BACKGROUND UTILITIES
   ========================================================= */

/* White Section */
.section-light{
  background-color: var(--white);
}

/* Soft Purple Tint (Brand Soft) */
.section-soft{
  background-color: var(--primary-light);
}

/* Neutral Alt Section */
.section-alt{
  background-color: var(--neutral);
}


/* =========================================================
   EXTENDED SPACING UTILITIES
   (Bootstrap doesn't have py-6)
   ========================================================= */

.py-6{
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pt-6{
  padding-top: 5rem !important;
}

.pb-6{
  padding-bottom: 5rem !important;
}

/* =============================
   Card Hover Lift
============================= */

.card-theme{
  transition: all .35s ease;
}

.card-theme:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =============================
   Button Hover Glow
============================= */

.btn-gradient {
  background: linear-gradient(45deg, var(--theme), var(--accent));
  background-size: 200% auto;
  color: white;
  border: none;
  border:none;
  border-radius:var(--radius-lg);
  padding:.6rem 1.5rem;
  transition: 0.5s;
  font-weight: 600;
}

.btn-gradient:hover {
  /* This shifts the gradient position for a "shimmer" effect */
  background-position: right center; 
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-accent:hover,
.btn-gradient:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.35);
}

/* =============================
   Navbar Scroll Effect
============================= */

.navbar{
  transition: all .3s ease;
}

.navbar.scrolled{
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

#results-container {
    transition: opacity 0.3s ease-in-out;
}

.featured-events {
  background: #0f172a;
  color: #fff;
}
.event-card {
  background: #1e293b;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
  /*height: 100%;*/
}

/* Ensure images don't shift layout while loading */
.event-card .event-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #eee; /* Placeholder color */
}

.event-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.event-content {
  padding: 15px;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.event-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
}

.event-category {
  background: var(--bs-primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
}

.event-date {
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
}

.event-content {
  padding: 16px;
}

.event-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.event-location {
  font-size: 13px;
  color: #777;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.event-price {
  font-weight: 600;
}

.event-status {
  font-size: 13px;
  font-weight: 500;
}

.going-fast {
  color: #ff9800;
}

.almost-full {
  color: #e53935;
}

.about-solutions {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  position: relative;
}

/* Categories */

/*
.popular-categories {
  background: #f9fafc;
}
  */

.popular-categories {
  background: linear-gradient(
    135deg,
    #f8fbff 0%,
    #fdf7ff 100%
  );
  position: relative;
  overflow: hidden;
}

.category-item {
  text-decoration: none;
  color: #333;
  display: block;
  transition: 0.3s ease;
}

.category-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.category-item span {
  font-size: 14px;
  font-weight: 500;
}

.category-item:hover .category-icon {
  background: var(--bs-primary);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-item:hover span {
  color: var(--bs-primary);
}

.category-item {
  text-decoration: none;
  color: #333;
  display: block;
  transition: 0.3s ease;
}

.category-icon {
  width: 95px;
  height: 95px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.category-item span {
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}


/*Signup Modal*/
/* Premium Modal Adjustments */
#signupModal .modal-content {
    background: #ffffff;
    overflow: hidden;
}

#signupModal .form-floating > .form-control {
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

#signupModal .form-floating > .form-control:focus {
    border-color: #2B2079;
    box-shadow: 0 0 0 0.25rem rgba(43, 32, 121, 0.1);
}

#signupModal .btn-theme {
    background: #2B2079;
    color: white;
    transition: transform 0.3s ease;
}

#signupModal .btn-theme:hover {
    background: #4C1D95;
    transform: translateY(-2px);
}

/* Fix for mobile floating labels in rounded inputs */
#signupModal .form-floating > label {
    padding-left: 1.5rem;
}


/* HOVER EFFECT */
.category-item:hover .category-icon {
  background: linear-gradient(135deg, var(--theme), var(--accent));
  color: #fff;
  transform: translateY(-8px) rotate(8deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.category-item:hover span {
  color: var(--bs-theme);
}

.category-icon {
  position: relative;
}

/* Count Badge */
.category-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 7px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.category-item:hover .category-count {
  transform: scale(1.1);
}

@media (max-width: 768px) {

  .popular-categories .row {
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
  }

  .popular-categories .row-inner {
    display: flex;
    gap: 20px;
    animation: autoScroll 25s linear infinite;
  }

  .popular-categories .col-4 {
    flex: 0 0 auto;
    width: 130px;
  }

  /* Pause on hover/touch */
  .popular-categories:hover .row-inner {
    animation-play-state: paused;
  }

  @keyframes autoScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

}

.btn-check:checked + .btn-outline-secondary {
    background-color: var(--theme-color, #6a11cb); /* Use your theme color */
    border-color: var(--theme-color, #6a11cb);
    color: white;
}
/* STATUS BASE */
.event-status {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

/* GOING FAST STYLE */
.going-fast {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  position: relative;
  animation: pulseBadge 1.6s infinite;
}

/* ALMOST FULL */
.almost-full {
  background: rgba(229, 57, 53, 0.1);
  color: #e53935;
}

/* PULSE ANIMATION */
@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 152, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
  }
}


.about-solutions .display-6 {
  letter-spacing: -0.5px;
}

.solution-card {
  background: #ffffff;
  border-radius: 20px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, var(--theme), var(--accent));
  color: #fff;
  font-size: 22px;
}

.mb-6 {
  margin-bottom: 4rem;
}

.vendorSwiper {
  width: 100%;
}

.vendorSwiper .swiper-wrapper {
  align-items: stretch;
}

.top-vendors {
  background: var(--accent-light);
}

.vendor-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.vendor-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.vendor-content {
  padding: 16px;
}

.vendor-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.vendor-meta .rating {
  color: #f59e0b;
  font-weight: 600;
}

.vendor-meta .price {
  color: var(--theme);
  font-weight: 600;
}

.vendor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.vendor-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vendor-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.vendor-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vendor-name {
  font-size: 15px;
  line-height: 1.3;
}

.vendor-price {
  font-weight: 700;
  color: var(--theme);
  font-size: 14px;
}

.vendor-services {
  font-size: 13px;
  color: #666;
}

.vendor-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.vendor-location {
  color: #777;
}

.vendor-rating {
  color: #f59e0b;
  font-weight: 600;
}

.vendor-meta .btn {
  font-size: 11px;
  padding: 4px 10px;
}

.vendor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}


/* Custom styling for the PWA Toast */
.swal2-toast {
    width: 90% !important;
    max-width: 400px !important;
    border-radius: 50px !important; /* Pill shape */
    padding: 0.5rem 1rem !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    margin-top: 10px !important;
}

.swal2-title {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.swal2-html-container {
    font-size: 0.8rem !important;
}

/* Custom styling for the Inspiro Premium Toast */
.inspiro-toast-border {
    border-radius: 50px !important; /* Makes it a pill */
    padding: 8px 15px !important;
    width: auto !important; /* Only as wide as content */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

/* Adjust icon and text sizing for minimalism */
.swal2-icon {
    transform: scale(0.7); /* Smaller icon */
}

.swal2-title {
    font-size: 0.95rem !important;
    margin: 0 10px !important;
}

/* Specific styling for the Switch-to-App variant */
.swal2-toast.inspiro-switch-toast {
    background: #0F172A !important; /* Slightly darker to contrast with the install toast */
    border-left: 5px solid #4C1D95 !important;
}

.inspiro-switch-toast .swal2-title {
    color: #4C1D95 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem !important;
}

/* Ensure the persistent toast feels like a floating notification */
.inspiro-toast-border {
    margin-top: 15px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

/*Mobile constructs*/

/* --- Fluid Typography --- */
h1, .display-4 {
    font-size: clamp(1.8rem, 8vw, 3.5rem) !important;
    line-height: 1.2;
}

h2, .display-6 {
    font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
}

.lead {
    font-size: clamp(0.9rem, 4vw, 1.25rem) !important;
}

/* --- Hero Scaling for Mobile --- */
@media (max-width: 768px) {
    .hero-slider-wrapper {
        min-height: 250px;
        height: 30vh; /* Shorter on mobile */
    }
    .hero-slide {
        padding: 20px 0;
    }
    .btn-lg {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}


/* --- Vendor & Event Card Text Reduction --- */
@media (max-width: 576px) {
    .event-title, .vendor-name {
        font-size: 0.95rem !important;
        font-weight: 700;
    }
    .event-location, .vendor-services {
        font-size: 0.75rem !important;
    }
    .event-meta, .vendor-meta {
        font-size: 0.75rem;
    }
    /* Reduce card padding for tighter fit */
    .event-content, .vendor-content {
        padding: 10px !important;
    }
    
    .event-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    }

    .event-img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    }
    
    
.vendor-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.vendor-img img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.vendor-content {
  padding: 8px;
}
    
}

/*INSPIRO STAGING*/

/*
<div class="inspiro-stage">
    <img src="user-upload.jpg" class="img-blur-bg" aria-hidden="true">
    
    <img src="user-upload.jpg" class="img-main">
</div>

*/
/* 1. The Container (The 9:16 'Phone' Frame) */
.inspiro-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* 2. The Blurry Background Layer */
.img-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills the whole 9:16 area */
    filter: blur(20px) brightness(0.6);
    transform: scale(1.1); /* Prevents white edges from the blur */
    z-index: 1;
}

/* 3. The Main Image Layer */
.img-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps the whole image visible without cropping */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 4. ADAPTIVE LOGIC: When the user rotates the phone to Landscape */
@media (orientation: landscape) {
    /* OPTION A: If you want the container to still be 9:16 but fit the screen height */
    .inspiro-stage {
        height: 100vh;
        width: auto;
    }

    /* OPTION B: 'The Fill' - If you want the image to expand to fill the horizontal width */
    .img-main {
        object-fit: cover; /* This will crop the top/bottom to fill the wide screen */
    }
    
    /* If you prefer the image to fit the width WITHOUT cropping in landscape: */
    /* .img-main { object-fit: contain; width: 100vw; height: auto; } */
}



/* Special Share Card */
.inspiro-dash-v1 .share-card {
    background: #ffffff;
    border-radius: 24px;
    border: 2px solid #e0f2fe;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.inspiro-dash-v1 .share-card:hover {
    border-color: #3b82f6;
}

/* Visual Side Styling */
.inspiro-dash-v1 .share-visual {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspiro-dash-v1 .share-icon-wrapper {
    position: relative;
    font-size: 2.5rem;
    color: #3b82f6;
    z-index: 2;
}

/* Eye-Catching Animation */
.inspiro-dash-v1 .ping-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes ping {
    75%, 100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Text Adjustments */
.inspiro-dash-v1 .smaller {
    font-size: 0.78rem !important;
    line-height: 1.3;
}

/* Button & Input Polish */
.inspiro-dash-v1 .input-group .form-control {
    font-family: monospace;
    color: #475569;
}

/* Card Container */
.inspiro-dash-v1 .insight-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center for mobile aesthetics */
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.inspiro-dash-v1 .insight-card:active {
    transform: scale(0.95);
    background: #f8fafc;
}

/* Icon Styling */
.inspiro-dash-v1 .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Typography */
.inspiro-dash-v1 .insight-card .label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.inspiro-dash-v1 .insight-card .value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0;
}

/* Special Highlight for Leads */
.inspiro-dash-v1 .highlight-lead {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    border: 1px solid #bfdbfe;
}

/* Vibrant Light Backgrounds */
.bg-primary-light { background: #e0f2fe; color: #0369a1; }
.bg-info-light    { background: #e0f7fa; color: #00838f; }
.bg-purple-light  { background: #f3e5f5; color: #7b1fa2; }
.bg-warning-light { background: #fff8e1; color: #ff8f00; }
.bg-success-light { background: #e8f5e9; color: #2e7d32; }
.bg-danger-light  { background: #ffebee; color: #c62828; }

/* --- LEADS COMPONENT (Namespace: .leads-v1) --- */
.inspiro-dash-v1 .leads-v1 {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); /* Deep, Premium Shadow */
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* 1. Visual Side (Conceptual 3D Image Area) */
.inspiro-dash-v1 .leads-v1 .visual-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); /* Deep Navy Base */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
    border-radius: 28px 0 0 28px;
    position: relative;
    overflow: hidden;
}

/* Glassmorphic Layer on Image Side */
.inspiro-dash-v1 .leads-v1 .visual-container::after {
    content: "";
    position: absolute;
    bottom: -10px; right: -10px;
    width: 80px; height: 80px;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(25px);
    border-radius: 50%;
}

/* Image Polish (Use an object-fit strategy) */
.inspiro-dash-v1 .leads-v1 .lead-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shows whole object without cropping */
    transform: scale(1.1); /* Subtle zoom for premium effect */
    transition: transform 0.4s ease;
}

/* 2. Content Side (High-Saturation Text/UI) */
.inspiro-dash-v1 .leads-v1 .content-container {
    padding: 22px;
    background: #ffffff;
    border-radius: 0 28px 28px 0;
}

/* Typography Hierarchy */
.inspiro-dash-v1 .leads-v1 .label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #4f46e5; /* Saturated Indigo/Blue */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.inspiro-dash-v1 .leads-v1 .title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a; /* Near-Black for definition */
    margin-bottom: 6px;
    line-height: 1.2;
}

/* Input Group Polish */
.inspiro-dash-v1 .leads-v1 .ref-input {
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.78rem;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
}

.inspiro-dash-v1 .leads-v1 .copy-btn {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}


/* WRAPPER */
.finance-wrapper{
  position: relative;
}

/* CARD */
.credit-card{
  padding: 24px;
  border-radius: 28px;
  color:#fff;

  background: linear-gradient(135deg, var(--theme), var(--accent));
  box-shadow: 0 20px 50px rgba(76,29,149,0.35);

  position: relative;
  overflow: hidden;
}

/* Glow effects */
.credit-card::before{
  content:'';
  position:absolute;
  width:240px;
  height:240px;
  background: rgba(255,255,255,0.12);
  border-radius:50%;
  top:-80px;
  right:-80px;
}

.credit-card::after{
  content:'';
  position:absolute;
  width:200px;
  height:200px;
  background: rgba(255,255,255,0.06);
  border-radius:50%;
  bottom:-80px;
  left:-80px;
}

/* TEXT */
.label{
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
}

.balance{
  font-weight: 800;
  font-size: 2rem;
  margin: 4px 0;
}

.brand{
  font-size: 13px;
  opacity: 0.75;
  font-weight: 500;
}

.card-icon{
  font-size: 28px;
}

/* CARD NUMBER */
.card-number{
  letter-spacing: 3px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.95;
}

/* STATS */
.stats{
  font-size: 14px;
  font-weight: 500;
}

/* ACTION BAR */
.action-bar{
  margin-top: -22px;
  background:#fff;
  border-radius: 22px;
  padding: 14px 10px;

  display:flex;
  justify-content: space-around;

  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ACTION ITEM */
.action-item{
  text-align:center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.action-item i{
  display:block;
  font-size:26px;
  color: var(--accent);
  margin-bottom:4px;
}

/* TOUCH FEEDBACK */
.action-item:active{
  transform: scale(0.92);
}

/* --- UNIFIED INSPIRO ACTION BUTTONS --- */
/* --- ACTION BUTTONS REPAIR --- */
.inspiro-actions .btn-impact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    cursor: pointer;
    /* CRITICAL FIX: Change from hidden to visible so the pulse can expand */
    overflow: visible !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-clip: padding-box;
}

/* 1. Create Event (Indigo) */
.inspiro-actions .btn-event {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* 2. Post a Gig (Emerald) */
.inspiro-actions .btn-gig {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

/*PULSATING BUTTONS*/
/* --- MOBILE MENU PROTECTOR --- */
.inspiro-actions {
    /* Gives the pulse 20px of 'invisible' space so it doesn't touch the fixed menu */
    padding-bottom: 30px !important; 
    position: relative;
    z-index: 10; /* Keeps buttons above background but below the fixed menu */
}

.inspiro-actions .btn-impact {
    position: relative;
    overflow: visible !important;
    /* ... your other styles ... */
}

/* Ensure your Fixed Mobile Menu has a higher Z-Index */
/* Search for your mobile menu class, it usually looks like this: */
.mobile-nav, .fixed-bottom {
    z-index: 9999 !important; /* Forces menu to stay ON TOP of the pulse */
    background: #ffffff; /* Ensure it has a solid background to block the pulse */
}

/* THE PULSE ENGINE - Adjusted for safety */
.inspiro-actions .pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.5;
    z-index: -1; /* Moved to -1 to stay strictly BEHIND the button surface */
    animation: btnPulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    /* Reduced scale from 1.4 to 1.25 to prevent it hitting the menu */
    100% {
        transform: scale(1.25); 
        opacity: 0;
    }
}


/* TEXT CONTENT LAYER */
.inspiro-actions .btn-content {
    position: relative;
    z-index: 2; /* Sits above the pulsing ring */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.inspiro-actions .btn-content i {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.inspiro-actions .btn-content span {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}


/* Hover Effect */
.inspiro-actions .btn-impact:hover {
    transform: translateY(-5px) scale(1.02);
}


/* --- UNIFIED MINIMALIST NEON TICKER --- */
.inspiro-ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    background: transparent;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

/* Force the Swiper Engine to move like a movie reel */
.newsTicker .swiper-wrapper {
    display: flex !important;
    transition-timing-function: linear !important; /* CRITICAL: Smooth motion */
    pointer-events: none; /* Prevents accidental clicks from stopping scroll */
}

.news-item {
    width: auto !important; 
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    display: flex;
    align-items: center;
    padding-right: 80px; /* Space between the 30 items */
    color: #334155;
    font-size: 0.98rem;
    letter-spacing: 0.3px;
}

/* The High-Impact Glowing Dot */
.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #ef4444, 0 0 20px rgba(239, 68, 68, 0.4);
    animation: neonPulse 1.5s infinite ease-in-out;
}

/* Typography Accents */
.news-tag {
    font-weight: 900;
    margin-right: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.news-item strong {
    font-weight: 800;
    color: #0f172a;
}

/* Specific Tag Colors for Vibrancy */
.text-success { color: #10b981 !important; }
.text-primary { color: #3b82f6 !important; }
.text-warning { color: #f59e0b !important; }

@keyframes neonPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes btnPulse {
    0% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
    100% { 
        transform: scale(1.5); /* If it's too subtle, increase to 1.6 */
        opacity: 0; 
    }
}

.inspiro-actions {
    position: relative;
    /* Force a specific height so it doesn't collapse */
    min-height: 140px; 
    /* Keep overflow visible so the pulse can be seen */
    overflow: visible !important; 
    /* This padding acts as the 'wall' between your buttons and the menu */
    padding-bottom: 40px !important; 
    /* Ensure it stays behind the fixed menu */
    z-index: 5; 
}
/* Ensure the fixed menu is untouchable */
.fixed-bottom, .mobile-nav {
    z-index: 9999 !important;
    position: fixed;
    bottom: 0;
    /* Adding a solid background prevents the pulse from showing through the menu */
    background: #ffffff; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}


/* Keep the results container stable */
#results-container {
    min-height: 400px; 
    transition: all 0.3s ease;
}

/* Prevent the loader from pushing content around too aggressively */
#loader {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* How It Works Specific Styles */
.nav-pills .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--theme) !important;
    box-shadow: var(--shadow-sm);
}

.badge.bg-accent-light {
    background-color: var(--accent-light) !important;
    color: var(--accent-dark) !important;
}

.border-dashed {
    border: 2px dashed var(--border) !important;
}

.bg-theme-light {
    background-color: var(--theme-light) !important;
}

.x-small {
    font-size: 0.75rem;
}

/* Enhancing the Referral Card background icons */
.opacity-10 {
    opacity: 0.1 !important;
}

/* FAQ Specific Styles */
.accordion-button:not(.collapsed) {
    background-color: var(--theme-light);
    color: var(--theme);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.sticky-top {
    z-index: 10;
}

/* Sidebar Pill Hover */
#faq-tabs .nav-link {
    border: 1px solid transparent;
    font-weight: 500;
    transition: 0.3s;
    color: var(--text-main);
    border: 1px solid transparent;

}

#faq-tabs .nav-link:hover {
    background-color: var(--theme-light);
    color: var(--theme);
}

#faq-tabs .nav-link i {
    width: 30px; /* Fixed width to align text */
    text-align: center;
    color: var(--theme); /* Single color theme */
    transition: 0.3s;
}

#faq-tabs .nav-link.active {
    background-color: var(--theme);
    color: white;
}

#faq-tabs .nav-link.active i {
    color: var(--accent); /* Optional: Highlight icon on active state */
}

#faq-tabs .nav-link:hover:not(.active) {
    background-color: var(--theme-light);
    border-color: var(--theme);
}