/* Custom style overrides */

/* --- Custom Bootstrap & Theme overrides --- */
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}
section[id] {
  scroll-margin-top: 110px !important;
}
body {
  font-family: 'Poppins', sans-serif !important;
  background-color: #ffffff;
  color: #2b2a2f !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
}
.pt-36{margin-top:100px}
.py-28{margin-top:100px}
/* Header & Sticky Menu Styling */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1040 !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(226, 232, 240, 1) !important;
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
}

/* Scroll-To-Top Button */
#scroll-to-top {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 1030 !important;
  width: 44px !important;
  height: 44px !important;
  background-color: #3eb78a !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 15px -3px rgba(62, 183, 138, 0.3), 0 4px 6px -4px rgba(62, 183, 138, 0.3) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(10px) scale(0.9) !important;
}

#scroll-to-top.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

#scroll-to-top:hover {
  background-color: #2ea378 !important;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 20px 25px -5px rgba(46, 163, 120, 0.4), 0 10px 10px -5px rgba(46, 163, 120, 0.4) !important;
}

#scroll-to-top:active {
  transform: translateY(-1px) scale(0.95) !important;
}

/* Theme colors and utility mappings */
.bg-slate-50 { background-color: #f8fafc !important; }
.bg-slate-100 { background-color: #f1f5f9 !important; }
.bg-white { background-color: #ffffff !important; }
.text-slate-950 { color: #151417 !important; }
.text-slate-900 { color: #2b2a2f !important; }
.text-slate-800 { color: #3d3b44 !important; }
.text-slate-700 { color: #4f4c59 !important; }
.text-slate-600 { color: #625f6e !important; }
.text-slate-500 { color: #64748b !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-brand-blue { color: #0999df !important; }
.text-brand-dark-blue { color: #274aa8 !important; }
.bg-brand-blue { background-color: #0999df !important; }
.bg-brand-dark-blue { background-color: #274aa8 !important; }
.border-brand-blue { border-color: #0999df !important; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }

.bg-brand-blue\/10 { background-color: rgba(9, 153, 223, 0.1) !important; }
.bg-brand-blue\/30 { background-color: rgba(9, 153, 223, 0.3) !important; }
.bg-brand-blue\/20 { background-color: rgba(9, 153, 223, 0.2) !important; }
.border-brand-blue\/20 { border-color: rgba(9, 153, 223, 0.2) !important; }
.border-brand-blue\/30 { border-color: rgba(9, 153, 223, 0.3) !important; }
.border-slate-200\/80 { border-color: rgba(226, 232, 240, 0.8) !important; }
.border-slate-200\/50 { border-color: rgba(226, 232, 240, 0.5) !important; }
.bg-slate-900\/40 { background-color: rgba(15, 23, 42, 0.4) !important; }
.bg-\[\#0c9fe2\]\/5 { background-color: rgba(12, 159, 226, 0.05) !important; }
.text-sky-300 { color: #7dd3fc !important; }
.blur-2xl { filter: blur(40px); }

/* Flexbox & Layout utils */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.hidden { display: none !important; }
.relative { position: relative !important; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row !important; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
}

/* Grid system (emulating tailwind columns dynamically with grid gap) */
.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

@media (min-width: 576px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .md\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .md\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .md\:col-span-12 { grid-column: span 12 / span 12 !important; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .lg\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .lg\:col-span-12 { grid-column: span 12 / span 12 !important; }
}

/* Gap */
.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-2\.5 { gap: 0.625rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-3\.5 { gap: 0.875rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-12 { gap: 3rem !important; }

/* Rounding */
.rounded-md { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* Border and Shadow */
.border { border: 1px solid #e2e8f0 !important; }
.border-b { border-bottom: 1px solid #e2e8f0 !important; }
.border-t { border-top: 1px solid #e2e8f0 !important; }
.shadow-xs { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow-sm { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important; }

/* Sizes */
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-6xl { max-width: 72rem !important; }
.max-w-7xl { max-width: 80rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.w-14 { width: 3.5rem !important; }
.h-14 { height: 3.5rem !important; }
.w-24 { width: 6rem !important; }
.h-12 { height: 3rem !important; }
.h-24 { height: 6rem !important; }
.w-48 { width: 12rem !important; }
.w-6 { width: 1.5rem !important; }
.h-6 { height: 1.5rem !important; }
.w-5 { width: 1.25rem !important; }
.h-5 { height: 1.25rem !important; }
.w-4 { width: 1rem !important; }
.h-4 { height: 1rem !important; }
.w-3\.5 { width: 0.875rem !important; }
.h-3\.5 { height: 0.875rem !important; }
.w-0\.5 { width: 0.125rem !important; }
.h-10 { height: 2.5rem !important; }
.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.w-20 { width: 5rem !important; }
.w-160 { width: 160px !important; }
.w-195 { width: 195px !important; }

/* Padding & Margin mappings */
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-14 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.py-0\.5 { padding-top: 0.125rem !important; padding-bottom: 0.125rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-12 { padding-top: 3rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
}

.mt-0\.5 { margin-top: 0.125rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-1\.5 { margin-top: 0.375rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-auto { margin-top: auto !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-16 { margin-bottom: 4rem !important; }

/* Typography specs */
.text-xs { font-size: 0.75rem !important; }
.text-[10px] { font-size: 10px !important; }
.text-[11px] { font-size: 11px !important; }
.text-[9px] { font-size: 9px !important; }
.text-sm { font-size: 0.875rem !important; }
.text-md { font-size: 1rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-medium { font-weight: 500 !important; }
.font-mono { font-family: 'JetBrains Mono', monospace !important; }
.uppercase { text-transform: uppercase !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.tracking-widest { letter-spacing: 0.1em !important; }
.tracking-tight { letter-spacing: -0.025em !important; }
.leading-relaxed { line-height: 1.625 !important; }
.leading-tight { line-height: 1.25 !important; }
.leading-none { line-height: 1 !important; }

/* Effects */
.hover\:text-brand-blue:hover { color: #0c9fe2 !important; }
.hover\:bg-brand-blue\/10:hover { background-color: rgba(12, 159, 226, 0.1) !important; }
.hover\:bg-brand-dark-blue:hover { background-color: #244596 !important; }
.hover\:bg-slate-50:hover { background-color: #f8fafc !important; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important; }
.transition-colors { transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out !important; }
.transition-shadow { transition: box-shadow 0.15s ease-in-out !important; }
.transition-all { transition: all 0.15s ease-in-out !important; }
.no-underline { text-decoration: none !important; }
.aspect-video { aspect-ratio: 16 / 9 !important; }
.pointer-events-none { pointer-events: none !important; }
.whitespace-nowrap { white-space: nowrap !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

/* Gradients & backgrounds */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--gradient-stops)) !important; }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--gradient-stops)) !important; }
.from-slate-50 { --gradient-stops: #f8fafc, transparent !important; }
.to-transparent { --gradient-to: transparent !important; }

/* --- Custom Interactive Accordion Styles --- */
.faq-item {
  border-left: 4px solid transparent !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.faq-item:hover {
  border-color: rgba(12, 159, 226, 0.3) !important;
  background-color: #f8fafc !important;
  box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.04) !important;
  transform: translateY(-1px);
}
.faq-active {
  border-left: 4px solid #0c9fe2 !important;
  border-color: #e2e8f0 #e2e8f0 #e2e8f0 #0c9fe2 !important;
  background-color: #f8fafc !important;
  box-shadow: 0 10px 20px -3px rgba(12, 159, 226, 0.08) !important;
}
.rotate-180 {
  transform: rotate(180deg) !important;
}
.transition-transform {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* --- Built-in styles --- */
::selection {
  background-color: rgba(12, 159, 226, 0.3);
  color: #0f172a;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
}
::-webkit-scrollbar-thumb {
  background: #0c9fe2;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #244596;
}
body {
  background-color: #ffffff;
  color: #2b2a2f !important;
}

/* Smooth section transitions */
section {
  transition: background-color 0.4s ease;
}

/* Premium button hover animations */
.btn-custom {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-custom:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 20px -4px rgba(12, 159, 226, 0.4) !important;
}

/* Smooth general button scale effect */
button, .btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
button:hover, .btn:hover {
  transform: translateY(-2px) scale(1.02);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-scroll {
  animation: scroll 25s linear infinite;
}
.animate-scroll:hover {
  animation-play-state: paused;
}

/* Custom absolute logo styling for professional look and clarity */
.custom-logo-link {
  position: absolute !important;
  top: -12px !important;
  left: 1rem !important;
  z-index: 100 !important;
  width: 110px !important;
  height: 110px !important;
  display: block !important;
}
.custom-logo-container {
  width: 100% !important;
  height: 100% !important;
  background-color: #000000 !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3) !important;
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.custom-logo-link:hover .custom-logo-container {
  transform: scale(1.03) !important;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4) !important;
}
.custom-logo-spacer {
  flex-shrink: 0 !important;
  width: 110px !important;
  height: 48px !important;
}

@media (min-width: 640px) {
  .custom-logo-link {
    left: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  .custom-logo-link {
    width: 145px !important;
    height: 145px !important;
    left: 2rem !important;
  }
  .custom-logo-spacer {
    width: 145px !important;
  }
}

/* --- Testimonial Slider & Carousel Custom Styles --- */
.testimonial-carousel-container {
  overflow: hidden !important;
  width: 100% !important;
  position: relative !important;
  min-height: 240px !important;
  display: flex !important;
  align-items: center !important;
}
@media (min-width: 640px) {
  .testimonial-carousel-container {
    min-height: 180px !important;
  }
}
.testimonial-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.testimonial-slide {
  width: 100% !important;
  flex-shrink: 0 !important;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
@media (min-width: 640px) {
  .testimonial-slide {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
}

.testimonial-quote-left {
  position: absolute !important;
  top: 1rem !important;
  left: 1.5rem !important;
}
.testimonial-quote-right {
  position: absolute !important;
  bottom: 1rem !important;
  right: 1.5rem !important;
  transform: rotate(180deg) !important;
}

/* Position and helper utilities */
.absolute { position: absolute !important; }
.top-1\/2 { top: 50% !important; }
.-translate-y-1\/2 { transform: translateY(-50%) !important; }
.left-2 { left: 0.5rem !important; }
.left-4 { left: 1rem !important; }
.right-2 { right: 0.5rem !important; }
.right-4 { right: 1rem !important; }
@media (min-width: 640px) {
  .sm\:left-4 { left: 1rem !important; }
  .sm\:right-4 { right: 1rem !important; }
}
.z-10 { z-index: 10 !important; }
.cursor-pointer { cursor: pointer !important; }
.overflow-hidden { overflow: hidden !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.shrink-0 { flex-shrink: 0 !important; }
.select-none { user-select: none !important; }

/* Sizing & spacing utilities */
.w-8 { width: 2rem !important; }
.h-8 { height: 2rem !important; }
.w-10 { width: 2.5rem !important; }
.h-10 { height: 2.5rem !important; }
@media (min-width: 640px) {
  .sm\:w-10 { width: 2.5rem !important; }
  .sm\:h-10 { height: 2.5rem !important; }
}
.w-2\.5 { width: 0.625rem !important; }
.h-2\.5 { height: 0.625rem !important; }
.mt-6 { margin-top: 1.5rem !important; }

/* Colors */
.bg-slate-300 { background-color: #cbd5e1 !important; }
.text-amber-500 { color: #f59e0b !important; }

/* Positional backup helpers */
.fixed { position: fixed !important; }
.absolute { position: absolute !important; }
.relative { position: relative !important; }
.inset-0 { top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; }
.top-0 { top: 0 !important; }
.left-0 { left: 0 !important; }
.right-0 { right: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.z-50 { z-index: 1050 !important; }

/* Mobile Navigation Drawer Styling */
#mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 2000 !important;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#mobile-menu.hidden {
  display: none !important;
}

/* WhatsApp Float Button */
#whatsapp-float {
  position: fixed !important;
  bottom: 84px !important;
  right: 24px !important;
  z-index: 1030 !important;
  width: 50px !important;
  height: 50px !important;
  background-color: #25D366 !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4), 0 8px 10px -6px rgba(37, 211, 102, 0.4) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}

#whatsapp-float svg, #whatsapp-float svg path {
  fill: #ffffff !important;
}

#whatsapp-float:hover {
  background-color: #128C7E !important;
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 20px 25px -5px rgba(18, 140, 126, 0.5), 0 10px 10px -5px rgba(18, 140, 126, 0.5) !important;
}

#whatsapp-float::before {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background-color: #25D366 !important;
  opacity: 0.4 !important;
  z-index: -1 !important;
  animation: whatsapp-pulse 2s infinite !important;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Custom Marquee Slider for Tools You'll Master Section */
@keyframes marquee-forward {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333333%); }
}

@keyframes marquee-backward {
  0% { transform: translateX(-33.333333%); }
  100% { transform: translateX(0); }
}

.animate-marquee-forward {
  display: flex !important;
  width: max-content !important;
  animation: marquee-forward 30s linear infinite !important;
}

.animate-marquee-forward:hover {
  animation-play-state: paused !important;
}

.animate-marquee-backward {
  display: flex !important;
  width: max-content !important;
  animation: marquee-backward 35s linear infinite !important;
}

.animate-marquee-backward:hover {
  animation-play-state: paused !important;
}

/* Premium Gradient Button style */
.btn-gradient {
  background: linear-gradient(135deg, #274aa8 0%, #0999df 100%) !important;
  color: #ffffff !important;
  border: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1d3a87 0%, #0780be 100%) !important;
  box-shadow: 0 10px 25px rgba(9, 153, 223, 0.4) !important;
  transform: translateY(-2px) !important;
}

/* Fade-In Up Scroll Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Elegant Animated Dotted Connector Line */
@keyframes dotted-flow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 24px;
  }
}

.animated-dotted-line {
  background-image: linear-gradient(to bottom, #274aa8 40%, transparent 40%);
  background-size: 2px 14px;
  background-repeat: repeat-y;
  animation: dotted-flow 1.5s linear infinite;
}

/* Custom indicator dot pulsing effect */
@keyframes pulse-soft-blue {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(39, 74, 168, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(39, 74, 168, 0);
  }
}

.pulse-node {
  animation: pulse-soft-blue 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Curved SVG dotted connector flow */
@keyframes svg-dotted-flow {
  from {
    stroke-dashoffset: 24;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.svg-flow-dotted {
  stroke-dasharray: 8, 6;
  animation: svg-dotted-flow 1.2s linear infinite;
}

/* Theme gradients and brand-aligned element styles to replace yellow and inline CSS */
.hero-gradient-shape {
  position: absolute !important;
  width: 105% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  max-width: 480px !important;
  top: 5% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 1 !important;
  background: radial-gradient(circle, rgba(9, 153, 223, 0.28) 0%, rgba(39, 74, 168, 0.12) 45%, transparent 70%) !important;
  filter: blur(20px) !important;
  border-radius: 54% 46% 62% 38% / 45% 55% 42% 58% !important;
  animation: blob-float 10s ease-in-out infinite alternate !important;
  pointer-events: none !important;
}

@keyframes blob-float {
  0% {
    border-radius: 54% 46% 62% 38% / 45% 55% 42% 58% !important;
    transform: translateX(-50%) translateY(0) scale(1) rotate(0deg) !important;
  }
  50% {
    border-radius: 42% 58% 48% 52% / 55% 45% 58% 42% !important;
    transform: translateX(-48%) translateY(-15px) scale(1.05) rotate(10deg) !important;
  }
  100% {
    border-radius: 60% 40% 55% 45% / 40% 60% 35% 65% !important;
    transform: translateX(-52%) translateY(10px) scale(0.98) rotate(-8deg) !important;
  }
}

.theme-rotated-badge {
  background: linear-gradient(135deg, #274aa8 0%, #0999df 100%) !important;
  color: #ffffff !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: 1rem !important;
  font-weight: 800 !important;
  display: inline-block !important;
  transform: rotate(-1.5deg) !important;
  box-shadow: 0 10px 20px -5px rgba(9, 153, 223, 0.35) !important;
  font-family: 'Poppins', sans-serif !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.demo-play-btn {
  width: 50px !important;
  height: 50px !important;
  background: linear-gradient(135deg, #274aa8 0%, #0999df 100%) !important;
  border: 2.5px solid #000000 !important;
  box-shadow: 0px 4px 12px rgba(9, 153, 223, 0.25) !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}

.demo-play-btn:hover {
  transform: scale(1.08) !important;
  box-shadow: 0px 8px 18px rgba(9, 153, 223, 0.4) !important;
}

.demo-play-icon {
  margin-left: 3px !important;
  color: #ffffff !important;
  fill: #ffffff !important;
}

.bullet-point-icon {
  width: 26px !important;
  height: 26px !important;
  background: linear-gradient(135deg, #274aa8 0%, #0999df 100%) !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(9, 153, 223, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bullet-point-icon svg {
  color: #ffffff !important;
}

.footer-logo-box {
  background: linear-gradient(135deg, #274aa8 0%, #0999df 100%) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 20px rgba(9, 153, 223, 0.15) !important;
}

.nav-link-custom {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #4f4c59 !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
}

.nav-link-custom:hover {
  color: #0999df !important;
}

.poppins-font {
  font-family: 'Poppins', sans-serif !important;
}

/* Why Choose Bodhishala - Attachment Look & Feel Cards */
.why-card-base {
  position: relative !important;
  border-radius: 2rem !important;
  padding: 2.25rem 2rem !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

/* Cyan Card styling */
.why-card-cyan {
  background-color: #f0fbfd !important;
  border: 1px solid rgba(9, 153, 223, 0.18) !important;
  box-shadow: 6px 6px 0px rgba(9, 153, 223, 0.1) !important;
}
.why-card-cyan:hover {
  transform: translate(-4px, -4px) !important;
  box-shadow: 12px 12px 0px rgba(9, 153, 223, 0.18) !important;
}
.why-icon-cyan {
  background: linear-gradient(135deg, #0999df 0%, #22d3ee 100%) !important;
  box-shadow: 0 4px 12px rgba(9, 153, 223, 0.25) !important;
}
.why-sparkle-cyan {
  color: rgba(9, 153, 223, 0.3) !important;
}

/* Purple Card styling */
.why-card-purple {
  background-color: #f6f3ff !important;
  border: 1px solid rgba(139, 92, 246, 0.18) !important;
  box-shadow: 6px 6px 0px rgba(139, 92, 246, 0.1) !important;
}
.why-card-purple:hover {
  transform: translate(-4px, -4px) !important;
  box-shadow: 12px 12px 0px rgba(139, 92, 246, 0.18) !important;
}
.why-icon-purple {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25) !important;
}
.why-sparkle-purple {
  color: rgba(139, 92, 246, 0.3) !important;
}

/* Amber/Yellow Card styling */
.why-card-amber {
  background-color: #fffbea !important;
  border: 1px solid rgba(245, 158, 11, 0.18) !important;
  box-shadow: 6px 6px 0px rgba(245, 158, 11, 0.1) !important;
}
.why-card-amber:hover {
  transform: translate(-4px, -4px) !important;
  box-shadow: 12px 12px 0px rgba(245, 158, 11, 0.18) !important;
}
.why-icon-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25) !important;
}
.why-sparkle-amber {
  color: rgba(245, 158, 11, 0.3) !important;
}

/* Job Roles Icon Box - Blue and custom hover animation */
.job-role-icon-box {
  background-color: rgba(39, 74, 168, 0.08) !important;
  color: #274aa8 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.group:hover .job-role-icon-box {
  background-color: #274aa8 !important;
  color: #ffffff !important;
  transform: scale(1.15) rotate(15deg) !important;
  box-shadow: 0 8px 16px rgba(39, 74, 168, 0.25) !important;
}

/* Who Can Join Card - Smooth custom grid hover effects */
.who-join-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.group:hover .who-join-card {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: rgba(39, 74, 168, 0.35) !important;
  box-shadow: 0 20px 25px -5px rgba(39, 74, 168, 0.08), 0 10px 10px -5px rgba(39, 74, 168, 0.04) !important;
}

/* --- Premium Footer & FAQ Spacing Fixes --- */
footer {
  background-color: #1e222b !important;
  color: #cbd5e1 !important;
  padding: 100px;
}
.copy{margin-top: 20px;}
footer a {
  color: #ffffff !important;
  transition: color 0.3s ease !important;
}

footer a:hover {
  color: #0999df !important;
}

footer .footer-social-btn {
  background-color: #282c39 !important;
  color: #94a3b8 !important;
}

footer .footer-social-btn:hover {
  color: #ffffff !important;
}

footer .footer-badge-btn {
  background-color: #242936 !important;
  border-color: rgba(51, 65, 85, 0.4) !important;
}

footer .footer-badge-btn:hover {
  background-color: #2b3140 !important;
}

/* Blur-filter fallback styling for glowing ambient spheres */
footer .glow-circle-left {
  filter: blur(64px) !important;
  -webkit-filter: blur(64px) !important;
  background-color: rgba(39, 74, 168, 0.15) !important;
}

footer .glow-circle-right {
  filter: blur(64px) !important;
  -webkit-filter: blur(64px) !important;
  background-color: rgba(9, 153, 223, 0.15) !important;
}

/* FAQ Space Adjustments */
#faq {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

#faq .faq-item {
  border-radius: 12px !important;
  border-color: rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 20px !important;
}

/* --- Vector Logo Shield & Custom Style overrides --- */
.custom-logo-container {
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, #274aa8 0%, #0999df 100%) !important;
  box-shadow: 0 10px 25px -5px rgba(9, 153, 223, 0.3) !important;
  border-bottom-left-radius: 16px !important;
  border-bottom-right-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: #ffffff !important;
}

.custom-logo-container i {
  width: 32px !important;
  height: 32px !important;
  color: #ffffff !important;
  display: block !important;
}

.custom-logo-container span {
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-top: 4px !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  display: block !important;
}

@media (min-width: 1024px) {
  .custom-logo-container i {
    width: 44px !important;
    height: 44px !important;
  }
  .custom-logo-container span {
    font-size: 11px !important;
    margin-top: 6px !important;
  }
}

/* Bullet-removal guarantees for footer list items */
footer ul, footer li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}