/* ──────────────────────────────────────────────────────────────────────────
   RESET + GLOBAL
─────────────────────────────────────────────────────────────────────────── */

/* Reset & box model */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Anchor targets (for fixed header offset) */
:target {
  scroll-margin-top: 100px;
}

/* ------------------------------------------------------------------
   🔤 ROOT FONT SCALING (for rem-based typography)
------------------------------------------------------------------ */

/* Set root font size for rem units */
html {
  font-size: 16px; /* 1rem = 16px */
}

/* Responsive scaling */
@media (max-width: 900px) {
  html {
    font-size: 14.8px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------------
   🖋️ GLOBAL TYPE
------------------------------------------------------------------ */

/* Body and common UI elements */
body,
p,
a,
input,
button,
textarea,
.label {
  font-family: "Hind", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
li,
.ul {
  font-family: "Hind", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
/* Global Headings */
h1 {
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Satisfy", cursive;
  margin-bottom: 10px;
}
h2 {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Satisfy", cursive;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-family: "Mukta", sans-serif;
  font-weight: 600;
}
h4 {
  font-size: 1.2rem;
  line-height: 1.4;
}
h5 {
  font-size: 1.125rem;
  line-height: 1.4;
}
h6 {
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  h1 {
    margin-bottom: 5px !important;
  }
  h2 {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2.4rem;
  }
}
/* Decorative script font (only if used) */
.fabiola {
  font-family: "fabiola-script", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

/* Bold text override */
strong {
  font-weight: 600;
  color: #dbe1e5;
}
.text-gradient {
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 80%);
  background-size: 200% 100%;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ──────────────────────────────────────────────────────────────────────────
   UTILITIES (Currently Not Used - Commented Out)
─────────────────────────────────────────────────────────────────────────── */

/*
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-md { font-size: 1.125rem; }
.text-lg { font-size: 1.25rem; }
.text-xl { font-size: 1.75rem; }
.text-2xl { font-size: 2.25rem; }
.text-hero { font-size: 2.625rem; }

.font-heading { font-family: "Mukta", sans-serif; font-weight: 600; }
.font-body { font-family: "Hind", sans-serif; font-weight: 300; }
.font-script { font-family: "Satisfy", cursive; font-weight: 400; }

.text-white { color: #fff; }
.text-muted { color: rgba(255, 255, 255, 0.7); }
.text-accent { color: #c9a7eb; }
.bg-accent { background-color: #c9a7eb; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-10 { margin-bottom: 2.5rem; }

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
*/
/* Inline FAQ Links */
.adfaq-link {
  color: #c9a7eb;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.adfaq-link:hover,
.adfaq-link a:hover {
  color: #fff !important;
  background: none !important;
}
/* Style your Privacy & ToS links */
.recaptcha-link {
  color: #dbe1e5;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recaptcha-link a {
  color: inherit;
  text-decoration: none;
}
.recaptcha-link:hover {
  color: #c9a7eb !important;
  background: none !important;
}

.btn,
.cta-button {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  color: #fff;
  background-color: #c9a7eb;
  text-decoration: none;
  outline: none;
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover,
.cta-button:hover {
  background-color: #fff;
  color: #c9a7eb;
}
.btn,
.cta-button {
  border: none;
}
.btn:focus-visible,
.cta-button:focus-visible {
  outline: 2px solid #c9a7eb;
  outline-offset: 3px;
}

/* —————————————————————————————————————
   1. BASIC VISUALS: hide off-screen by default
—————————————————————————————————————*/
/* Skip link (works in Safari + Chrome/Firefox) */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;

  /* visually hidden but still technically in-viewport */
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;

  background: #c9a7eb;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible,
.skip-link.force-visible {
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  padding: 0.4rem 0.65rem;
  margin: 0.875rem;
  outline: 3px solid #fff;
  outline-offset: 2px;
  background: #fff;
  color: #c9a7eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transform: none; /* Safari bug fix */
}

/* ──────────────────────────────────────────────────────────────────────────
   BODY & SECTIONS
─────────────────────────────────────────────────────────────────────────── */

/* Full-screen movable background */
body {
  background: #0f0f1a url("../images/background.jpg") no-repeat center top;
  background: #0f0f1a url("../images/background.webp") no-repeat center top;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  font-size: 1rem; /* 🔹 Ensures rem-based sizing starts cleanly */
  color: #fff; /* 🔹 Fallback body text color */
  font-family: "Hind", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
.container {
  max-width: 1500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}

/* Section wrapper (for overlays, spacing, flex centering) */
section {
  position: relative;
  padding: 96px 10%;
  min-height: auto;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  color: #fff;
}

/* ---------------------------------- */
/* 🌐 Global Responsive Adjustments   */
/* ---------------------------------- */

@media (max-width: 900px) {
  section {
    padding: 80px 5%; /* tighter padding on mid-sized screens */
    min-height: 80vh; /* avoid full-height on smaller viewports */
  }
}
/* 📱 Mobile fallback and WebP (smaller file) */
@media (max-width: 768px) {
  body {
    background: #0f0f1a url("../images/background-mobile.jpg") no-repeat center
      top;
    background: #0f0f1a url("../images/background-mobile.webp") no-repeat center
      top;
    background-size: cover;
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 3%; /* mobile padding */
    min-height: auto; /* natural height per content */
  }
  .container {
    max-width: 100%;
    overflow-x: hidden;
    padding: 0 16px;
  }
}
/* ──────────────────────────────────────────────────────────────────────────
           HEADER & NAVIGATION
        ─────────────────────────────────────────────────────────────────────────── */

/* Header container */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 3rem;
  background: none;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1000;
}

/* Logo */
.logo-container {
  padding: 1.25rem;
  flex: 0 0 auto;
}
.logo {
  display: block;
  width: 12.5rem;
  height: auto;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Centered nav links */
.nav-centered {
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-family: "Hind", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-decoration: none;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.nav-links a:hover {
  color: #c9a7eb;
  font-size: 0.875rem;
}

/* Modern Mega Dropdowns */
.mega-parent {
  position: relative;
}

.mega-parent:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  margin-top: 0.6rem;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  background: rgba(20, 20, 40, 0.96);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
  min-width: 450px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mega-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  padding: 0.75rem;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mega-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.mega-dropdown .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.mega-dropdown strong {
  font-weight: 600;
  font-size: 0.7rem;
}
.mega-dropdown small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.6rem;
  margin-top: 2px;
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.dropdown-icon img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.mega-dropdown a:hover .dropdown-icon img {
  transform: scale(1.1);
}

/* Mobile menu icons */
.mobile-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.mobile-menu-icon img {
  display: block;
  width: 100%;
  height: auto;
}

/* Mobile Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 1.75rem;
  height: 1.75rem;
}

.hamburger-line {
  width: 100%;
  height: 0.2rem;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile Navigation - Leonardo.ai Style */
.mobile-nav {
  display: none;
}

/* ──────────────────────────────────────────────────────────────────────────
           MOBILE STYLES (900px and below)
        ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1150px) {
  .header {
    justify-content: space-between;
  }

  .nav-centered {
    position: relative;
    left: 0;
    transform: none;
    margin-right: 0;
  }
  .mega-dropdown {
    right: 0;
    left: auto;
    transform: translateY(10px); /* Reset transform */
  }

  /* Optional: add max-width or clamp width */
  .mega-dropdown {
    max-width: 90vw;
    width: clamp(320px, 80vw, 420px);
  }

  .mega-parent:hover .mega-dropdown {
    left: auto;
    right: 0;
  }
}

@media (max-width: 900px) {
  .header {
    padding: 1rem 1.5rem;
    position: fixed; /* Changed from fixed for demo */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  /* SOLID BACKGROUND WHEN MOBILE MENU IS OPEN */
  .header.mobile-menu-open {
    background: rgba(20, 20, 40, 1) !important; /* Solid dark background */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .logo-container {
    padding: 0.5rem 0;
  }

  .logo {
    width: 14rem;
    font-size: 1.2rem;
  }

  /* Show mobile toggle */
  .nav-toggle {
    display: block;
    z-index: 1001; /* Ensure it's above the mobile nav */
  }

  /* Hide desktop navigation */
  .nav-centered {
    display: none;
  }

  /* Mobile Navigation Container */
  .mobile-nav {
    display: block !important;
    flex-direction: column;
    justify-content: center; /* Changed from centre to flex-start */
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1002;
    background: rgba(15, 15, 30, 0.98); /* More opaque */
  }

  .mobile-nav.active {
    height: 100vh;
    max-height: unset;
    opacity: 1 !important;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav > ul {
    padding: 2rem 0 1rem 0;
  }

  .mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
  }

  .mobile-nav li:last-child {
    border-bottom: none;
  }

  /* Mobile Menu Items */
  .mobile-nav a,
  .mobile-nav .accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
  }

  .mobile-nav a .mobile-menu-icon,
  .mobile-nav .accordion-toggle .mobile-menu-icon {
    margin-right: 1rem;
  }

  .mobile-nav .accordion-toggle {
    justify-content: flex-start;
    position: relative;
  }

  .mobile-nav .accordion-toggle .accordion-icon {
    position: absolute;
    right: 1.5rem;
  }

  .mobile-nav a:hover,
  .mobile-nav .accordion-toggle:hover {
    color: #c9a7eb;
    padding-left: 2rem;
  }

  /* Accordion Icons */
  .accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .accordion-toggle[aria-expanded="true"] .accordion-icon {
    transform: rotate(90deg);
  }

  /* Submenu */
  .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
  }

  .submenu.open {
    max-height: 300px;
  }

  .submenu a {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .submenu a:hover {
    color: #c9a7eb;
    background: rgba(255, 255, 255, 0.03);
    padding-left: 3rem;
  }

  .submenu a:last-child {
    border-bottom: none;
  }

  /* Hide desktop mega dropdowns on mobile */
  .mega-dropdown {
    display: none !important;
  }
  /* 🌙 Mobile Menu Descriptions */
  .mobile-nav-content a small {
    display: block;
    font-size: 0.8rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7); /* Or adjust for your theme */
    margin-top: 0.25rem;
  }
  /* Mobile Submenu Layout */
  .menu-text-block {
    display: block;
    margin-left: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .menu-text-block small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7); /* Adjust to your theme */
  }

  /* ============================================================ */
  /* MOBILE MENU FOOTER - Separate from main site footer */
  /* ============================================================ */

  .mobile-nav-footer {
    padding-top: 10vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 15, 30, 0.98);
    height: auto;
    position: relative;
    overflow: hidden;
    justify-content: center;
    max-width: 90vw;
    width: 100%;
    margin: 0 auto;
  }

  /* Mobile Footer Logo */
  .mobile-footer-logo {
    text-align: center;
    margin-bottom: 0;
  }

  .mobile-footer-logo img {
    width: 140px;
    height: auto;
    opacity: 0.8;
  }

  /* Mobile Footer Links */
  .mobile-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; /* FIXED: Added width and style */
    padding-bottom: 1rem; /* Add some space between links and border */
    padding-left: 0; /* Remove any left padding */
    padding-right: 0; /* Remove any right padding */
    margin-left: 0; /* Remove any left margin */
    margin-right: 0; /* Remove any right margin */
    margin-top: 0;
  }
  .mobile-footer-links li {
    padding-left: 0;
    text-decoration: none !important;
    border-bottom: none;
    margin: 0;
  }
  .mobile-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    padding: 1rem;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    transition: color 0.3s ease;
  }

  .mobile-footer-links a:hover {
    color: #c9a7eb;
  }

  /* Mobile Footer Social & Badges - FIXED */
  .mobile-footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.8rem;
    width: 100%;
    box-sizing: border-box;
    margin-top: 1.2rem;
    padding: 0 1.5rem;
  }

  .mobile-footer-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    flex: 1;
    min-width: 120px; /* Reduced from 200px */
    text-align: left; /* Added explicit left alignment */
    line-height: 1.3;
  }

  .mobile-footer-badges {
    display: flex;
    gap: 0.15rem;
    align-items: center;
    flex-shrink: 0; /* Prevent badges from shrinking */
    justify-content: flex-end;
    position: relative;
  }

  /* Use your existing text-badge system instead of mobile-badge */
  .mobile-footer-badges .text-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    background: none;
    font-size: 0.625rem;
    font-weight: 200;
    color: #b8b1bddb;
    cursor: default;
    width: 24px;
    height: 24px;
  }
  .mobile-footer-badges a.text-badge {
    text-decoration: none;
    color: inherit;
    background: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    width: 20px !important; /* Match the image size exactly */
    height: 20px !important; /* Match the image size exactly */
    display: inline-flex !important; /* Ensure proper sizing */
    align-items: center;
    justify-content: center;
  }
  .mobile-footer-badges a.text-badge:hover {
    background: none !important;
    text-decoration: none;
    padding-left: inherit !important;
    transform: none !important;
    color: inherit !important;
    padding: 0 !important; /* Prevent any padding changes */
    margin: 0 !important; /* Prevent any margin changes */
  }

  .mobile-footer-badges a.text-badge:hover img {
    transform: scale(1.05); /* Only apply the scale transform to the image */
  }
  .mobile-footer-badges .text-badge img {
    width: 20px;
    height: 20px;
    display: block; /* Remove any inline spacing */
  }

  .mobile-footer-badges .text-badge:hover img {
    transform: scale(1.05);
  }

  /* Use your existing label system */
  .mobile-footer-badges .label {
    position: absolute;
    bottom: 100%;
    background-color: rgba(201, 167, 235, 0.066) !important;
    color: #dbe1e5 !important;
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    transform: translateY(-4px);
    z-index: 100;
    font-weight: 400;
  }

  .mobile-footer-badges .text-badge:hover .label {
    opacity: 1;
  }

  .mobile-footer-badges a.text-badge .label {
    text-transform: none !important;
    letter-spacing: normal !important;
  }
}
/* Additional fix for very small screens */
@media (max-width: 480px) {
  .mobile-footer-links a {
    padding: 0.5rem 0.75rem; /* Reduced padding for smaller screens */
  }
}
@media (max-width: 400px) {
  .mobile-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mobile-footer-text {
    text-align: center;
    margin-bottom: 1rem;
  }
  .mobile-footer-links a {
    padding: 0.3rem 0.5rem;
  }
}

/* ──────────────────────────────────
   LIGHT-BEAM OVERLAY
 ───────────────────────────────────*/
.light-beam {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 300vh;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 20%,
    transparent 70%
  );
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
/* ──────────────────────────────────
   Scroll to Top Button
────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 7.5rem; /* 120px */
  right: 2rem; /* 32px */
  padding: 0.3125rem 0.9375rem; /* 5px 15px */
  font-size: 1.25rem; /* matches original */
  color: #fff;
  background: #c9a7eb;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.2); /* 0 4px 10px */
  z-index: 1000;
  display: none;
  transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
  background: #ffffff;
  color: #c9a7eb;
}

/* ────────────────────────────────
   Scroll to Top Responsiveness
────────────────────────────────── */

/* Tablets (≤1024px) */
@media (max-width: 900px) {
  .scroll-to-top {
    right: 2.3rem; /* 24px */
    padding: 0.45rem 1rem; /* 6px 14px */
    font-size: 1.2rem;
  }
}

/* Large phones  */
@media (max-width: 600px) {
  .scroll-to-top {
    right: 2.5rem;
  }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  .scroll-to-top {
    right: 1.8rem;
  }
}

/* Extra small (≤360px) */
@media (max-width: 360px) {
  .scroll-to-top {
    bottom: 6.5rem;
  }
}

/* ----------------------------------------------------------- */
/* HOME PAGE                                                   */
/* ----------------------------------------------------------- */
/* ------------------------------ */
/* Hero Section                  */
/* ------------------------------ */

/* Section Wrapper */
.hero {
  min-height: 100vh;
  justify-content: center;
  overflow: hidden;
}
/* Background Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  max-width: 600px;
  text-align: left !important;
  animation: fadeInUp 1.2s ease-out;
  margin-bottom: 20px;
}

.hero-content h1 {
  padding-left: 5px;
}
.hero-content p {
  text-align: left !important;
}
/* ---------------------------------- */
/* 🔄 Responsive — Hero   */
/* ---------------------------------- */
@media (max-width: 900px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    position: static;
    padding: 0 20px;
    margin-top: 200px;
    align-items: center; /* Align content to top */
    justify-self: center;
  }

  .hero-content h1 {
    text-align: left !important;
  }
}
@media (max-width: 400px) {
  .hero {
    max-height: auto;
  }
  .hero-content {
    margin-top: 150px !important;
  }
}

/* ---------------------------------- */
/*  Benefits (Custom Websites) Section  */
/* ---------------------------------- */

/* Wrapper & Overlay */
.benefits-section {
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}

/* Section Intro */
.benefits-intro {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 20px;
  text-align: left !important;
  margin-top: 200px;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.benefits-intro h2 {
  padding-left: 5px;
}
.benefits-intro p {
  text-align: left !important;
}
/* Scrollable Carousel */
.scroll-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 5px 0 0;
  margin-top: 5px;
  width: 100%;
  max-width: auto;
  min-height: 200px;
  max-height: 500px;
  overflow-x: visible !important;
  overflow-y: visible !important; /* you can even drop the !important if you like */
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  z-index: 4;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Cards Row */
.comparison-grid {
  position: relative;
  display: flex;
  gap: 15px;
  /* make the track three “screens” wide so 3 cards at 100% each fit side by side */
  width: 100%;
  max-width: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow-x: auto; /* now *this* scrolls */
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  box-sizing: border-box;
  z-index: 3;
}
.comparison-grid > .benefit-card {
  scroll-snap-align: center;
}
/* Hide Scrollbar for WebKit Browsers */
.comparison-grid::-webkit-scrollbar {
  display: none;
}

/* Card Base */
.benefit-card {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: 400px;
  height: 300px;
  scroll-snap-align: center;
  padding: 20px;
  padding-top: 60px;
  backdrop-filter: blur(8px);
  text-align: center;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(123, 227, 220, 0.05);
  margin: 30px;
  margin-left: 2px;
  margin-right: 2px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  cursor: pointer;
  z-index: 3;
}

/* Hover & Active States */
.benefit-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(0, 255, 255, 0.15);
}
.benefit-card.active {
  transform: scale(1.1);
  border: 2px solid #c9a7eb;
  animation: pulseActive 0.3s ease;
  z-index: 4;
}

/* Card Content */
.benefit-card h3 {
  margin-bottom: 20px;
}
.benefit-card p {
  text-align: left;
  margin: 0 10px;
  word-break: break-word;
  font-size: 0.9rem;
}

/* Emoji Accent */
.emoji {
  margin-right: 6px;
  font-size: 1.4em;
  background: linear-gradient(90deg, #7be3dc, #af7ee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  vertical-align: middle;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s ease;
  line-height: 1;
  padding: 0;
}
.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}
.scroll-btn.left {
  left: -65px;
}
.scroll-btn.right {
  right: -65px;
}
.scroll-arrow{
    display:none;
}
/* ---------------------------------- */
/* Responsive: Collapse to single card */
/* ---------------------------------- */

@media (max-width: 900px) {
  .benefits-intro {
    position: static;
    margin: 0 auto;
    padding: 0 20px;
  }

  .benefits-section {
    align-items: center;
    overflow: visible !important; /* ⬅️ allow full card height */
  }

  .scroll-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
  }

  .scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .comparison-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px 10px;
    margin-top: 60px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    min-height: 320px;
  }

  .benefit-card {
    flex: 0 0 85%;
    max-width: 85%;
    height: 230px;
    min-height: 200px;
    scroll-snap-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
  }
  .benefit-card p {
    font-size: 0.95rem;
  }
  .benefit-card.active {
    border: 2px solid #c9a7eb;
    transform: scale(1.05);
    z-index: 4;
  }

  .scroll-btn {
    display: flex;
    top: 50%;
    transform: translateY(-50%);
  }

  .scroll-btn.left {
    left: -14px;
  }

  .scroll-btn.right {
    right: -14px;
  }
}

@media (max-width: 768px) {
  .comparison-grid {
    gap: 40px;
    padding: 0 20px;
  }
}
/* ---------------------------------- */
/* 📱 Under 460px: Tweak heading + padding */
/* ---------------------------------- */
@media (max-width: 460px) {
  .benefit-card h3 {
    font-size: 1.3rem; /* adjust heading size */
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .benefits-intro {
    padding: 0 16px; /* reduce side padding */
  }

  .scroll-wrapper {
    padding: 0 10px;
  }

  .comparison-grid {
    gap: 16px;
    padding: 20px 10px;
  }
  .scroll-btn {
    display: none !important;
  }

  .scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 36px;
    margin: auto 0;
    margin-top: -15px;
    border: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
}

/* ---------------------------------- */
/* 📱 Under 400px: Hide Scroll Buttons & improve spacing */
/* ---------------------------------- */
@media (max-width: 400px) {
  /* Turn circular buttons into slim transparent bars */

  /* Adjust card padding for smaller viewport */
  .benefit-card {
    padding: 22px 14px;
    flex: 0 0 90%;
    max-width: 90%;
    height: auto;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card {
    padding: 24px 16px;
    flex: 0 0 90%;
    max-width: 90%;
    height: auto;
    min-height: 220px;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }
}

/* ---------------------------------- */
/* 📱 Under 360px: Further tweaks for ultra-small devices */
/* ---------------------------------- */
@media (max-width: 360px) {
  .benefit-card {
    padding: 20px 12px;
    flex: 0 0 92%;
    max-width: 92%;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }
}

/* ---------------------------------- */
/* 💰 PRICING SECTION                */
/* ---------------------------------- */

/* Section Wrapper */
.pricing {
  overflow-y: visible !important;
}

/* Background Overlay */
.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

/* Section Intro */
.services-intro {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: left !important;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.services-intro p {
  text-align: left !important;
}
.services-intro h2 {
  padding-left: 5px;
  text-align: left !important;
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 65%) !important;
  background-size: 200% 100% !important;
  background-position: center !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

/* Pricing Grid Layout */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 80px auto 0;
  max-width: 1100px;
  width: 100%;
}

/* Individual Pricing Card */
.pricing-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(201, 167, 235, 0.2);
  backdrop-filter: blur(8px);
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(123, 227, 220, 0.05);
  transition: transform 0.3s ease;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

/* Highlight Most Popular Plan */
.pricing-card.popular {
  border-color: #c9a7eb;
  transform: scale(1.05);
}

/* Plan Title */
.pricing-card h3 {
  font-size: 1.625rem;
  font-family: "Satisfy", cursive;
  background: linear-gradient(90deg, rgb(123, 227, 220), #af7ee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.price {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
/* Price */
.pricing-card h4 {
  color: #fff;
  margin-bottom: 20px;
}

/* Description */
.pricing-card p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-align: center;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

/* Feature List */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 10px auto;
  max-width: 260px;
  text-align: left;
  color: #dbe1e5;
}
.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #dbe1e5;
}
.li-icon {
  margin-right: 10px;
  color: #c9a7eb !important;
  font-weight: 700;
  font-family: "Mukta", "Arial", sans-serif !important;
  -webkit-text-fill-color: #c9a7eb !important;
  text-shadow: none !important;
  display: inline-block;
}
/* Service Details Dropdown */
.service-details {
  margin-top: 20px;
  text-align: left;
  transition: all 0.3s ease;
}
.service-details summary {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  color: #fff;
}
.service-details summary::-webkit-details-marker {
  display: none;
}
.service-details summary::marker {
  display: none;
  font-size: 0; /* Safari sometimes needs this */
  color: transparent;
}
.service-details summary::before {
  content: "";
  display: none;
}
.service-details summary::after {
  content: "▸";
  position: relative;
  transition: transform 0.2s ease;
  margin-left: 10px;
}
.service-details[open] summary::after {
  content: "▾";
}
.service-details ul {
  list-style: none;
  padding: 0;
  list-style-type: none;
}
.service-details li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}
.service-details .li-icon {
  position: absolute;
  left: 0;
  color: #c9a7eb;
  font-size: 1rem;
}

/* Ideal Client */
.ideal-client-list {
  margin-top: 20px;
  text-align: left;
}

.ideal-client-list .list-heading {
  font-size: 0.875rem;
  color: #c9a7eb;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.ideal-client-list ul {
  list-style: none;
  width: 100%;
}

.ideal-client-list li {
  font-size: 0.8rem !important;
  line-height: 1.2;
  color: #dbe1e5;
  margin-bottom: 6px;
}

.ideal-client-list li .li-icon {
  position: absolute;
  font-size: 1rem;
  margin-left: -24px;
  color: #c9a7eb !important;
  font-weight: 700;
  font-family: "Mukta", "Arial", sans-serif !important;
  -webkit-text-fill-color: #c9a7eb !important;
  text-shadow: none !important;
  display: inline-block;
}
/* Pricing Note */
.pricing-note {
  margin-top: 40px;
  padding-left: 100px;
  padding-right: 100px;
  font-size: 0.875rem;
  width: 100%;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  line-height: 1.5;
}

/* Hover Effect */
.pricing-card:hover {
  background: rgba(0, 255, 255, 0.15);
  transform: translateY(-8px);
}

/* ---------------------------------- */
/* Responsive Adjustments             */
/* ---------------------------------- */
@media (max-width: 1200px) {
  .pricing-card {
    flex: 0 0 70% !important; /* This now controls width */
    max-width: 70% !important;
    padding-left: 45px !important;
    padding-right: 45px !important;
  }

  .pricing-grid {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .ideal-client-list ul {
  }
}
@media (max-width: 900px) {
  .services-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
  .pricing .pricing-card .ideal-client-list li {
    font-size: 0.9rem !important;
  }

  .pricing .pricing-card h3 {
    font-size: 1.8rem !important;
  }
  .pricing .pricing-card p {
    font-size: 1rem !important;
  }
}
@media (max-width: 768px) {
  .services-intro {
    margin-top: 40px;
  }

  .pricing-card {
    flex: 0 0 90% !important;
    max-width: 90% !important;
  }
  .pricing-note {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 500px) {
  .pricing-card {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
@media (max-width: 350px) {
  .ideal-client-list li .li-icon {
    display: none !important;
  }
}

/* ---------------------------------- */
/* 🧿 ADD-ONS SECTION (Accordion Style) */
/* ---------------------------------- */

/* Section Wrapper */
.add-ons {
  align-items: flex-end;
  text-align: left;
  overflow: visible;
}
.add-ons::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}

/* Section Intro (Right-Aligned) */
.intro-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 50px;
}
.addons-intro {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 20px;
  text-align: left !important;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.addons-intro h2 {
  padding-left: 5px;
}
.addons-intro p {
  text-align: left !important;
}
/* ---------------------------- */
/* 🧩 Accordion Layout          */
/* ---------------------------- */
.addons-accordion {
  column-count: 2;
  column-gap: 12px;
  margin-bottom: 20px;
  margin-top: 2rem;
  max-width: 800px;
  z-index: 3;
  margin-left: auto;
}

/* Each Accordion Item */
.addon-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
  background: rgba(171, 153, 174, 0.05);
  border: 0.5px solid rgba(201, 167, 235, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  overflow: visible;
  transition: all 0.3s ease;
  position: relative;
}

/* Toggle Button */
.addon-toggle {
  width: 100%;
  border: none;
  padding: 10px 20px !important;
  margin: 5px !important;
  font-size: 1.125rem;
  font-family: "Mukta", sans-serif;
  font-weight: 400;
  text-align: left;
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.addon-toggle-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 0.8em;
  line-height: 1;
}
.addon-toggle:hover {
  transform: translateX(6px);
}

/* Hidden Content Panel */
.addon-content {
  box-sizing: border-box;
  background: transparent;
  backdrop-filter: blur(8px);
  border-radius: 0 0 8px 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease-out, opacity 0.35s ease-out,
    padding 0.35s ease-out;
}

/* Open State */
.addon-item.open .addon-content {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
}

/* Closed-state Toggle Shrink */
.addon-item:not(.open) .addon-toggle {
  padding: 2px 20px !important;
}

/* Content Text */
.addon-content p {
  margin-top: 0;
}

/* Feature List inside Content */
.addon-content ul {
  list-style: none;
  margin: 10px 0 20px;
  padding-left: 0;
}
.addon-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.addon-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #c9a7eb;
}

/* Notes & Disclaimers */
.addon-content .addon-note {
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.addon-note.disclaimer {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}
.addon-note.disclaimer a {
  background: #c9a7eb;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.addon-note.disclaimer a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Strong Highlights */
.addon-content strong {
  display: block;
  margin-top: 12px;
  color: #c9a7eb;
  font-size: 1 rem;
}
.hidden {
  display: block;
}
.addon-grid-container {
  transition: max-height 0.5s ease;
  overflow: hidden;
}

.addon-grid-container.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.addon-grid-container.visible {
  max-height: 2000px; /* adjust based on actual content */
  opacity: 1;
  pointer-events: auto;
}
#show-addons-btn {
  cursor: pointer;
}

/* ---------------------------------- */
/* Responsive Adjustments             */
/* ---------------------------------- */
@media (max-width: 900px) {
  .add-ons.container {
    align-items: center;
    justify-content: center;
  }

  .addons-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
  .addon-grid-container {
    align-items: center;
    justify-content: center;
    margin: 0 auto !important;
  }
  .addons-accordion {
    max-width: 650px;
    margin: 0 auto !important;
    margin-top: 4rem !important;
  }
}
@media (max-width: 768px) {
  .addons-accordion {
    column-count: 1;
    max-width: 550px;
  }
  .addon-toggle {
    font-size: 1rem;
    background: linear-gradient(to right, #7be3dc 0%, #af7ee0 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.addons-grid {
  flex-direction: column;
  align-items: center;
}

.addon-card {
  max-width: 90%;
}
/* ---------------------------------- */
/* 🌌 PORTFOLIO SECTION               */
/* ---------------------------------- */

/* Section Wrapper */
.portfolio {
  align-items: flex-start;
  z-index: 10;
  overflow: visible;
}
.portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

/* Intro Block */
.portfolio-intro {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: left !important;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.portfolio-intro p {
  text-align: left !important;
}
/* Grid Layout */
.portfolio-grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  width: 100%;
  margin-top: 50px;
}

/* Individual Item */
.portfolio-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  scroll-snap-align: center;
  padding: 10px;
  background: transparent;
  border-radius: 12px;
  max-width: 400px;
  min-height: 100px;
  transition: transform 0.3s ease;
  overflow: visible;
  z-index: 20;
}
.portfolio-item:hover {
  transform: translateY(-5px);
}

/* Logo Container */
.logo-container-portfolio {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: transparent;
  z-index: 2;
}
.portfolio-logo {
  max-height: 100px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  z-index: 2;
}
.logo-container-portfolio:hover .portfolio-logo {
  transform: scale(1.05);
}

/* Hover Overlay Caption */
.hover-overlay {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 2px;
  padding: 20px;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 15, 25, 0.324);
  border-radius: 8px;
  color: white;
  text-align: center;
  opacity: 0;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  transition: all 0.4s ease;
  pointer-events: none;
  max-height: 500px;
  z-index: 30;
}
.portfolio-item:hover .hover-overlay {
  opacity: 1;
  max-height: 500px;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* Add tap/focus support for mobile */
.portfolio-item:focus-within .hover-overlay,
.portfolio-item:active .hover-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* Overlay Content */
.hover-overlay h3 {
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgb(123, 227, 220), #af7ee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hover-overlay p {
  margin-bottom: 12px;
  text-align: left;
}
.hover-overlay .cta-button {
  padding: 10px 18px;
  margin-bottom: 10px;
  background: #c9a7eb;
  color: white;
}
.hover-overlay .cta-button:hover {
  background: #af7ee0;
}

/* ---------------------------------- */
/* 📬 RESPONSIVE ADJUSTMENTS           */
/* ---------------------------------- */
@media (max-width: 900px) {
  .portfolio-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
}

@media (max-width: 700px) {
  .hover-overlay {
    position: relative; /* sits in flow below logo */
    top: auto;
    transform: none; /* no centering shift */
    width: 100%; /* full card width */
    margin-top: 10px;
    opacity: 0;
    pointer-events: none;
    border-radius: 12px;
    background: rgba(15, 15, 25, 0.85);
    padding: 15px;
  }

  .portfolio-item:hover .hover-overlay,
  .portfolio-item:focus-within .hover-overlay,
  .portfolio-item:active .hover-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---------------------------------- */
/* 📬 TESTIMONIAL SECTION                  */
/* ---------------------------------- */

/* Section Wrapper */
.testimonials {
  overflow: visible; /* ✨ Allow overlay to show on top */
}

/* Background Overlay */
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}

/* Intro Block */
.testimonial-intro {
  position: relative;
  top: 0;
  left: 0;
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
  text-align: left !important;
}
.testimonial-intro p {
  text-align: left !important;
}
/* ---------------------------------- */
/* 📬 Responsive                */
/* ---------------------------------- */
@media (max-width: 900px) {
  .testimonial-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
}

/* ---------------------------------- */
/* 📬 CONTACT SECTION                  */
/* ---------------------------------- */

/* Section Wrapper */
.contact {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  overflow-y: visible; /* Prevents top clipping of tall text */
}

/* Background Overlay */
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

/* Intro Block */
.contact-intro {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: left !important;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.contact-intro h2 {
  padding-left: 5px;
}
.contact-intro p {
  text-align: left !important;
}
/* Form Wrapper */
.contact-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 800px;
  width: 100%;
  gap: 40px;
}

/* ✅ ADD: Form group container */
.form-group {
  margin-bottom: 20px;
  position: relative;
  text-align: left !important;
}
/* Form Area */
.contact-form-area {
  width: 100%;
  max-width: 600px;
  margin-right: auto;
}

/* Contact Form */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 0; /* ✅ Remove gap since .form-group handles spacing */
  max-width: 800px;
  width: 100%;
  margin-top: 40px;
}

/* Form Labels */
.contact label {
  font-size: 1 rem;
  font-weight: 600;
  color: #dbe1e5;
  text-align: left;
  margin-bottom: 5px;
}

/* Input & Textarea */
.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  margin-top: 5px;
}

/* Placeholder Styling */
.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Focus Effects */
.contact input:focus,
.contact textarea:focus {
  border-color: #c9a7eb;
  background: rgba(255, 255, 255, 0.15);
}

/* Message Textarea */
.contact textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .btn {
  margin-top: 1px;
}
/* Success Message */
.success-message {
  opacity: 0;
  margin-top: 20px;
  font-size: 1rem;
  color: #c9a7eb;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.success-message.show {
  opacity: 1;
  pointer-events: auto;
}

/* ✅ ADD: Error message styling */
.error-message {
  display: block;
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
  min-height: 0; /* Remove min-height to collapse the element */
}

/* ✅ ADD: Show error when active */
.error-message.show {
  opacity: 1;
  max-height: 20px; /* Animate height */
  margin-top: 5px; /* Add margin only when visible */
}

/* ✅ ADD: Input error state */
.form-group input.error,
.form-group textarea.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

/* reCAPTCHA Container - Hidden by default */
#recaptcha-container {
  margin-bottom: 20px;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition: all 0.5s ease-out;
}

/* Show reCAPTCHA when .show class is added */
#recaptcha-container.show {
  max-height: 120px; /* Enough height for the reCAPTCHA widget */
  opacity: 1;
  transform: translateY(0);
  margin-top: 5px;
  margin-bottom: 20px;
}

/* Style the reCAPTCHA widget container */
#recaptcha-container .g-recaptcha {
  display: flex;
  justify-content: left;
  margin: 10px 0;
}

/* Optional: Add a note about reCAPTCHA protection */
.recaptcha-notice {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  margin-top: 12px;
}

/* Center the widget */
.g-recaptcha {
  margin: 0 auto;
}

/* ---------------------------------- */
/* 📬 RESPONSIVE                       */
/* ---------------------------------- */
@media (max-width: 900px) {
  .contact-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .contact-form-area {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  .contact form {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  #recaptcha-container.show {
    max-height: 140px;
  }

  #recaptcha-container .g-recaptcha {
    transform: scale(0.85);
    margin: 5px 0;
  }
}
@media (max-width: 600px) {
  .contact form {
    width: 100%;
    max-width: none;
  }
}

/* ---------------------------------------------------------------------- */
/* 📬 ABOUT PAGE                                                         */
/* ---------------------------------------------------------------------- */

.section-intro-right {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 20px;
  text-align: left !important;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.section-intro-right p {
  text-align: left !important;
}
.section-intro-left {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 20px;
  text-align: left !important;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.section-intro-left p {
  text-align: left !important;
}

/* ──────────────── */
/* 🌙 Our Story    */
/* ──────────────── */
/* 🌟 Our Story */
/* Background Overlay */
.our-story {
  height: auto;
}
.our-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,

    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}

.our-story .story-wrapper {
  position: relative;
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: flex-end; /* Align to the right like the intro */
  justify-content: flex-start;
  padding: 0;
}
/* Container for all story steps */
.story-steps {
  display: flex;
  flex-direction: column; /* Keep horizontal on larger screens */
  gap: 1rem;
  width: 600px; /* Your specified width */
  margin-left: 0;
  margin-right: 0;
  margin-top: 2rem; /* Add space between intro and steps */
}

/* Individual story step cards */
.story-step {
  background: transparent;
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 2px solid rgba(201, 167, 235, 0.24);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  flex: 1; /* Added: makes each step take equal width */
  width: 100%;
}

/* Hover effect with glow animation */
@keyframes stepHoverGlow {
  0%,
  100% {
    border-color: #7be3dc;
    box-shadow: 0 0 15px rgba(123, 227, 220, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px) scale(1);
  }
  50% {
    border-color: #af7ee0;
    box-shadow: 0 0 25px rgba(175, 126, 224, 0.5),
      0 12px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
  }
}

.story-step:hover {
  background: rgba(13, 15, 26, 0.6);
  animation: stepHoverGlow 1.5s ease-in-out infinite;
}

/* Active state styling */
.story-step.active {
  background: transparent;
  box-shadow: 0 0 20px rgba(123, 227, 220, 0.4), 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
  animation: none;
  position: relative;
  border: 2px solid #c9a7eb;
}

.story-step.active::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #7be3dc, #af7ee0);
  border-radius: 1rem;
  filter: blur(12px);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  z-index: -1;
}

/* Step header with title and arrow */
.story-step .step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.story-step .step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  background: linear-gradient(135deg, #7be3dc, #af7ee0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Mukta", sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

/* Dropdown arrow */
.dropdown-arrow {
  font-size: 1rem;
  color: #7be3dc;
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}

.story-step.active .dropdown-arrow {
  transform: rotate(90deg);
}

/* Dropdown content (hidden by default) */
.step-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
}

.story-step.active .step-content {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .story-wrapper {
    padding: 1.5rem 0;
  }

  .story-steps {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .story-wrapper {
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .story-steps {
    max-width: 100%;
    align-items: center;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 0 20px;
  }

  .story-step {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .story-steps {
    flex-direction: column; /* Stack vertically on mobile */
  }

  .story-step .step-header {
    padding: 0.8rem 1.2rem;
  }

  .story-step .step-title {
    font-size: 1.1rem;
  }

  .story-step.active .step-content {
    padding: 0.8rem 1.2rem 1.2rem 1.2rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .story-step .step-header {
    padding: 0.6rem 1rem;
  }

  .story-step .step-title {
    font-size: 1.2rem;
  }

  .story-step.active .step-content {
    padding: 0.6rem 1rem 1rem 1rem;
  }

  .step-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .dropdown-arrow {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .story-step .step-header {
    padding: 0.5rem 0.8rem;
  }

  .story-step .step-title {
    font-size: 0.95rem;
  }

  .step-content p {
    font-size: 0.75rem;
  }
}

/* 🌟 Our Values */
.our-values {
  height: auto;
}
.our-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}
/* Responsive */
@media (max-width: 480px) {
  .our-values .benefit-card {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .our-values .benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
/* 🌟 Our Founder */
.our-founder {
  height: auto;
}
.our-founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,

    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}
.our-founder .founder-content {
  position: relative;
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: flex-end; /* Align to the right like the intro */
  justify-content: flex-start;
  padding: 2rem 0;
}
.our-founder .section-intro-right {
  margin-left: 0;
}
.founders-story {
  background: transparent;
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 2rem;
  box-sizing: border-box;
  text-align: left;
  border: 2px solid rgba(201, 167, 235, 0.3);
  animation: fadeInUp 1.2s ease-out;
  margin-top: 1rem; /* Add some space above */
  max-width: 600px;
}
.our-founder h2 {
  padding-left: 5px;
}
.founder-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 5px;
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 70%);
  background-size: 200% 100%;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.founder-title {
  font-size: 1rem;
  font-weight: 500;
  color: #dbe1e5;
  margin-bottom: 15px;
  font-style: italic;
}
/* Founder image glow */
.founder-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.founder-image {
  position: relative;
  max-width: 500px;
  min-width: 200px;
  flex-shrink: 0; /* Prevent image from shrinking */
  text-align: center;
}
.founder-image img {
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(201, 167, 235, 0.35);
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Hover grow + brand glow */
.founder-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(201, 167, 235, 0.6),
    0 0 45px rgba(201, 167, 235, 0.4), 0 0 70px rgba(201, 167, 235, 0.25);
}

.founder-image::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: radial-gradient(
    circle,
    rgba(201, 167, 235, 0.55) 0%,
    rgba(201, 167, 235, 0.35) 40%,
    transparent 80%
  );
  border-radius: 50%;
  z-index: 1;
  animation: auraPulse 4s ease-in-out infinite;
  filter: blur(14px);
}
@keyframes auraPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* Large desktops (1200px+) - Both content and image lean to right */
@media (min-width: 1201px) {
  .our-founder .founder-content {
  }
}

/* Standard desktops and large tablets (900px - 1200px) */
@media (max-width: 1200px) {
  .our-founder .founder-content {
  }
}
/* Medium tablets (768px - 900px) */
@media (max-width: 900px) {
  .our-founder .founder-content {
    align-items: center; /* Align to the right like the intro */
    justify-content: center;
    margin: 0 auto !important;
    padding: 0 20px;
  }
  .section-intro-right {
    position: static;
    margin: 0 auto !important;
    padding: 0 20px !important;
  }
  .section-intro-left {
    position: static;
    margin: 0 auto !important;
    padding: 0 20px !important;
  }
  .founders-story {
    margin-top: 4rem; /* Add some space above */
  }
}

/* Small tablets and mobile landscape (600px - 768px) - Image moves below text */
@media (max-width: 768px) {
  .founders-story {
    max-width: 500px;
    margin-top: 4rem; /* Add some space above */
  }
  .founder-image {
    max-width: 450px;
  }
}

/* Mobile portrait (480px - 600px) */
@media (max-width: 600px) {
  .founders-story {
    padding: 2rem;
    margin-top: 4rem; /* Add some space above */
    max-width: 400px;
  }
  .founder-image {
    max-width: 350px;
  }
}
/* Small mobile (320px - 480px) */
@media (max-width: 480px) {
  .founders-story {
    padding: 2rem;
    margin-top: 4rem; /* Add some space above */
    max-width: 330px;
  }
  .founder-image {
    max-width: 260px;
  }
  .section-intro-right p {
    text-align: left !important;
  }
  .section-intro-left p {
    text-align: left !important;
  }
}
/* Extra small mobile (below 320px) */
@media (max-width: 320px) {
  .our-founder .founder-content {
  }

  .founder-image {
    max-width: 220px;
  }
}

/* ──────────────────────────────────────────────────────────────
   ORBIT PROCESS with SVG Circle Roll — Asteria theme
   ────────────────────────────────────────────────────────────── */
/* 🌟 Our Process */
.our-process {
  height: auto;
}
.our-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

:root {
  --process-grad-a: rgb(123, 227, 220);
  --process-grad-b: #af7ee0;
  --process-brand: #c9a7eb;
  --process-ring: rgba(201, 167, 235, 0.24);
  --process-ring-strong: rgba(201, 167, 235, 0.45);
  --process-text: rgba(255, 255, 255, 0.92);
  --process-muted: rgba(255, 255, 255, 0.75);
  --dark-bg: rgba(22, 26, 44, 0.95);
}

/* Replace the circular orbit design with rectangular steps */
.process-wrapper {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
  padding-left: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide the SVG orbit design */
.our-process .process-arcs {
  display: none;
}

/* Create the rectangular steps container */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2rem;
}

/* When a step is active, shift the steps left */
.process-wrapper.step-active .process-steps {
  transform: translateX(-80px);
  margin-left: 4rem;
}

/* Individual step rectangles */
.process-step {
  position: relative;
  padding: 1rem 1rem;
  background: rgba(13, 15, 26, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 2px solid var(--process-ring);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
/* Step hover effect with glow animation */
@keyframes stepHoverGlow {
  0%,
  100% {
    border-color: var(--process-grad-a);
    box-shadow: 0 0 15px rgba(123, 227, 220, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateX(8px) scale(1);
  }
  50% {
    border-color: var(--process-grad-b);
    box-shadow: 0 0 25px rgba(175, 126, 224, 0.5),
      0 12px 35px rgba(0, 0, 0, 0.4);
    transform: translateX(8px) scale(1.02);
  }
}

.process-step:hover {
  background: rgba(13, 15, 26, 0.6);
  animation: stepHoverGlow 1.5s ease-in-out infinite;
}

/* Active step styling with gradient border */
.process-step.active {
  border: 2px solid transparent;
  background: rgba(13, 15, 26, 0.8);
  position: relative;
  filter: drop-shadow(0 0 10px rgba(175, 126, 224, 0.8))
    drop-shadow(0 0 25px rgba(175, 126, 224, 0.6))
    drop-shadow(0 0 40px rgba(175, 126, 224, 0.3));
}

.process-step.active::before {
  content: "";
  position: absolute;
  inset: -2.5px;
  background: linear-gradient(
    135deg,
    var(--process-grad-a),
    var(--process-grad-b)
  );
  border-radius: calc(1rem + 2px);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  z-index: -1;
}

/* Inactive steps when one is active */
.process-wrapper.step-active .process-step:not(.active) {
  opacity: 0.4;
  background: rgba(13, 15, 26, 0.2);
  border-color: rgba(201, 167, 235, 0.1);
}

.process-wrapper.step-active .process-step:not(.active):hover {
  opacity: 0.6;
  background: rgba(13, 15, 26, 0.3);
  border-color: rgba(201, 167, 235, 0.2);
  animation: none;
  transform: translateX(4px);
}

/* Step content */
.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--process-text);
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--process-grad-a),
    var(--process-grad-b)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Mukta, sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

/* Rolling circle positioning and animation updates */
.rolling-circle {
  position: absolute;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 15, 26, 0.01);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  box-shadow: inset 0 0 0 3px var(--process-grad-a),
    inset 0 0 0 3px var(--process-grad-b);
}

.rolling-circle::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(
    135deg,
    var(--process-grad-a),
    var(--process-grad-b)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.rolling-circle[data-step="1"],
.rolling-circle[data-step="2"],
.rolling-circle[data-step="3"],
.rolling-circle[data-step="4"],
.rolling-circle[data-step="5"] {
  width: 450px;
  height: 450px;
  top: 48%;
  left: 80%;
  transform: translate(-50%, -50%);
}

.rolling-circle.active {
  opacity: 1;
  pointer-events: auto;
  animation: rollOutFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Updated roll animation to come from the left */
@keyframes rollOutFromLeft {
  0% {
    transform: translate(-50%, -50%) translateX(-200px) rotate(0deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateX(0) rotate(720deg);
  }
}

.circle-content {
  padding: 4rem;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease 0.4s;
  position: relative;
  z-index: 2;
}

.rolling-circle.active .circle-content {
  opacity: 1;
  transform: scale(1);
}

.circle-content h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.circle-content p {
  margin: 0 1.1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--process-muted);
  text-align: left;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--process-ring);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--process-text);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 3;
}

.close-btn:hover {
  background: rgba(175, 126, 224, 0.2);
  transform: rotate(90deg);
}
/* Process wrapper hidden state */
.process-wrapper.hidden {
  display: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

/* Process wrapper visible state */
.process-wrapper.visible {
  display: flex;
  max-height: 2000px; /* big enough to fit all content */
  opacity: 1;
  overflow: visible;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

/* Responsive adjustments */

@media (min-width: 1200px) {
  .process-wrapper.step-active .process-steps {
    transform: translateX(-60px);
    margin-left: 4rem;
  }

  .rolling-circle[data-step="1"],
  .rolling-circle[data-step="2"],
  .rolling-circle[data-step="3"],
  .rolling-circle[data-step="4"],
  .rolling-circle[data-step="5"] {
    left: 80%;
    top: 50%;
  }
}

/* Standard tablets (768px - 900px) */
@media (max-width: 900px) {
  .process-wrapper {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
  }

  .process-steps {
    max-width: 100%;
    align-items: center;
    gap: 1.2rem;
    margin: 0 auto;
    margin-top: 4rem;
  }

  .process-step {
    max-width: 550px;
    width: 100%;
    text-align: center;
  }

  .process-wrapper.step-active .process-steps {
    transform: translateY(-10px);
    margin-left: 0;
  }

  .rolling-circle[data-step="1"],
  .rolling-circle[data-step="2"],
  .rolling-circle[data-step="3"],
  .rolling-circle[data-step="4"],
  .rolling-circle[data-step="5"] {
    left: 50%;
    top: 55%;
  }

  /* Override active step styling when circle is active */
  .process-wrapper.step-active .process-step.active {
    opacity: 0.4; /* same as inactive steps */
    background: rgba(13, 15, 26, 0.2);
    border-color: rgba(201, 167, 235, 0.1);
    filter: none; /* remove glow */
  }

  /* Optional: prevent hover glow on active step */
  .process-wrapper.step-active .process-step.active:hover {
    opacity: 0.6;
    background: rgba(13, 15, 26, 0.3);
    border-color: rgba(201, 167, 235, 0.2);
    animation: none;
    transform: translateY(2px);
  }
  /* Disable active glow border/outline */
  .process-step.active::before {
    display: none !important;
  }
  @keyframes rollOutFromLeft {
    0% {
      transform: translate(-50%, -50%) translateY(-100px) rotate(0deg);
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, -50%) translateY(0) rotate(720deg);
    }
  }
  .circle-content {
    padding: 2.5rem;
  }
  .circle-content h3 {
    font-size: 1.6rem;
  }
  .circle-content p {
    font-size: 1rem;
    text-align: left;
  }
}

/* Mobile landscape and small tablets (480px - 768px) */
@media (max-width: 768px) {
  .process-wrapper {
    min-height: 530px;
    margin-top: 0.5rem;
    padding-top: 0;
    margin: 0 auto !important;
    padding: 0 20px;
  }
  .process-steps {
    top: 0;
    padding-top: 0;
  }

  .rolling-circle[data-step="1"],
  .rolling-circle[data-step="2"],
  .rolling-circle[data-step="3"],
  .rolling-circle[data-step="4"],
  .rolling-circle[data-step="5"] {
    width: 400px;
    height: 400px;
    top: 45%;
  }
}

/* Mobile portrait (320px - 480px) */
@media (max-width: 530px) {
  .rolling-circle[data-step="1"],
  .rolling-circle[data-step="2"],
  .rolling-circle[data-step="3"],
  .rolling-circle[data-step="4"],
  .rolling-circle[data-step="5"] {
    width: 380px;
    height: 380px;
  }

  .circle-content {
    padding: 1.8rem;
  }

  .close-btn {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    top: 0.5rem;
    right: 0.5rem;
  }
}
@media (max-width: 440px) {
  .rolling-circle[data-step="1"],
  .rolling-circle[data-step="2"],
  .rolling-circle[data-step="3"],
  .rolling-circle[data-step="4"],
  .rolling-circle[data-step="5"] {
    width: 300px;
    height: 300px;
    top: 40%;
  }
  .circle-content {
    padding-left: 2.8rem;
    padding-right: 2.5rem;
  }

  .circle-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .circle-content p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
  }
}
/* Extra small mobile (below 320px) */
@media (max-width: 340px) {
  .process-wrapper {
    min-height: 450px;
  }

  .rolling-circle[data-step="1"],
  .rolling-circle[data-step="2"],
  .rolling-circle[data-step="3"],
  .rolling-circle[data-step="4"],
  .rolling-circle[data-step="5"] {
    width: 250px;
    height: 250px;
    top: 40%;
  }
  .circle-content {
    padding-left: 2.2rem;
    padding-right: 2.2rem;
  }

  .circle-content p {
    font-size: 0.7rem;
    line-height: 1.5;
    margin: 0;
  }
}
/* ---------------------------------------------------------------------- */
/* 📬 CONTACT Section (About Page)                                                       */
/* ---------------------------------------------------------------------- */
/* Section Wrapper & Overlay */
.contact-about {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 🔥 This aligns content to the right */
  justify-content: flex-end;
  width: 100%;
  position: relative;
}
.contact-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}

/* ---------------------------------- */
/* 📬 Responsive Adjustments (768px)   */
/* ---------------------------------- */
/* ---------------------------------- */
/* 📬 RESPONSIVE                       */
/* ---------------------------------- */
@media (max-width: 900px) {
  .contact-about {
    justify-content: center;
    align-items: center;
  }

  .contact-about.contact-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }

  .contact-about .contact-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .contact-about .contact-form-area {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .contact-about form {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .contact-about form {
    width: 100%;
    max-width: none;
  }
}

/* ---------------------------------------------------------------------- */
/* 📬 CONTACT PAGE                                                         */
/* ---------------------------------------------------------------------- */

/* ============================= */
/*  CONTACT FORM/MAP Section        */
/* ============================= */
.contact-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.contact-page::before {
  /* Background overlay */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}
.contact-about .contact-wrapper {
  align-items: flex-end; /* 🔥 This aligns content to the right */
  margin-left: auto;
}

.contact-about .contact-form-area {
  margin-left: auto;
  margin-right: 0px;
}

/* Contact Form */
.contact-about form {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0; /* ✅ Remove gap since .form-group handles spacing */
  max-width: 800px;
  width: 100%;
  margin-top: 40px;
}

.contact-about label {
  font-size: 1rem;
  font-weight: 600;
  color: #dbe1e5;
  text-align: left;
  margin-bottom: 5px;
}

.contact-about input,
.contact-about textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  margin-top: 5px;
}

.contact-about input::placeholder,
.contact-about textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-about input:focus,
.contact-about textarea:focus {
  border-color: #c9a7eb;
  background: rgba(255, 255, 255, 0.15);
}

.contact-about textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================= */
/*  Intro Heading & Paragraph    */
/* ============================= */

.contact-intro {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-left: auto; /* ✅ Already present – keep */
  margin-right: 0; /* ✅ Optional clarity */
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.contact-intro h2 {
  padding-left: 5px;
}
.contact-intro p {
  margin: 0;
}

/* ============================= */
/*  Contact Form                  */
/* ============================= */
.contact-page form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 600px;
  width: 100%;
  margin-top: 20px;
}
.contact-page form .form-group {
  margin-bottom: 10px;
  position: relative;
}
.contact-page label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.contact-page input,
.contact-page textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-page input:focus,
.contact-page textarea:focus {
  border-color: #c9a7eb;
  background: rgba(255, 255, 255, 0.15);
}
.contact-page textarea {
  min-height: 120px;
  resize: vertical;
}

/* Success Message & reCAPTCHA */
.success-message {
  opacity: 0;
  margin: 20px auto 0;
  max-width: 500px;
  font-size: 1rem;
  color: #c9a7eb;
  text-align: center;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.success-message.show {
  opacity: 1;
  pointer-events: auto;
}
.g-recaptcha {
  margin-top: 10px;
}

/* ============================= */
/*  Two-Column Layout (Form/Map) */
/* ============================= */
.contact-map-wrapper {
  display: block;
  text-align: right;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  padding-right: 0;
}
.contact-form-area,
.map-box {
  display: inline-block;
  vertical-align: top;
  max-width: 600px;
  width: 100%;
  text-align: left;
}
.contact-form-area {
  margin-bottom: 0;
  padding-bottom: 0;
}
.map-box .map-note {
  margin: 12px auto 0;
  max-width: 800px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
}

/* ============================= */
/*  FAQ Accordion Section        */
/* ============================= */
/* FAQ Right-Aligned Section */
.faq-section {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: auto;
  z-index: 3;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

.faq-inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 0;
}

.faq-intro {
  position: relative;
  max-width: 600px;
  right: 0;
  top: 0;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
}

.faq-intro p {
  margin-bottom: 10px !important;
}

.faq-category a {
  transition: color 0.3s ease;
}

.faq-category a:hover {
  color: #dbe1e5;
  text-decoration: none;
}

.question-area.full-width-question {
  width: 100%;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
}

.question-accordion {
  position: relative;
  max-width: 600px;
  width: 100%;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: fadeInUp 1.2s ease-out;
}

/* FAQ Categories - Updated with toggle functionality */
.faq-category {
  border: 1px solid rgba(201, 167, 235, 0.3);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(13, 15, 26, 0.248);
  backdrop-filter: blur(6px);
  margin-bottom: 10px !important;

  /* Default closed state - only show header */
  max-height: 55px; /* Adjust based on your title height */
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-category:not(.active):hover {
  border-color: #c9a7eb;
  background: rgba(0, 255, 255, 0.15) !important;
}
.faq-category.active {
  /* When open, allow enough height for all content */
  max-height: 2000px; /* Large value to accommodate all questions */
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(13, 15, 26, 0.076);
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.faq-category-title {
  margin: 0;
  padding: 14px 14px;
  font-size: 1.125rem;
  font-weight: 200;
  font-family: "Mukta", sans-serif;
  color: #dbe1e5;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease, background-color 0.3s ease;
  user-select: none; /* Prevent text selection */
  position: relative;
  z-index: 2; /* Ensure it's clickable */
}

/* Arrow indicator */
.faq-category-title::after {
  content: "▸";
  font-size: 1rem;
  color: #c9a7eb;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* Prevent arrow from shrinking */
}

.faq-category.active .faq-category-title::after {
  transform: rotate(90deg);
}

/* Question Items */
.question-item {
  background: transparent !important;
  backdrop-filter: blur(6px);
  border: 0.5px solid rgba(201, 167, 235, 0.147);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
  margin-bottom: 5px;
  margin-top: 5px;

  /* Questions are hidden when category is closed */
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* Prevent interaction when hidden */
}

.faq-category.active .question-item {
  /* Questions become visible when category is active */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  /* Stagger the animation for a nice effect */
  animation: fadeInUp 0.4s ease-out forwards;
}

/* Add staggered animation delays */
.faq-category.active .question-item:nth-child(3) {
  animation-delay: 0.1s;
}
.faq-category.active .question-item:nth-child(4) {
  animation-delay: 0.15s;
}
.faq-category.active .question-item:nth-child(5) {
  animation-delay: 0.2s;
}
.faq-category.active .question-item:nth-child(6) {
  animation-delay: 0.25s;
}
.faq-category.active .question-item:nth-child(7) {
  animation-delay: 0.3s;
}

.question-item.active {
  animation: fadeIn 0.3s ease-in-out;
}

.question-question {
  position: relative;
  width: 100%;
  padding: 16px 40px 16px 20px;
  font-size: 0.875rem !important;
  font-weight: 100 !important;
  text-align: left;
  background-color: rgba(201, 167, 235, 0) !important;
  color: #dbe1e5 !important;
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  font-family: "Mukta", sans-serif;
  transition: background-color 0.3s ease;
  word-break: break-word; /* Optional: breaks long strings if needed */
  white-space: normal; /* Ensures wrapping */
  line-height: 1.5; /* Better spacing */
}

.question-question:hover {
  background: rgba(0, 255, 255, 0.15) !important;
}

.question-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.question-question:focus-visible {
  outline: 2px solid rgba(201, 167, 235, 0.6);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px rgba(201, 167, 235, 0.2);
}

.question-item.active .question-question::after {
  content: "-";
  transform: rotate(0deg);
}

.question-answer {
  padding: 0 20px;
  color: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.question-item.active .question-answer {
  display: block;
  max-height: 500px;
  opacity: 1;
  padding: 15px 20px;
  color: #dbe1e5;
}

.question-answer p {
  margin: 0;
  text-align: left;
  font-size: 0.875rem !important;
  color: #dbe1e5 !important;
  margin-bottom: 12px;
}

.question-answer ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.question-answer ul li {
  color: #dbe1e5;
  margin-bottom: 8px;
  text-align: left;
}

.question-answer a {
  color: #c9a7eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.question-answer a:hover {
  color: white;
  text-decoration: underline;
}

/* FAQ Footer Note */
.faq-footer-note {
  margin-top: 10px;
  font-size: 0.875rem !important;
  color: #dbe1e5;
  text-align: left;
}

.faq-footer-note a {
  color: #c9a7eb;
  font-weight: 500;
  font-size: 0.875rem !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-footer-note a:hover {
  color: white;
  text-decoration: underline;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ============================= */
/*  Responsive Adjustments       */
/* ============================= */

@media (max-width: 1200px) {
  .map-box {
    margin: 0 auto;
    width: 100%;
  }

  .map-box iframe {
    max-width: 100%;
  }
}

@media (max-width: 950px) {
  .faq-inner-wrapper {
    max-width: 650px;
  }

  .contact-map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    text-align: center;
  }
  .contact-form-area {
    height: auto;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
  .contact-form-area,
  .map-box {
    max-width: 600px;
    width: 100%;
  }

  .map-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .map-box .map-note {
    max-width: 600px;
  }

  .contact-intro,
  .faq-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
  }

  .faq-category {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 8px !important;
  }

  .question-accordion {
    align-self: center !important;
    margin: 0 auto;
  }

  .faq-footer-note {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-map-wrapper {
    padding: 0 16px;
    gap: 32px;
  }

  .question-accordion {
    padding: 0 10px;
  }

  .question-question {
    font-size: 16px;
  }

  .question-answer {
    font-size: 0.875rem;
  }

  .map-box {
    max-width: 100%;
  }
  .map-box iframe {
    margin-top: -80px;
  }
}
@media (max-width: 480px) {
  .map-box iframe {
    margin-top: -100px;
  }
}

/* ---------------------------------- */
/* 📜 Services Page                    */
/* ---------------------------------- */

/* ---------------------------- */
/* 🚀 Core Services Section    */
/* ---------------------------- */

.core-services {
}

/* Background Overlay */
.core-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}

/* Section Intro */
.core-intro {
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 20px;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
}

.core-intro p {
  margin-bottom: 0;
  text-align: left;
}

.service-details li small {
  display: block;
  font-size: 0.875em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* Responsive */

@media (max-width: 900px) {
  .core-intro,
  .services-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .services-intro h2,
  .services-intro p {
    text-align: center;
  }
}

/* ---------------------------- */
/* 🚥 Compare-Grid Section      */
/* ---------------------------- */

/* Section Wrapper & Overlay */
.compare-section {
  min-height: auto;
}
.compare-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

/* Intro Text */
.compare-intro {
  position: relative;
  top: 0;
  left: 10px;
  max-width: 600px;
  margin-bottom: 40px;
  margin-right: auto;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.compare-intro h2 {
}
.compare-intro p {
  text-align: left;
}

/* Grid Layout */
.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  max-width: 1000px; /* fixed width for better alignment */
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
  align-items: stretch;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1;
  /* Hidden by default */
  opacity: 0;
  max-height: 0;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Show grid when active */
.compare-grid.show-grid {
  display: grid;
  opacity: 1;
  max-height: 2000px; /* Large enough to show all content */
  transform: translateY(0);
}

/* Show when section is targeted via URL hash */
.compare-section:target .compare-grid {
  display: grid;
}

/* Header Row Container - Creates single outline around entire header */
.compare-grid > .compare-cell[role="columnheader"] {
  position: relative;
}

.compare-grid > .compare-cell[role="columnheader"]:first-child {
  border: 2px solid #c9a7eb;
  border-right: none;
}

.compare-grid > .compare-cell[role="columnheader"]:not(:first-child) {
  border: 2px solid #c9a7eb;
  border-left: none;
}

.compare-grid
  > .compare-cell[role="columnheader"]:not(:first-child):not(:last-child) {
  border-right: none;
}

/* Grid Cells */
.compare-cell {
  padding: 10px 8px;
  border: 1px solid rgba(201, 167, 235, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: #dbe1e5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  line-height: 1.3;
}

/* Row headers (feature names) */
.compare-cell[role="rowheader"] {
  background: rgba(201, 167, 235, 0.08);
  font-weight: 600;
  text-align: left;
  justify-content: flex-start;
  padding-left: 15px;
  font-size: 0.9rem;
}

/* Column Headers */
.compare-cell[role="columnheader"] {
  padding: 14px 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: #c9a7eb;
  min-height: 50px;
}

.compare-cell.compare-header {
  background: #c9a7eb;
}
.compare-note-row {
  align-items: flex-start;
  justify-content: flex-start;
  grid-column: 1 / -1; /* spans full width */
  padding: 20px 20px !important;
  text-align: left;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* ---------------------------------- */
/* Responsive: Stack on Narrow Screens */
/* ---------------------------------- */
@media (max-width: 1200px) {
  .compare-grid {
    max-width: 95%;
  }

  .compare-cell {
    padding: 8px 6px;
    font-size: 0.8rem;
    min-height: 38px;
  }

  .compare-cell[role="columnheader"] {
    padding: 12px 6px;
    font-size: 0.9rem;
  }

  .compare-cell[role="rowheader"] {
    font-size: 0.8rem;
    padding-left: 10px;
  }
}

@media (max-width: 900px) {
  .compare-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }

  .compare-grid {
    max-width: 98%;
    grid-template-columns: 1fr repeat(3, 1fr);
  }

  .compare-cell {
    padding: 6px 4px;
    font-size: 0.7rem;
    min-height: 35px;
  }

  .compare-cell[role="columnheader"] {
    padding: 10px 4px;
    font-size: 0.8rem;
  }

  .compare-cell[role="rowheader"] {
    font-size: 0.7rem;
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  .compare-grid {
    max-width: 100%;
    grid-template-columns: 0.8fr repeat(3, 1fr);
  }

  .compare-cell {
    padding: 4px 2px;
    min-height: 32px;
  }

  .compare-cell[role="columnheader"] {
    padding: 8px 2px;
    letter-spacing: 0.1px;
  }

  .compare-cell[role="rowheader"] {
    padding-left: 5px;
  }
}

/* Very small screens - ultra compact */
@media (max-width: 480px) {
  .compare-cell {
    font-size: 0.6rem;
    min-height: 28px;
  }

  .compare-cell[role="columnheader"] {
    font-size: 0.7rem;
  }

  .compare-cell[role="rowheader"] {
    font-size: 0.6rem;
    padding-left: 5px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .compare-grid {
    grid-template-columns: 1.1fr repeat(3, 1fr); /* Or 1.1fr if you prefer */
    width: 100%;
    max-width: 1400px;
    margin-left: 0;
    margin-right: auto;
    justify-content: start;
  }

  .compare-cell {
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .compare-cell[role="columnheader"] {
    padding: 16px 10px;
    font-size: 1rem;
  }

  .compare-cell[role="rowheader"] {
    font-size: 1rem;
    padding-left: 25px;
  }
}

/* ---------------------------------- */
/* ---------------------------- */
/* 🚥 Compare Add-On Section     */
/* ---------------------------- */

/* Section Wrapper & Overlay */
.compare-addon {
  justify-content: flex-end;
  align-items: right;
  min-height: auto;
}
.compare-addon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}
/* Section Intro */
.addon-intro {
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 40px;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
}

.addon-intro h2 {
  padding-left: 5px;
}

.addon-intro p {
  margin-bottom: 0;
  text-align: left;
}
/* Grid Layout */
.compare-grid-addon {
  position: relative;
  display: grid; /* Always grid, hide with opacity/height */
  grid-template-columns: 1.3fr repeat(4, 1fr);
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: center;
  align-items: stretch;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1;
  /* Hidden by default with opacity and height */
  opacity: 0;
  max-height: 0;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Show grid when active */
.compare-grid-addon.show-addon-grid {
  opacity: 1;
  max-height: 2000px; /* Large enough for content */
  transform: translateY(0);
}

/* Header Row Container - Creates single outline around entire header */
.compare-grid-addon > .compare-cellad[role="columnheader"] {
  position: relative;
}

.compare-grid-addon > .compare-cellad[role="columnheader"]:first-child {
  border: 2px solid #c9a7eb;
  border-right: none;
}

.compare-grid-addon > .compare-cellad[role="columnheader"]:not(:first-child) {
  border: 2px solid #c9a7eb;
  border-left: none;
}

.compare-grid-addon
  > .compare-cellad[role="columnheader"]:not(:first-child):not(:last-child) {
  border-right: none;
}
/* Cell Base Styles */
.compare-cellad {
  padding: 10px 8px;
  border: 1px solid rgba(201, 167, 235, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: #dbe1e5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  line-height: 1.3;
}

/* Row headers (add-on names) */
.compare-cellad[role="rowheader"] {
  background: rgba(201, 167, 235, 0.08);
  font-weight: 600;
  text-align: left;
  justify-content: flex-start;
  padding-left: 15px;
  font-size: 0.9rem;
}

/* Column Headers */
.compare-cellad[role="columnheader"] {
  padding: 14px 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: #c9a7eb;
  min-height: 50px;
}

.compare-cellad.compare-header {
  background: #c9a7eb;
}
/* Popular Column Override 
.compare-cellad.header-popular {
  padding: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  border: 2px solid #c9a7eb;
  border-left: none;
  border-right: none;
  background: rgba(201, 167, 235, 0.2);
}

/* Signature Column Override 
.compare-cellad.header-signature {
  padding: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  border: 2px solid #c9a7eb;
  border-left: none;
  border-right: none;
  background: rgba(201, 167, 235, 0.2);
}

/* Standalone Column Override 
.compare-cellad.header-standalone {
  padding: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  border: 2px solid #c9a7eb;
  border-left: none !important;
  background: rgba(201, 167, 235, 0.2);
}

/* ---------------------------------- */
/* Responsive: Stack on Narrow Screens */
/* ---------------------------------- */
/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .compare-grid-addon {
    max-width: 95%;
    grid-template-columns: 1.2fr repeat(4, 1fr);
  }

  .compare-cellad {
    padding: 8px 6px;
    font-size: 0.8rem;
    min-height: 38px;
  }

  .compare-cellad[role="columnheader"] {
    padding: 12px 6px;
    font-size: 0.9rem;
  }

  .compare-cellad[role="rowheader"] {
    font-size: 0.8rem;
    padding-left: 10px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .addon-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
  .compare-grid-addon {
    max-width: 98%;
    grid-template-columns: 1.1fr repeat(4, 1fr);
  }

  .compare-cellad {
    padding: 6px 4px;
    font-size: 0.7rem;
    min-height: 35px;
  }

  .compare-cellad[role="columnheader"] {
    padding: 10px 4px;
    font-size: 0.8rem;
  }

  .compare-cellad[role="rowheader"] {
    font-size: 0.7rem;
    padding-left: 4px;
  }
}
/* Small tablets - still keep grid but very compact */
@media (max-width: 768px) {
  .compare-grid-addon {
    max-width: 100%;
    grid-template-columns: 0.8fr repeat(4, 1fr);
  }

  .compare-cellad {
    padding: 4px 2px;
    min-height: 32px;
  }

  .compare-cellad[role="columnheader"] {
    padding: 8px 2px;
    letter-spacing: 0.1px;
  }

  .compare-cellad[role="rowheader"] {
    padding-left: 5px;
  }
}

/* Very small screens - ultra compact */
@media (max-width: 480px) {
  .compare-cellad {
    font-size: 0.6rem;
    min-height: 28px;
  }

  .compare-cellad[role="columnheader"] {
    font-size: 0.7rem;
  }

  .compare-cellad[role="rowheader"] {
    font-size: 0.6rem;
    padding-left: 5px;
  }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .compare-grid-addon {
    grid-template-columns: 1.1fr repeat(4, 1fr); /* Or 1.1fr if you prefer */
    width: 100%;
    max-width: 1400px;
    margin-left: 0;
    margin-right: auto;
    justify-content: start;
  }

  .compare-cellad {
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .compare-cellad[role="columnheader"] {
    padding: 16px 10px;
    font-size: 1rem;
  }

  .compare-cellad[role="rowheader"] {
    font-size: 1rem;
    padding-left: 25px;
  }
}

/* ---------------------------- */
/* Business Stage Section  */
/* ---------------------------- */
/* Section Wrapper & Overlay */
.business-stage {
}
.business-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}
/* Section Intro */
.choice-intro {
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
}

.choice-intro h2 {
  padding-left: 5px;
}

.choice-intro p {
  margin-bottom: 0;
  text-align: left;
}
.stage-intro {
  position: relative;
  max-width: 600px;
  right: auto;
  text-align: left;
  margin-top: 80px;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.stage-intro h3 {
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 50%);
  background-size: 200% 100%;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stage-intro p {
}
/* ---------------------------- */
/* Stage Grid (Click-Triggered) */
/* ---------------------------- */

.stage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  max-width: 1300px;
}

/* Stage Card Container */
.stage-card {
  perspective: 1200px;
  flex: 0 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  min-width: 250px;
  display: flex;
  transition: border 0.3s ease, background 0.3s ease;
  min-height: 300px;
}

.stage-card:hover {
  cursor: pointer;
  border: #c9a7eb 1px solid;
  border-radius: 12px;
  background: rgba(0, 255, 255, 0.15);
}

/* Inner Flip Container */
.stage-card-inner {
  position: relative;
  width: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border: 1px solid rgba(201, 167, 235, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Flip on click (using .flipped class) */
.stage-card.flipped .stage-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Faces */
.stage-card-front,
.stage-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 30px;
  color: #dbe1e5;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Changed to space between content */
  align-items: center;
  border-radius: 12px;
  text-align: left;
  backdrop-filter: blur(6px);
}

.stage-card-front {
  background: rgba(255, 255, 255, 0.05);
  transform: rotateY(0deg);
}

.stage-card-back {
  background: rgba(201, 167, 235, 0.1);
  transform: rotateY(180deg);
}

/* Text Styling */
.stage-card-front h4,
.stage-card-back h4 {
  margin-bottom: 15px;
  text-align: center;
}

.stage-card-back h4 {
  padding-bottom: 5px;
  color: #dbe1e5;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.stage-card-back p {
  margin: 0;
  padding-top: 10px;
  font-size: 0.95em;
  border-top: #dbe1e5 2px solid;
}

/* Front card content area */
.stage-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  justify-content: center;
}

/* Select Button Styling */
.select-btn {
  background: #c9a7eb;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;

  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Mukta", sans-serif;
}

.select-btn:hover {
  background: white;
  color: #c9a7eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 167, 235, 0.4);
}

.select-btn:active {
  transform: translateY(0);
}

/* Back Button Styling */
.back-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #dbe1e5;
  border: 1px solid rgba(219, 225, 229, 0.3);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  font-family: "Mukta", sans-serif;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(219, 225, 229, 0.5);
  transform: translateY(-1px);
}

/* Animation for smooth transitions */
.stage-card-inner {
  animation: cardLoad 0.6s ease-out;
}

@keyframes cardLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------------------- */
/* Responsive Breakpoints      */
/* ---------------------------- */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .stage-grid {
    gap: 15px;
  }
}
@media (max-width: 1100px) {
  .stage-grid {
    gap: 15px; /* Reduced gap to save space */
  }

  .stage-card {
    flex: 0 1 calc(33.333% - 15px); /* Reduced margin calculation */
    max-width: calc(33.333% - 15px);
    min-width: 200px; /* Your existing min-width */
  }

  .stage-card-inner {
    min-height: 250px; /* Your existing height */
  }

  .stage-card-front,
  .stage-card-back {
    padding: 20px !important;
  }
  .stage-card-front h4,
  .stage-card-back h4 {
    font-size: 1.1rem;
  }

  .stage-card-front p,
  .stage-card-back p {
    font-size: 0.85em;
  }
  .select-btn {
    margin-bottom: 1.2rem;
  }
  .back-btn {
    margin-bottom: 1.2rem;
  }
}

/* Additional breakpoint for tighter spacing */
@media (max-width: 1000px) {
  .stage-grid {
    max-width: 95%;
    gap: 15px;
  }

  .stage-card {
    flex: 0 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    min-width: 180px; /* Slightly smaller min-width */
  }
}

/* Tablets - Start making cards larger */
@media (max-width: 900px) {
  .stage-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    height: auto;
  }
  .stage-card {
    flex: none;
    width: 100%;
    max-width: 500px; /* Reasonable max width for vertical layout */
    min-width: auto;
    min-height: none !important;
  }
  .stage-card-inner {
    min-height: 280px;
  }
  .stage-card-front,
  .stage-card-back {
    padding: 50px !important;
  }
  .choice-intro h2,
  .stage-intro h3 {
    padding-left: 0;
  }
  .stage-card-front h4,
  .stage-card-back h4 {
    font-size: 1.5rem;
  }
  .stage-card-front p,
  .stage-card-back p {
    font-size: 1rem;
  }
  .select-btn {
    margin-bottom: 0;
  }
  .back-btn {
    margin-bottom: 0;
  }
}
/* Small tablets and large phones */
@media (max-width: 768px) {
  .stage-grid {
    gap: 15px;
    margin-top: 30px;
  }
  .stage-card-inner {
    min-height: 260px;
  }
  .stage-intro {
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .stage-card {
    flex: 0 1 100%;
    max-width: 100%;
    min-width: auto;
  }

  .select-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .stage-grid {
    gap: 12px;
  }
  .stage-card-inner {
    min-height: 240px;
  }
  .choice-intro,
  .stage-intro {
    margin-bottom: 25px;
  }
  .stage-intro {
    margin-top: 40px;
  }
}
/* Very small screens */
@media (max-width: 360px) {
  .stage-card-front,
  .stage-card-back {
    padding: 20px;
  }
  .stage-card-inner {
    min-height: 220px;
  }
}
/* ---------------------------- */
/* 🚥 Common Scenarios   */
/* ---------------------------- */
.scenarios-section {
  padding: 60px 0;
}

.scenarios-intro {
  position: relative;
  max-width: 600px;
  right: auto;
  color: #dbe1e5;
  text-align: left;
  margin-top: 80px;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.scenarios-intro h3 {
}
.scenarios-intro p {
}
/* ---------------------------- */
/* 🚥 Common Scenarios Carousel */
/* ---------------------------- */

.scenarios-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  overflow: hidden;
  padding: 0 60px; /* Leaves space for buttons */
  overflow: visible; /* Important! */
}

.scenarios-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
  flex-grow: 1;
  margin: 0 20px;
}

.scenario-item {
  flex: 0 0 auto;
  width: 350px;
  height: 150px;
  perspective: 1000px;
  scroll-snap-align: start;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(201, 167, 235, 0.2);
  color: #dbe1e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.scenario-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(123, 227, 220, 0.15);
  border: #c9a7eb 1px solid;
  border-radius: 12px;
}
.scenario-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.scenario-item:hover .scenario-inner {
  transform: rotateY(180deg);
}
.scenario-front,
.scenario-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 20px;
  border-radius: 12px;
  color: #dbe1e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.scenario-back {
  transform: rotateY(180deg);
}

.scenario-front h4,
.scenario-back h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: center;
}
.scenario-back h4 {
  color: #c9a7eb;
}
.scenario-front p,
.scenario-back p {
  font-size: 0.9rem;
  line-height: 1.4;
}
.active-scenario {
  border-color: #c9a7eb;
  box-shadow: 0 10px 30px rgba(201, 167, 235, 0.25);
  transform: translateY(-8px) scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(73, 72, 74, 0.2);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: rgba(201, 167, 235, 0.7);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

/* Hide scrollbar visually but allow scrolling functionality */
.scenarios-container::-webkit-scrollbar {
  display: none;
}

.scenarios-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #c9cbe0;
  opacity: 0.85;
  font-style: italic;
  line-height: 1.4;
}
/* Collapsible Business Stage Section */
.stage-collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.stage-collapsible.expanded {
  max-height: 3000px; /* something large enough */
  opacity: 1;
}

/* ---------------------------- */
/* Mobile Responsiveness        */
/* ---------------------------- */
@media (max-width: 900px) {
  .choice-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
  .stage-intro,
  .scenarios-intro {
    position: static !important;
    margin: 60px auto !important;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .scenarios-carousel {
    padding: 0 50px; /* Reduce padding on mobile */
  }

  .scenarios-container {
    margin: 0 10px; /* Reduce margin on mobile */
  }

  .scenario-item {
    width: 85%;
    height: 220px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .carousel-btn.left {
    left: 5px;
  }

  .carousel-btn.right {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .scenarios-carousel {
    padding: 0 40px; /* Even less padding on very small screens */
  }

  .carousel-btn.left {
    left: 2px;
  }

  .carousel-btn.right {
    right: 2px;
  }
}

/* ---------------------------------- */
/* ---------------------------- */
/* 🚥 Services Page - Contact   */
/* ---------------------------- */

/* Section Wrapper & Overlay */
.contact-services {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 🔥 This aligns content to the right */
  justify-content: flex-end;
  width: 100%;
  position: relative;
}
.contact-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  z-index: -1;
}

/* Section Intro */
.services-contact-intro {
  position: relative;
  top: 0;
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 40px;
  text-align: left;
  animation: fadeInUp 1.2s ease-out;
  z-index: 3;
}
.services-contact-intro h2 {
  padding-left: 5px;
}
.services-contact-intro p {
  text-align: left !important;
}
.contact-services .contact-wrapper {
  align-items: flex-end; /* 🔥 This aligns content to the right */
  margin-left: auto;
}
.contact-services .contact-form-area {
  margin-left: auto;
  margin-right: 0px;
}
/* Contact Form */
.contact-services form {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0; /* ✅ Remove gap since .form-group handles spacing */
  max-width: 800px;
  width: 100%;
  margin-top: 40px;
}
.contact-services label {
  font-size: 1 rem;
  font-weight: 600;
  color: #dbe1e5;
  text-align: left;
  margin-bottom: 5px;
}

.contact-services input,
.contact-services textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  margin-top: 5px;
}
.contact-services input::placeholder,
.contact-services textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-services input:focus,
.contact-services textarea:focus {
  border-color: #c9a7eb;
  background: rgba(255, 255, 255, 0.15);
}
.contact-services textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------------------------------- */
/* 📬 Responsive Adjustments (768px)   */
/* ---------------------------------- */
/* ---------------------------------- */
/* 📬 RESPONSIVE                       */
/* ---------------------------------- */
@media (max-width: 900px) {
  .contact-services {
    justify-content: center;
    align-items: center;
  }
  .contact-services-intro {
    position: static !important;
    margin: 0 auto !important;
    padding: 0 20px;
  }
  .contact-services .contact-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
  }
  .contact-services .contact-form-area {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  .contact-services form {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .contact-services form {
    width: 100%;
    max-width: none;
  }
}
/* ---------------------------------- */
/* 📜 Legal Pages (Privacy / Terms)  */
/* ---------------------------------- */

/* Base Styles */
.privacy-page {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: #1d3e56 !important;
}
.privacy-page #main-content {
  color: #dbe1e5;
  position: relative;
  min-height: 80vh;
  padding: 250px 10% 100px;
  margin: 0 auto;
  font-family: "Hind", sans-serif;
  line-height: 1.5;
  font-size: 1rem;
  width: 75%;
}
.privacy-page section {
  display: block;
  min-height: auto;
  padding: 0;
  align-items: centre;
  justify-content: centre;
  text-align: left;
}
/* Headings */
.privacy-page #main-content h1 {
  margin-bottom: 2px;
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: center;
  padding-left: 5px;
}

.privacy-page section h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  font-family: "Mukta", sans-serif !important;
  color: #bec9d8 !important;
  margin: 30px 0 10px;
  text-align: left !important;
}

/* Paragraphs */
.privacy-page #main-content p {
  margin: 0 0 15px;
  text-align: left;
}
/* Add these to target paragraphs within the new structure */
.privacy-page article p {
  margin: 0 0 2px;
  text-align: left;
}

.privacy-page section p {
  margin: 0 0 2px;
  text-align: left;
}
/* Lists */
.privacy-page #main-content ul {
  margin: 0 0 16px 20px;
}

.privacy-page #main-content ul li {
  list-style: none;
  font-size: 0.875rem;
  margin: 0 0 4px;
  color: #dbe1e5;
  text-align: left;
}

/* Styled Lists */
.privacy-page #main-content ul.styled-list {
  list-style-type: disc !important;
  padding-left: 40px !important;
  margin-bottom: 20px !important;
  text-align: left !important;
}

.privacy-page #main-content ul.styled-list li {
  display: list-item !important;
  list-style: disc !important;
  margin: 0 0 8px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  color: #dbe1e5 !important;
  text-align: left !important;
}
.privacy-page .mobile-nav-content a {
  color: #fff !important;
  text-decoration: none !important;
}
.privacy-page .mobile-nav-content a:hover {
  color: #c9a7eb !important;
}
.privacy-page .mobile-nav-footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
}
.privacy-page .mobile-nav-footer a:hover {
  color: #c9a7eb !important;
}
/* Links */
.privacy-page a {
  color: #c9a7eb !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
}

.privacy-page a:hover {
  color: #fff !important;
}

/* Header Overrides */
.privacy-page .header {
  background: #1d3e56;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.privacy-page .nav-links a {
  color: #fff !important;
}

.privacy-page .nav-links a:hover {
  color: #c9a7eb !important;
}

/* Footer Overrides */
.privacy-page .site-footer {
  background: #1d3e56 !important;
}

.privacy-page .footer-links a {
  color: #dbe1e5 !important;
}

.privacy-page .footer-links a:hover {
  color: #c9a7eb !important;
}

/* Responsive Styles */
@media (max-width: 1000px) {
  .privacy-page #main-content {
    width: 90% !important;
    padding: 200px 5% 80px !important;
  }
}
@media (max-width: 480px) {
  .privacy-page #main-content {
    width: 95% !important;
    padding: 200px 5% 80px !important;
  }
  .privacy-page #main-content ul.styled-list {
    padding-left: 20px !important;
  }
}
/* ---------------------------------- */
/* 🌙 404 Page */
/* ---------------------------------- */

.error-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 3;
}
.error-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}

.error-content {
  max-width: 500px;
  max-height: 700px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 80px;
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 235, 0.3);
  align-items: center;
  text-align: center;
  margin-top: 100px;
}
.error-number {
  font-size: 6rem; /* 96px */
  margin: 0;
  line-height: 1;
  font-family: "Satisfy", cursive;
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.error-404 h1 {
  font-size: 1.75rem; /* 28px */
  margin: 20px 0;
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-404 p {
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
  margin-bottom: 30px;
  color: #dbe1e5;
  text-align: left;
}

.error-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------- */
/* 🌙 404 Page Responsive */
/* ---------------------------------- */
@media (max-width: 900px) {
  .error-body {
    background-size: cover !important;
  }
}

@media (max-width: 600px) {
  .error-content {
  }
}
@media (max-width: 480px) {
  .error-content {
    padding: 60px 40px;
  }
}
@media (max-width: 330px) {
  .error-content {
    padding: 50px 30px;
  }
}
/* ---------------------------------- */
/* 🌙 Thank You Page */
/* ---------------------------------- */
.thank-you-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 3;
}
.thank-you-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 50, 80, 0.5),
    rgba(80, 80, 120, 0.6)
  );
  z-index: -1;
}
.thank-you-content {
  max-width: 700px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  border-radius: 20px;
  border: 1px solid rgba(201, 167, 235, 0.3);
}

.thank-you-content h1 {
  background: linear-gradient(to right, #7be3dc 0%, #af7ee0 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.checkmark {
  font-size: 80px;
  color: #7be3dc;
  margin-bottom: 20px;
}

.thank-you-content p {
  margin-bottom: 10px;
  text-align: left;
  padding-right: 30px;
  padding-left: 30px;
}

.next-steps {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 167, 235, 0.2);
}

.next-steps h2 {
  font-size: 24px;
  color: #c9a7eb;
  margin-bottom: 10px;
}

.quick-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.next-steps p {
  font-size: 16px;
  color: #dbe1e5;
  margin-bottom: 5px;
  text-align: center !important;
}
.thank-you-page .light-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 20%,
    transparent 70%
  );
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.social-follow {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 20px;
}
.social-follow a {
  color: #c9a7eb;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}
.social-follow a:hover {
  color: #fff !important;
}
/* ---------------------------------- */
/* 🌙 Thank You Responsive */
/* ---------------------------------- */
@media (max-width: 600px) {
  .thank-you-content {
    padding: 40px 20px;
  }
  .thank-you-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 900px) {
  .thank-you-page {
    background-size: cover !important;
  }
}
/* ---------------------------------- */
/* 🌙 Footer Container */
/* ---------------------------------- */
.site-footer {
  position: relative;
  background: linear-gradient(
    -135deg,
    rgba(80, 80, 120, 0.6),
    rgba(50, 50, 80, 0.5)
  );
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  text-align: center;
  color: #ddd;
  font-size: 12px;
  z-index: 10;
}

/* Footer Inner Wrapper */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* Footer Layout: Top 3-Column Row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 50px;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* optional line */
}

.footer-col {
  flex: auto;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.security-badges-footer {
  display: flex;
  gap: 5px;
  margin-left: 10px;
  margin-top: 10px;
}

.text-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  font-size: 0.625rem;
  font-weight: 200;
  color: #b8b1bddb;
  cursor: default;
}

.label {
  position: absolute;
  bottom: 100%; /* show above the icon */
  background-color: rgba(201, 167, 235, 0.066) !important;
  color: #dbe1e5 !important;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  transform: translateY(-4px);
  z-index: 100;
  font-weight: 400;
}

.text-badge:hover .label {
  opacity: 1;
}
.footer-bottom .icon {
  font-size: 1.25rem; /* For emoji */
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
/* Footer Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 2px;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-left {
  flex: auto;
  padding-bottom: 5px !important;
}

.footer-bottom-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: auto;
  padding-top: 10px !important;
  padding-bottom: 5px !important;
}

/* Logo */
.logo-container-footer {
  flex: 0 0 auto;
}
.logo-footer {
  display: block;
  width: 160px;
  height: auto;
}

/* Footer Text */
.footer-text {
  margin: 5px 0;
  font-size: 1rem;
  line-height: 1;
  text-align: left;
  color: #dbe1e5;
}
.footer-location {
  font-size: 0.75rem;
  color: #b8b1bddb;
  margin-bottom: 5x;
  text-align: left;
  font-weight: 300; /* lighter weight for location */
  margin-top: 5px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #dbe1e5;
  font-size: 1 rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links a:hover {
  color: #c9a7eb;
  font-size: 1.125rem;
}
/* 🌿 Etsy Button in Footer */
.etsy-logo-footer {
  text-align: right;
}

.etsy-logo-img {
  width: 26px;
  height: 26px;
  margin-right: 2px;
  margin-top: 8px;
}

.etsy-logo-img:hover {
  filter: none;
  transform: scale(1.05);
}

/* Simplified Particles CSS */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#tsparticles canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---------------------------------- */
/* 📬 RESPONSIVE ADJUSTMENTS           */
/* ---------------------------------- */

@media (max-width: 1000px) {
  /* Adjust footer padding for smaller screens */
  .footer-top,
  .footer-bottom {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 900px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    gap: 10px;
  }
  .footer-right {
    margin-top: 0;
  }
  .footer-links {
    flex-wrap: wrap;
    max-width: 100%;
    row-gap: 6px;
    column-gap: 10px;
    padding: 0;
    margin-bottom: 15px;
    line-height: 0.5;
  }
  .footer-links a {
    padding-right: 0;
    border-right: none;
    font-size: 12px;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .footer-bottom-left {
    padding-bottom: 2px !important;
    padding-top: 20px !important;
  }
  .security-badges-footer {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  /* Center footer text */
  .footer-text {
    font-size: 14px !important;
    text-align: center;
  }
  .footer-location {
    font-size: 10px;
    text-align: center;
  }
  .text-badge {
    justify-content: center;
    align-items: centre;
  }

  .text-badge {
    font-size: 10px;
  }
}
.trust-signals {
  margin-top: 15px;
  padding: 15px;
  font-size: 0.875rem;
}

.trust-signals p {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .trust-signals {
    margin-top: 10px;
    padding: 12px;
  }

  .trust-signals p {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .footer-text {
    font-size: 11px !important;
  }
  .footer-location {
    font-size: 8px;
  }
  .footer-top,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-links {
    padding-right: 30px;
    padding-left: 30px;
  }
  .footer-links a {
    font-size: 11px;
  }
  .etsy-logo-img {
    width: 20px;
    height: 20px;
  }
  .footer-bottom .icon {
    font-size: 20px; /* or 24px, 28px depending on how big you want it */
  }
}
/* ===================================== */
/* COMPLETE CHATBOT STYLES - ASTERIA    */
/* ===================================== */

/* CRITICAL: Using ID selector for proper targeting */
#chatbot {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 420px !important;
  max-width: 90vw !important;
  /* Critical: No height when closed */
  max-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* Enhanced Glassmorphism with darker background for better contrast */
  background: linear-gradient(
    135deg,
    rgba(201, 167, 235, 0.08) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );

  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(201, 167, 235, 0.25);
  border-radius: 20px !important;

  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(201, 167, 235, 0.15),
    0 0 40px rgba(201, 167, 235, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999 !important;

  /* CRITICAL: No padding or margin */
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Also apply to class for compatibility */
.chatbot-container {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 420px !important;
  max-width: 90vw !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Magical glow effect behind container - KEPT */
#chatbot::before,
.chatbot-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(201, 167, 235, 0.1) 0%,
    transparent 70%
  );
  animation: etherealGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes etherealGlow {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
}

/* Open state - MUST apply to ID */
#chatbot.open,
.chatbot-container.open {
  max-height: 600px !important;
  height: 600px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Hidden state when footer visible - KEPT */
#chatbot.hidden,
.chatbot-container.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Ensure no gaps between sections */
#chatbot > * {
  margin: 0 !important;
}

/* Chat header - FILLS TOP COMPLETELY */
#chatbot .chat-header,
.chat-header {
  background: linear-gradient(135deg, #c9a7eb 20%, #af7ee0 80%);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Match border radius exactly */
  border-radius: 19px 19px 0 0;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  min-height: 56px;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  /* Ensure it fills width */
  width: 100%;
  margin: 0;
}

/* Animated gradient overlay for header shimmer - KEPT */
#chatbot .chat-header::before,
.chat-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Header title with status dot - KEPT */
#chatbot .chat-header-title,
.chat-header-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
  position: relative;
}

/* Status indicator dot - KEPT */
.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Close button - KEPT */
#chatbot .close-chat,
.close-chat {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

#chatbot .close-chat:hover,
.close-chat:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Chat messages area - IMPROVED CONTRAST */
#chatbot .chat-box,
.chat-box {
  flex: 1;
  padding: 20px;
  /* Darker background for better text contrast */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 167, 235, 0.3) transparent;
  /* Ensure it fills width */
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

/* Custom scrollbar - KEPT */
#chatbot .chat-box::-webkit-scrollbar,
.chat-box::-webkit-scrollbar {
  width: 6px;
}

#chatbot .chat-box::-webkit-scrollbar-track,
.chat-box::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

#chatbot .chat-box::-webkit-scrollbar-thumb,
.chat-box::-webkit-scrollbar-thumb {
  background: rgba(201, 167, 235, 0.3);
  border-radius: 3px;
}

#chatbot .chat-box::-webkit-scrollbar-thumb:hover,
.chat-box::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 167, 235, 0.5);
}

/* Message containers with timestamps */
.message-container {
  display: flex;
  flex-direction: column;
  margin: 8px 0;
  animation: messageSlideIn 0.3s ease-out;
}

.user-container {
  align-items: flex-end;
}

.bot-container {
  align-items: flex-start;
}

/* Message timestamp styling */
.message-timestamp {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  padding: 0 4px;
  letter-spacing: 0.3px;
}

.user-container .message-timestamp {
  text-align: right;
}

.bot-container .message-timestamp {
  text-align: left;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Messages with better visibility - UPDATED for container system */
#chatbot .bot-message,
#chatbot .user-message,
.bot-message,
.user-message {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 85%;
  word-wrap: break-word;
  margin: 0; /* Remove margin since container handles spacing */
}

/* Bot message with better contrast */
#chatbot .bot-message,
.bot-message {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f0f0f0; /* Better contrast */
  border-bottom-left-radius: 4px;
  backdrop-filter: blur(10px);
  text-align: left;
}

#chatbot .user-message,
.user-message {
  background: linear-gradient(135deg, #c9a7eb 0%, #9f7aea 100%);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 3px 10px rgba(201, 167, 235, 0.3);
}

/* Welcome emoji animation - KEPT */
@keyframes welcomeWave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.welcome-emoji {
  display: inline-block;
  animation: welcomeWave 1s ease-in-out;
}

/* Typing indicator - KEPT */
.typing-indicator {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  align-self: flex-start;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: rgba(201, 167, 235, 0.6);
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

/* Message reactions - KEPT */
.message-reactions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.reaction {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 167, 235, 0.2);
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reaction:hover {
  background: rgba(201, 167, 235, 0.1);
  border-color: rgba(201, 167, 235, 0.4);
  transform: scale(1.1);
}

/* Input area - FILLS BOTTOM COMPLETELY */
#chatbot .chat-input-area,
.chat-input-area {
  display: flex;
  padding: 16px;
  gap: 10px;
  /* Darker background for better separation */
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(201, 167, 235, 0.2);
  /* Match border radius exactly */
  border-radius: 0 0 19px 19px;
  min-height: 70px;
  box-sizing: border-box;
  flex-shrink: 0;
  /* Ensure it fills width */
  width: 100%;
  margin: 0;
}

/* Input field with better visibility */
#chatbot .chat-input-area input,
#chatbot #user-input,
.chat-input-area input {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 167, 235, 0.3);
  border-radius: 20px;
  outline: none;
  transition: all 0.3s ease;
}

#chatbot .chat-input-area input::placeholder,
#chatbot #user-input::placeholder,
.chat-input-area input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#chatbot .chat-input-area input:focus,
#chatbot #user-input:focus,
.chat-input-area input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(201, 167, 235, 0.5);
  box-shadow: 0 0 15px rgba(201, 167, 235, 0.2);
}

/* Send button */
#chatbot .chat-input-area button,
.chat-input-area button {
  width: 40px;
  height: 40px;
  padding: 0;
  background: linear-gradient(135deg, #c9a7eb 0%, #9f7aea 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(201, 167, 235, 0.3);
  flex-shrink: 0;
}

#chatbot .chat-input-area button:hover,
.chat-input-area button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(201, 167, 235, 0.4);
}

#chatbot .chat-input-area button:active,
.chat-input-area button:active {
  transform: scale(0.95);
}

/* Toggle button - KEPT with improvements */
#chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #c9a7eb 0%, #9f7aea 100%);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 6px 20px rgba(56, 50, 62, 0.4), 0 0 15px rgba(26, 26, 26, 0.2);
  z-index: 10000;

  /* 🔧 CRITICAL: Start invisible to prevent initial blur */
  opacity: 0;
  visibility: hidden;

  /* 🔧 SAFARI FIXES */
  -webkit-transform: translateZ(0) scale(1); /* Force exact scale */
  transform: translateZ(0) scale(1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 🔧 PREVENT INITIAL SCALING */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: auto; /* Don't pre-optimize */

  /* 🔧 FORCE EXACT DIMENSIONS */
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;

  /* NO ANIMATIONS INITIALLY */
  animation: none !important;
  transition: none !important;
}

/* Show the button after page loads */
#chat-toggle.ready {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  animation: gentleGlow 4s ease-in-out infinite;
}

/* Prevent any size changes on hover/active */
#chat-toggle:hover {
  transform: translateZ(0) scale(1); /* Keep exact same scale */
  animation: none;
  box-shadow: 0 8px 25px rgba(201, 167, 235, 0.5),
    0 0 20px rgba(201, 167, 235, 0.3);
}

#chat-toggle.active {
  background: linear-gradient(135deg, #9f7aea 0%, #6c5ce7 100%);
  transform: translateZ(0) scale(1) rotate(90deg); /* Keep scale(1) */
  animation: none;
}

#chat-toggle.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.chat-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding: 0 !important;
  line-height: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  margin-top: 0.5rem !important; /* Adjusted for better centering */

  /* 🔧 PREVENT ICON SCALING */
  transform: none;
  margin: 0; /* ← This is overriding your margin-top! */
  position: relative;

  /* 🔧 EXACT FONT RENDERING */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#chat-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;

  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/* Gentle glow - no transforms */
@keyframes gentleGlow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(201, 167, 235, 0.4),
      0 0 15px rgba(201, 167, 235, 0.2);
  }
  50% {
    box-shadow: 0 8px 25px rgba(201, 167, 235, 0.5),
      0 0 20px rgba(201, 167, 235, 0.3);
  }
}

/* Sparkle effect for toggle button */
.chat-toggle-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  animation: sparkle 1.5s linear;
  pointer-events: none;
}
.chat-toggle-sparkle:nth-child(1) {
  top: 10px;
  left: 10px;
  animation-delay: 0s;
}

@keyframes sparkle {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(30px, -30px) scale(1);
    opacity: 0;
  }
}
/* ADD this CSS to your chatbot stylesheet: */

/* Thinking state styling */
.bot-thinking {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f0f0f0;
  padding: 10px 16px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-style: italic;
  margin: 8px 0;
  max-width: 70%;
  align-self: flex-start;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Feedback buttons styling */
.message-feedback {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.feedback-btn:active {
  transform: scale(0.95);
}

.feedback-thanks {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  padding: 4px 0;
}

/* Enhanced quick reply animations */
.quick-replies-standalone {
  animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Clear chat button (if you want to add one to header) */
.clear-chat-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 8px;
}

.clear-chat-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Welcome message styling */
.welcome-message {
  background: linear-gradient(
    135deg,
    rgba(201, 167, 235, 0.15) 0%,
    rgba(201, 167, 235, 0.25) 100%
  );
  border: 1px solid rgba(201, 167, 235, 0.3);
  border-left: 4px solid #c9a7eb;
}

/* Validation error styling */
.validation-error {
  background: linear-gradient(
    135deg,
    rgba(255, 100, 100, 0.1) 0%,
    rgba(255, 50, 50, 0.05) 100%
  );
  border: 1px solid rgba(255, 100, 100, 0.2);
  color: #ffcccc;
}

/* Standalone quick replies (outside of message bubbles) */
.quick-replies-standalone {
  display: flex;
  flex-direction: column;
  margin: 12px 0;
  padding-left: 0;
  animation: slideInUp 0.4s ease-out;
}

/* Quick reply buttons container */
.quick-reply-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  margin-top: 0;
}

/* Updated quick reply button styling */
.quick-reply-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 167, 235, 0.4);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.2;
}

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

.quick-reply-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(201, 167, 235, 0.2),
    rgba(201, 167, 235, 0.35)
  );
  border-color: rgba(201, 167, 235, 0.6);
  color: white;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 12px rgba(201, 167, 235, 0.25);
}

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

.quick-reply-btn:active {
  transform: translateY(0) scale(0.98);
  transition: transform 0.1s ease;
}

/* Enhanced slideInUp animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide old quick replies system */
.quick-replies {
  display: none; /* Hide old style if it still appears */
}

.quick-replies-label {
  display: none; /* Hide the label we don't want */
}

/* Mobile responsiveness - UPDATED */
@media (max-width: 480px) {
  #chatbot,
  .chatbot-container {
    width: calc(100vw - 20px) !important;
    right: 10px !important;
    bottom: 10px !important;
    border-radius: 15px !important;
  }

  #chatbot.open,
  .chatbot-container.open {
    height: 500px !important;
    max-height: 70vh !important;
  }

  #chat-toggle {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

  #chatbot .chat-header,
  .chat-header {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 14px 14px 0 0;
  }

  #chatbot .bot-message,
  #chatbot .user-message,
  .bot-message,
  .user-message {
    font-size: 13px;
    padding: 10px 14px;
  }

  #chatbot .chat-input-area,
  .chat-input-area {
    padding: 14px;
    border-radius: 0 0 14px 14px;
  }

  #chatbot .chat-input-area input,
  .chat-input-area input {
    font-size: 13px;
    padding: 8px 14px;
  }

  #chatbot .chat-input-area button,
  .chat-input-area button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .message-timestamp {
    font-size: 9px;
    margin-top: 3px;
  }

  .quick-reply-buttons {
    gap: 6px;
  }

  .quick-reply-btn {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 18px;
  }

  .message-feedback {
    gap: 6px;
  }

  .feedback-btn {
    padding: 3px 6px;
    font-size: 12px;
  }

  .bot-thinking {
    font-size: 12px;
    padding: 8px 12px;
  }
}
/* Stack buttons vertically on small screens */
@media (max-width: 360px) {
  .quick-reply-buttons {
    flex-direction: column;
    gap: 6px;
  }

  .quick-reply-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Additional animations for enhanced UX - KEPT */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Error message styling - KEPT */
#chatbot .bot-message.error,
.bot-message.error {
  background: linear-gradient(
    135deg,
    rgba(255, 100, 100, 0.1) 0%,
    rgba(255, 50, 50, 0.05) 100%
  );
  border-color: rgba(255, 100, 100, 0.2);
}

/* ============================= */
/*  Chatbot Accessibility Styles - KEPT */
/* ============================= */

/* Screen reader text for toggle button - KEPT */
#chat-toggle .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states - KEPT AND ENHANCED */
#chatbot:focus-within,
.chatbot-container:focus-within {
  box-shadow: 0 20px 60px rgba(201, 167, 235, 0.2),
    0 0 100px rgba(201, 167, 235, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(201, 167, 235, 0.5);
}

#chatbot .chat-input-area input:focus,
#chatbot .chat-input-area button:focus,
#chatbot .close-chat:focus,
.chat-input:focus,
.send-button:focus,
.close-chat:focus,
#chat-toggle:focus {
  outline: 2px solid rgba(201, 167, 235, 0.8);
  outline-offset: 2px;
}
/* ---------------------------------- */
/* ──────────────────────────────────────────────────────────────────────────
   GLOBAL ANIMATIONS
─────────────────────────────────────────────────────────────────────────── */

/* 🚀 Hero Entrance Fade & Up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 💓 Pulse Effect for Active Cards */
@keyframes pulseActive {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* 🌀 Add-On Accordion Animation Keyframes   */
@keyframes fadeIn {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 600px;
  }
}
/* Grid Float*/
@keyframes gridFloatIn {
  0% {
    opacity: 0;
    transform: translate(-30px, -30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
