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

:root {
  --primary: #2d55a5;
  --dark: #0f172a;
  --text: #475569;
  --bg-light: #f8fafc;
  --primary-blue: #2d55a5;
  --primary-soft: rgba(45, 85, 165, 0.08);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* General Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: sans-serif;
}

::selection {
  background-color: var(--primary);
  color: #fff;
}
.color-primary {
  color: var(--primary);
}
a {
  display: inline-block;
  color: #000;
  transition: all 300ms ease-in-out;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}

.imgFluid {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.themeBtn {
  background-color: #2d55a5;
  color: #fff;
  width: fit-content;
  display: block;
  border-radius: 8px;
  border: 2px solid #2d55a5;
  transition: all 0.3s ease;
}

/* Header */
.main-nav {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-icon {
  background: var(--primary);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
}

.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  margin: 0 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.btn-signin {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.btn-trial-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(45, 85, 165, 0.2);
}

.btn-trial-nav:hover {
  box-shadow: 0 6px 20px rgba(45, 85, 165, 0.3);
}
.navbar-brand-logo {
  width: 85px;
}
.navbar-toggler {
  box-shadow: none !important;
}
/* Header */

/* Banner */

.hero-wrapper {
  position: relative;
  padding-top: 100px;
  background: radial-gradient(
    circle at 10% 20%,
    rgba(45, 85, 165, 0.03) 0%,
    transparent 50%
  );
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: 50px;
}

.badge-new {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 10px;
}

.tag-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-para {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 520px;
}

.btn-main-cta {
  background: var(--primary);
  color: #fff;
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  font-size: 1.1rem;
}

.btn-main-cta:hover {
  background: var(--dark);
}

.cta-subtext {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- Visuals & Animation --- */
.ui-visual-stack {
  position: relative;
  padding: 20px;
}

.card-main {
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

.card-1 {
  top: -20px;
  right: 0;
  animation-delay: 0s;
}
.card-2 {
  bottom: 20px;
  left: -40px;
  animation-delay: 2s;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(45, 85, 165, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.2rem;
}

.icon-box.green {
  background: #dcfce7;
  color: #166534;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* --- Glow Effects --- */
.glow-1 {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(45, 85, 165, 0.15);
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 991px) {
  .hero-main-title {
    font-size: 2.8rem;
  }
  .ui-visual-stack {
    margin-top: 50px;
  }
  .card-2 {
    left: 0px;
  }
  .hero-wrapper {
    padding-top: 150px;
  }
  .nav-btns {
    justify-content: center;
    margin-top: 8px;
  }
  .navbar-nav {
    text-align: center;
  }
  .main-nav {
    padding: 15px 0;
  }
}
/* Banner */

/* Footer */
.footer-simple {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-icon-sm {
  background: var(--primary);
  color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
}

.logo-text-sm {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.copyright-text {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.footer-links li a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: var(--primary);
}

/* Modal Customization */
.modal-content {
  border-radius: 20px;
}

.modal-header {
  padding: 30px 40px 10px 40px;
}

.modal-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.modal-body h6 {
  color: var(--dark);
  letter-spacing: -0.2px;
}

.modal-body strong {
  color: var(--primary);
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 10px;
}
/* Footer */

/* Section Spacing */
.py-default {
  padding: 70px 0;
}

.manifesto-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* Creating a soft background "glow" behind the text */
.manifesto-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(45, 85, 165, 0.04) 0%,
    transparent 70%
  );
  z-index: 0;
}

.manifesto-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  /* Very subtle border to define the space */
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 30px;
}

.manifesto-icon {
  font-size: 3.5rem;
  color: var(--primary);
  display: inline-block;
}

.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: var(--dark);
  line-height: 1.2;
}

.manifesto-body .lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 400;
}

/* The Solution Highlight Box */
.solution-highlight {
  padding: 20px;
  background: rgba(45, 85, 165, 0.05);
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 500;
  border-left: 4px solid var(--primary);
}

.final-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
}

.tracking-wider {
  letter-spacing: 1px;
}

/* Slow spin animation for the icon */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bx-spin-slow {
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .manifesto-body .lead-text {
    font-size: 1.1rem;
  }
  .solution-highlight {
    font-size: 1.1rem;
  }
  .py-default {
    padding: 30px 0;
  }
  .manifesto-card {
    padding-inline: 0 !important;
  }
  .modal-header {
    padding: 30px 40px 10px 20px;
  }
}

/* Feature Cards Styling */
.bg-light-subtle {
  background-color: #fcfdfe !important; /* Extremely light blue/white */
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(45, 85, 165, 0.08);
  border-color: rgba(45, 85, 165, 0.1);
}

/* Icon Box Customization */
.feature-icon-box {
  width: 54px;
  height: 54px;
  background-color: rgba(45, 85, 165, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1);
}

/* Varied Icon Colors for Eye-Catchy Feel */
.icon-purple {
  background-color: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}
.icon-green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.icon-orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

/* Typography for Features */
.feature-card h5 {
  color: var(--dark-navy);
  font-size: 1.15rem;
  line-height: 1.4;
}

.small-text {
  font-size: 0.95rem;
  line-height: 1.6;
}
.fw-bold {
  font-weight: 800 !important;
}
/* Core Features Styling */
.core-features {
  position: relative;
  z-index: 1;
}

.capability-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient border effect on hover */
.capability-card:hover {
  border-color: #ccc;
  box-shadow: 0 20px 40px rgba(45, 85, 165, 0.05);
  transform: translateY(-5px);
}

.cap-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d55a5 0%, #6366f1 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.8rem;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(45, 85, 165, 0.2);
}

/* Color Variations for Icons */
.analytics-icon {
  background: linear-gradient(135deg, #0ea5e9 0%, #2dd4bf 100%);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.integration-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.cap-content h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.cap-content p {
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 30px;
}

.cap-footer {
  margin-top: auto;
}

.learn-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: gap 0.3s ease;
}

.capability-card:hover .learn-more {
  gap: 10px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .capability-card {
    padding: 30px;
  }
}
/* Growth Section Styling */
.growth-section {
  position: relative;
  border-top: 1px solid #f1f5f9;
}

.growth-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(45, 85, 165, 0.08);
  transition: all 0.3s ease;
}

.growth-card:hover {
  border-color: #ccc;
  transform: translateX(10px); /* Slides slightly to the right on hover */
  box-shadow: 0 15px 30px rgba(45, 85, 165, 0.05) !important;
}

/* Icon Box for Growth Cards */
.growth-icon {
  min-width: 56px;
  height: 56px;
  background: var(--primary-soft);
  color: var(--primary-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.icon-accounting {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.icon-ai {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

/* Visual Tags */
.bg-soft-blue {
  background-color: var(--primary-soft);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 12px;
}

.compliance-tags i {
  font-size: 1rem;
  vertical-align: middle;
}

/* Specific spacing for the stack */
.growth-cards-stack {
  position: relative;
}

/* Left side sticky spacing for mobile */
@media (max-width: 991px) {
  .sticky-lg-top {
    position: static !important;
    margin-bottom: 40px;
    text-align: center;
  }
  .hero-para {
    margin: 0 auto;
  }
  .growth-card:hover {
    transform: translateY(-5px); /* On mobile, move up instead of right */
  }
}

/* CTA Strip Section */
.cta-strip-section {
  padding: 60px 0;
}

.cta-strip-card {
  background: linear-gradient(135deg, #2d55a5 0%, #1e3a7a 100%);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 85, 165, 0.3);
}

.text-light-blue {
  color: #a5c2ff; /* A lighter blue to contrast against the dark background */
}

/* Decorative Blobs */
.cta-blob-1,
.cta-blob-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(60px);
}

.cta-blob-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  top: -150px;
  right: -50px;
}

.cta-blob-2 {
  width: 200px;
  height: 200px;
  background: rgba(45, 85, 165, 0.4);
  bottom: -100px;
  left: -50px;
}

/* CTA Title & Text */
.cta-title {
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.cta-text {
  opacity: 0.9;
}

/* High Contrast Button */
.btn-cta-light {
  background-color: #ffffff;
  color: #2d55a5;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-cta-light:hover {
  background-color: #ffffff;
  color: #2d55a5;
}

.z-1 {
  z-index: 1;
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .cta-strip-card {
    padding: 40px 30px;
    text-align: center;
  }
  .cta-title {
    font-size: 2rem;
  }
  .btn-cta-light {
    width: 100%;
  }
}

/* Container Background */
.bg-light-blue-soft {
  background-color: #fcfdfe;
}

/* Detail Card Styling */
.detail-card {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 85, 165, 0.06);
  border-color: rgba(45, 85, 165, 0.2);
}

/* Accent for specific card like Portal */
.border-highlight {
  border-bottom: 4px solid var(--primary-blue);
}

/* Icon Styles */
.detail-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-soft);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.icon-alt {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

/* Content Styles */
.detail-card h4 {
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

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

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.detail-list li i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Pricing Section Colors */
.pricing-section {
  background-color: #f8fafc;
}

/* Toggle Switch Styling */
.billing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
}

.custom-switch .form-check-input:checked {
  background-color: #2d55a5;
}

.bg-success-soft {
  background-color: #dcfce7;
  color: #166534;
  font-size: 0.75rem;
}

/* Pricing Card Design */
.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.pricing-card:hover {
  border-color: #2d55a5;
  transform: translateY(-5px);
}

.is-featured {
  border: 2px solid #2d55a5;
  box-shadow: 0 10px 30px rgba(45, 85, 165, 0.08);
}

/* Selector Styling */
.pricing-select-ui {
  border-radius: 10px;
  padding: 10px;
  box-shadow: none !important;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Feature List */
.feature-item {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-item i {
  color: #22c55e;
  font-size: 1.2rem;
}

/* Show More / Less Logic */
.btn-show-more {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2d55a5;
}

.btn-show-more .expanded-text {
  display: none;
}
.btn-show-more[aria-expanded="true"] .collapsed-text {
  display: none;
}
.btn-show-more[aria-expanded="true"] .expanded-text {
  display: inline;
}

/* Global Button */
.btn-primary-blue {
  background-color: #2d55a5;
  color: white;
  border-radius: 12px;
}

.btn-primary-blue:hover {
  background-color: #1e3a7a;
  color: white;
}
.price-display h2 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.plan-title {
  font-weight: 800;
}
/* Container Background */
.onboarding-section {
  background-color: #f8fafc;
  min-height: 100vh;
}

/* Card Styling */
.onboarding-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.onboarding-header h2 {
  letter-spacing: -1px;
  margin-bottom: 10px;
}

/* Progress Bar Styling */
.step-progress-wrapper {
  margin: 40px 0 60px 0;
}

.step-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #94a3b8;
  transition: 0.3s;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 10px;
  transition: 0.3s;
}

.step-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-item.active {
  color: #2d55a5;
}

.step-item.active .step-icon {
  background: #2d55a5;
  color: #fff;
  box-shadow: 0 10px 20px rgba(45, 85, 165, 0.2);
}

.step-connector {
  height: 2px;
  background: #f1f5f9;
  width: 100px;
  margin: 0 15px;
  position: relative;
  top: -15px;
}

/* Form Controls */
.section-title {
  color: #1e293b;
  font-weight: 700;
  font-size: 1.1rem;
}

.form-label-custom {
  font-weight: 600;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 8px;
}

.custom-input {
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  transition: 0.3s;
}

.custom-input:focus {
  background-color: #fff;
  border-color: #2d55a5;
  box-shadow: 0 0 0 4px rgba(45, 85, 165, 0.1);
}

/* Buttons */
.btn-primary-blue {
  background-color: #2d55a5;
  color: #fff;
}

.btn-primary-blue:hover {
  background-color: #1e3a7a;
  color: #fff;
  transform: translateY(-2px);
}

/* Validation Errors */
.error-text {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 5px;
}
.first-section {
  height: 93px;
}

/* Success Icon Styling */
.success-icon-wrapper {
    font-size: 80px;
    color: #22c55e;
}

.success-icon-wrapper i {
    filter: drop-shadow(0 10px 15px rgba(34, 197, 94, 0.2));
}

#success-view {
    animation: fadeInScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Ensure the primary blue is consistent */
.text-primary-blue {
    color: #2d55a5 !important;
}
.modal {
    padding-right: 0 !important;
}