/* FoundrFuse - Matchmaking Platform Stylesheet */

:root {
  /* Dating App Inspired Color Palette */
  --primary-color: #FF6B9D;
  /* Romantic Pink */
  --primary-dark: #E91E63;
  /* Deep Pink */
  --primary-light: #FFE0E6;
  /* Light Pink */
  --secondary-color: #9C27B0;
  /* Purple */
  --secondary-dark: #7B1FA2;
  /* Deep Purple */
  --secondary-light: #F3E5F5;
  /* Light Purple */
  --accent-color: #FF4081;
  /* Vibrant Pink */
  --accent-secondary: #E040FB;
  /* Electric Purple */
  --investor-color: #FF6B9D;
  /* Pink for investors */
  --founder-color: #9C27B0;
  /* Purple for founders */
  --success-color: #4CAF50;
  /* Green */
  --warning-color: #FF9800;
  /* Orange */
  --danger-color: #F44336;
  /* Red */
  --love-gradient: linear-gradient(135deg, #FF6B9D 0%, #9C27B0 50%, #E040FB 100%);
  --romantic-gradient: linear-gradient(45deg, #FFB6C1 0%, #FF69B4 50%, #DA70D6 100%);
  --neutral-100: #ffffff;
  /* White */
  --neutral-200: #FFF8FA;
  /* Very light pink */
  --neutral-300: #FCE4EC;
  /* Light pink */
  --neutral-400: #F8BBD9;
  /* Soft pink */
  --neutral-500: #E1BEE7;
  /* Light purple */
  --neutral-600: #AD1457;
  /* Medium pink */
  --neutral-700: #880E4F;
  /* Dark pink */
  --neutral-800: #4A148C;
  /* Dark purple */
  --neutral-900: #1A0E27;
  /* Very dark purple */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --border-radius: 1rem;
  --box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15);
  --transition-quick: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

html,
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background: linear-gradient(135deg, #FFF8FA 0%, #FCE4EC 50%, #F3E5F5 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 70px;
  position: relative;
}

/* Floating Hearts Background Animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(224, 64, 251, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-quick);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--love-gradient);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E91E63 0%, #7B1FA2 50%, #C2185B 100%);
  color: white;
  text-decoration: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: heartbeat 0.6s ease-in-out;
}

.btn-primary:hover::before {
  left: 100%;
}

@keyframes heartbeat {
  0% { transform: translateY(-3px) scale(1.05); }
  50% { transform: translateY(-3px) scale(1.1); }
  100% { transform: translateY(-3px) scale(1.05); }
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-secondary));
  color: white;
  border: none;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-dark), var(--accent-color));
  color: white;
  text-decoration: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(156, 39, 176, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-outline-primary:hover {
  background: var(--love-gradient);
  color: white;
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
  border-color: transparent;
}

.btn-ghost {
  background: transparent;
  color: var(--primary-color);
  border: none;
}

.btn-ghost:hover {
  color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-2px) scale(1.05);
  background: rgba(255, 107, 157, 0.1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Form elements */
.form-group {
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--neutral-800);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  color: var(--neutral-800);
  background-color: #fff;
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

/* Cards with Romantic Touch */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background: linear-gradient(145deg, #ffffff 0%, #fef7f7 100%);
  background-clip: border-box;
  border: 1px solid rgba(255, 107, 157, 0.1);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition-bounce);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--love-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-text {
  margin-bottom: 1.25rem;
}

/* Grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Media queries for responsive design */
@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--neutral-600);
}

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

.text-secondary {
  color: var(--secondary-color);
}

.text-success {
  color: var(--success-color);
}

.text-warning {
  color: var(--warning-color);
}

.text-danger {
  color: var(--danger-color);
}

.bg-light {
  background-color: var(--neutral-100);
}

.bg-dark {
  background-color: var(--neutral-900);
  color: white;
}

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

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

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.rounded {
  border-radius: var(--border-radius) !important;
}

.shadow {
  box-shadow: var(--box-shadow) !important;
}

/* Custom styles for elements */
/* Romantic Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.637);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 157, 0.1);
  border-top: none;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--love-gradient);
  animation: navbarGlow 3s ease-in-out infinite;
}

@keyframes navbarGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.navbar-brand {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 1px;
  background: var(--love-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: var(--transition-bounce);
  position: relative;
}

.navbar-brand i {
  color: var(--accent-color);
  animation: heartPulse 2s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.navbar-brand:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 4px 20px rgba(255, 107, 157, 0.5));
  animation: brandFloat 0.6s ease-in-out;
}

@keyframes brandFloat {
  0%, 100% { transform: scale(1.1) rotate(-2deg) translateY(0); }
  50% { transform: scale(1.15) rotate(-2deg) translateY(-3px); }
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 0.7rem;
}

.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--neutral-800);
  padding: 0.4rem 0.6rem;
  margin: 0 0.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4em;
  text-decoration: none;
}

.navbar-nav .nav-link i {
  color: #030550;
  transition: color 0.25s cubic-bezier(.4, 2, .6, 1), text-shadow 0.25s;
}

/* Animated Gradient Underline on Hover */
.navbar-nav .nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgb(7, 58, 155), rgb(11, 240, 163));
  opacity: 0;
  transform: scaleX(0.4);
  transition: all 0.32s cubic-bezier(.4, 2, .6, 1);
  z-index: -1;
}

/* Add to your static/css/style.css or in <style> in base.html */
.navbar-profile-img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #eee;
  background: #fff;
}

/* Hover & Active Effects */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: rgb(12, 182, 83);
  background: rgba(74, 107, 255, 0.08);
  box-shadow: 0 2px 12px #4a6bff22;
  transform: translateY(-2px) scale(1.07);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-item.active .nav-link i {
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

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

/* Dropdown Menu */
.dropdown-menu {
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(74, 107, 255, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.06);
  border: none;
  margin-top: 12px;
  min-width: 220px;
  background: rgba(241, 240, 240, 0.781);
  backdrop-filter: blur(10px) saturate(600%);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  z-index: 1 !important;
  position: absolute !important;
}

.dropdown-item {
  font-weight: 500;
  color: #343a40;
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  transition:
    color 0.22s cubic-bezier(.4, 2, .6, 1),
     0.22s cubic-bezier(.4, 2, .6, 1),
    transform 0.18s cubic-bezier(.4, 2, .6, 1);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background: linear-gradient(135deg, rgb(7, 58, 155), rgb(11, 240, 163));
  /* transform: scale(1.04) translateX(3px); */
}

/* Enhanced Buttons */
.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(224, 64, 251, 0.4);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
  color: white;
  text-decoration: none;
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.7rem 1rem;
    margin: 0 0 18px 0;
    border-radius: 0 0 18px 18px;
  }

  .navbar-nav .nav-link {
    margin: 0.2rem 0;
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
  }
}

/* Navbar Toggler (Hamburger) */
.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: 0.2s;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  background: rgba(74, 107, 255, 0.08);
}

/* Premium Badge in Navbar */
.premium-badge {
  background: linear-gradient(90deg, #ffd700 0%, #ff9d00 100%);
  color: #343a40;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 16px;
  padding: 2px 10px 2px 8px;
  margin-left: 0.5em;
  box-shadow: 0 2px 8px #ffd70033;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  letter-spacing: 0.5px;
}

.premium-badge i {
  color: #ffb700;
  margin-right: 2px;
}

/* Register Button in Navbar */
.navbar .btn-primary {
  background: var(--love-gradient);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  padding: 0.7rem 1.5rem;
  margin-left: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5em;
  border: none;
}

.navbar .btn-primary:hover {
  background: linear-gradient(135deg, #E91E63 0%, #7B1FA2 50%, #C2185B 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
  transform: scale(1.05) translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Fix nav-link hover states */
.nav-link:hover,
.nav-link.active {
  background: rgba(255, 107, 157, 0.1);
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  text-decoration: none;
}

/* Footer */
.footer {
  background: linear-gradient(100deg, #00D382 0%, #0bf0a3 50%, #073a9b 100%);
  color: rgb(30, 0, 202);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgb(37, 0, 0);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: white;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

/* Change color of footer links */
.footer-links a {
    color: #000000; /* Change this to your desired color */
    transition: color 0.2s;
    font-weight: bold;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #f6f6f8; /* Change this to your desired hover color */
    text-decoration: underline;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  background: var(--love-gradient);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.copyright {
  background-color: var(--neutral-900);
  color: var(--neutral-500);
  padding: 1.5rem 0;
  text-align: center;
}

/* Animated Chatbot Widget Styles */
#ff-chatbot-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgb(7, 58, 155), rgb(11, 240, 163));
  border-radius: 50%;
  box-shadow: 0 4px 24px #6c47e644;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: ff-bounce 1.6s infinite;
  transition: box-shadow 0.2s;
}

#ff-chatbot-bubble:hover {
  box-shadow: 0 8px 32px #c04aff66;
}

@keyframes ff-bounce {

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

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

#ff-chatbot-bubble svg {
  width: 32px;
  height: 32px;
  color: #fff;
  animation: ff-chatwave 2s infinite;
}

@keyframes ff-chatwave {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* --- Modern Chatbot Redesign --- */
#ff-chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 370px;
  max-width: 98vw;
  height: 540px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-radius: 22px;
  box-shadow: 0 8px 32px #6c47e644, 0 2px 8px #c04aff22;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
  animation: ff-fadein 0.3s;
  border: 1.5px solid #eae6fa;
}

#ff-chatbot-header {
  background:linear-gradient(135deg, rgb(7, 58, 155), rgb(11, 240, 163));
  color: #fff;
  padding: 18px 26px;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #eae6fa;
  box-shadow: 0 2px 8px #c04aff11;
}

#ff-chatbot-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:0.18s;
}

#ff-chatbot-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

#ff-chatbot-body {
  flex: 1 1 auto;
  padding: 18px 18px 0 18px;
  font-size: 15.5px;
  background: transparent;
  overflow-y: auto;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ff-chatbot-msg-user,
.ff-chatbot-msg-bot {
  display: flex;
  margin-bottom: 6px;
}

.ff-chatbot-msg-user {
  justify-content: flex-end;
}

.ff-chatbot-msg-bot {
  justify-content: flex-start;
}

.ff-chatbot-msg-user span,
.ff-chatbot-msg-bot span {
  padding: 10px 16px;
  border-radius: 18px 18px 6px 18px;
  max-width: 80%;
  word-break: break-word;
  font-size: 1rem;
  box-shadow: 0 2px 8px #6c47e611;
  display: inline-block;
}

.ff-chatbot-msg-user span {
  background: linear-gradient(135deg, rgb(7, 58, 155), rgb(11, 240, 163));
  color: #fff;
  border-bottom-right-radius: 4px;
}

.ff-chatbot-msg-bot span {
  background: #f3f0fa;
  color: #3a246b;
  border-bottom-left-radius: 4px;
}

#ff-chatbot-form {
  display: flex;
  padding: 12px 16px 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #eae6fa;
  align-items: center;
  gap: 10px;
  position: sticky;
  bottom: 0;
  z-index: 2;
}

#ff-chatbot-input {
  flex: 1;
  border: 1.5px solid #d7d2f7;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1rem;
  outline: none;
  background: #f8f9fa;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px #c04aff11;
}

#ff-chatbot-input:focus {
  border-color: #6c47e6;
  box-shadow: 0 2px 8px #6c47e622;
}

#ff-chatbot-send {
  background: linear-gradient(135deg, rgb(7, 58, 155), rgb(11, 240, 163));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px #c04aff22;
}

#ff-chatbot-send:hover {
  background: linear-gradient(135deg, rgb(7, 58, 155), rgb(11, 240, 163));
  transform: translateY(-2px) scale(1.04);
}

#ff-chatbot-recommended {
  background: rgba(248, 250, 255, 0.95);
  border-radius: 14px;
  margin: 10px 14px 14px 14px;
  padding: 12px 12px 8px 12px;
  box-shadow: 0 2px 12px #6c47e611;
  position: relative;
  z-index: 1;
  border: 1px solid #e3e6f0;
}

.ff-chatbot-recommended-title {
  font-weight: 700;
  color: #6c47e6;
  margin-bottom: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

#ff-chatbot-recommended-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 120px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e3e6f0 #f0f0f0;
}

#ff-chatbot-recommended-list::-webkit-scrollbar {
  width: 6px;
  background: #f0f0f0;
}

#ff-chatbot-recommended-list::-webkit-scrollbar-thumb {
  background: #e3e6f0;
  border-radius: 4px;
}

#ff-chatbot-recommended-list li {
  background: #fff;
  border: 1px solid #e3e6f0;
  border-radius: 8px;
  margin-bottom: 7px;
  padding: 9px 13px;
  cursor: pointer;
  transition:  0.18s, box-shadow 0.18s, color 0.18s;
  font-size: 0.99rem;
  color: #3a246b;
  box-shadow: 0 1px 4px #6c47e611;
  font-weight: 500;
}

#ff-chatbot-recommended-list li:hover {
  background: #e7f1ff;
  color: #6c47e6;
  box-shadow: 0 2px 8px #6c47e622;
}

@media (max-width: 600px) {
  #ff-chatbot-window {
    width: 99vw;
    right: 0.5vw;
    bottom: 70px;
    height: 75vh;
    min-height: 320px;
    border-radius: 14px;
  }

  #ff-chatbot-header {
    padding: 14px 12px;
    font-size: 1rem;
  }

  #ff-chatbot-body {
    padding: 12px 8px 0 8px;
    font-size: 15px;
  }

  #ff-chatbot-form {
    padding: 10px 8px;
    gap: 6px;
  }

  #ff-chatbot-recommended {
    margin: 8px 2px 8px 2px;
    padding: 8px 4px 4px 4px;
  }
}

/* Responsive Design for Chatbot */


#ff-chatbot-recommended {
  background: #f8faff;
  border-radius: 10px;
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 5px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.ff-chatbot-recommended-title {
  font-weight: 600;
  color: #007bff;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

#ff-chatbot-recommended-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 140px;
  /* Set a suitable height */
  overflow-y: auto;
  /* Enable vertical scroll */
  scrollbar-width: thin;
  /* For Firefox */
}

#ff-chatbot-recommended-list::-webkit-scrollbar {
  width: 6px;
  background: #f0f0f0;
}

#ff-chatbot-recommended-list::-webkit-scrollbar-thumb {
  background: #e3e6f0;
  border-radius: 4px;
}

#ff-chatbot-recommended-list li {
  background: #fff;
  border: 1px solid #e3e6f0;
  border-radius: 7px;
  margin-bottom: 7px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  font-size: 0.98rem;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 123, 255, 0.04);
}

#ff-chatbot-recommended-list li:hover {
  background: #e7f1ff;
  color: #0056b3;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
}

@media (max-width: 600px) {
  #ff-chatbot-recommended {
    margin: 8px 4px 8px 4px;
    padding: 8px 6px 4px 6px;
  }
}

/* Animated scroll-up effect */
.animated-scroll-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
}

.animated-scroll-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/*upgrade.html ke card ke css */

.card-design {
  margin-top: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  line-height: 1.6;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 36px;
  border-radius: 22px;
  color: #ffffff;
  overflow: hidden;
  background: linear-gradient(135deg, #4a6bff 0%, #21fa9f 100%);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content::before {
  position: absolute;
  margin-top: 5px;
  content: "";
  top: -4%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%);
  background: #9cf3d9;
  z-index: -1;
  transform-origin: bottom;

  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content::after {
  position: absolute;
  margin-top: 5px;
  content: "";
  top: -8%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%);
  background: #a7b9fa;
  z-index: -2;
  transform-origin: bottom;
  border-radius: inherit;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}



.card-design:hover {
  transform: translate(0px, -16px);
}

.card-design:hover .card-content::before {
  rotate: -8deg;
  top: 0;
  width: 100%;
  height: 100%;
}

.card-design:hover .card-content::after {
  rotate: 8deg;
  top: 0;
  width: 100%;
  height: 100%;
}
/* Remove white background from ul in .card-design */
.card-design .card-content .list-group {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
.card-design .card-content .list-group-item {
    background: transparent !important;
    border: none !important;
}

/* Remove white background from ul in .card-design */
.card-checkout .list-group {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
.card-checkout .list-group-item {
    background: transparent !important;
    border: none !important;
}


/* Button Performance Fixes */
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

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

/* Link Button Fix */
a.btn {
  text-decoration: none;
}

a.btn:hover {
  text-decoration: none;
}

/* Form Button Consistency */
button[type="submit"] {
  background: var(--love-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: linear-gradient(135deg, #E91E63 0%, #7B1FA2 50%, #C2185B 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* Performance Optimization */
.btn, .card, .navbar {
  will-change: transform;
}

.btn:hover, .card:hover {
  will-change: transform, box-shadow;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: #ffffff !important;
  border-top: 1px solid #dadde1 !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  padding: 8px 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
  height: 60px !important;
}

.bottom-nav-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  color: #6c757d !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.bottom-nav-item i {
  font-size: 1.4rem !important;
}

.bottom-nav-item.active {
  color: #007bff !important;
  background: rgba(0, 123, 255, 0.1) !important;
}

.bottom-nav-item:hover {
  color: #007bff !important;
  text-decoration: none !important;
  transform: scale(1.1) !important;
}

.mobile-chat-badge {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  background: linear-gradient(135deg, #dc3545, #c82333) !important;
  color: white !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: 2px solid white !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4) !important;
  font-size: 0.6rem !important;
  min-width: 16px !important;
  height: 16px !important;
  line-height: 12px !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px !important;
  }
  
  .mobile-bottom-nav {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}
/* Social Media Icons Styling */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 16px;
}

/* Enhanced footer styling */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    pointer-events: none;
}

.platform-badges .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.regional-features {
    margin-bottom: 10%;
}