/* Reset */
* { box-sizing: border-box; margin:0; padding:0;     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;}
a { text-decoration: none; color: inherit; }

/* --- Add near top (define used CSS variables) --- */
:root {
  --primary: #c211a0;   /* pink */
  --accent:  #1e40af;   /* deep blue */
  --border:  #e6eef6;
  --muted:   #64748b;
  --pink:    #ff66b3;
  --deep:    #0f172b;
  --save: #2563eb; /* your eAuthoraiz blue */
}

/* Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Global floating background elements */
.floating-elements {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;               /* behind everything */
  pointer-events: none;     /* don't block clicks */
}

.floating-elements span {
  position: absolute;
  display: block;
  width: 20px; height: 20px;
  background: #00759528;
  border-radius: 50%;
  animation: floatRandom 20s linear infinite;
}

/* Randomized positions, sizes, durations, delays */
.floating-elements span:nth-child(1) { left: 10%; animation-duration: 25s; width: 40px; height: 40px; }
.floating-elements span:nth-child(2) { left: 25%; animation-duration: 18s; animation-delay: 3s; }
.floating-elements span:nth-child(3) { left: 40%; animation-duration: 22s; width: 30px; height: 30px; }
.floating-elements span:nth-child(4) { left: 55%; animation-duration: 26s; animation-delay: 5s; }
.floating-elements span:nth-child(5) { left: 70%; animation-duration: 20s; width: 35px; height: 35px; }
.floating-elements span:nth-child(6) { left: 85%; animation-duration: 24s; animation-delay: 2s; }
.floating-elements span:nth-child(7) { left: 15%; animation-duration: 19s; animation-delay: 6s; width: 50px; height: 50px; }
.floating-elements span:nth-child(8) { left: 45%; animation-duration: 30s; width: 25px; height: 25px; }
.floating-elements span:nth-child(9) { left: 60%; animation-duration: 28s; animation-delay: 4s; }
.floating-elements span:nth-child(10){ left: 80%; animation-duration: 23s; width: 45px; height: 45px; }

/* Floating Motion Keyframes */
@keyframes floatRandom {
  0% {
    transform: translateY(100vh) translateX(0) scale(1);
    opacity: 0;
  }
  10% { opacity: 0.5; }
  50% {
    transform: translateY(50vh) translateX(20px) scale(1.1);
    opacity: 1;
  }
  90% { opacity: 0.3; }
  100% {
    transform: translateY(-10vh) translateX(-20px) scale(0.9);
    opacity: 0;
  }
}


/* Header */
.header {
  position: fixed;
  top:0;
  left:0;
  right:0;
  background:#fff;
  z-index:50;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-content {
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 15px 20px;
}

.logo { font-size:1.5rem; font-weight:bold; color:#007595; }

/* Nav */
.nav ul {
  display:flex;
  gap:20px;
  list-style:none;
}

.logo img {
  height: 40px; /* adjust size as needed */
  vertical-align: middle;
}

.logo span {
  margin-left: 8px;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav ul li a { text-decoration:none; color:#0f172b; font-weight:500; position:relative; }
.nav ul li a::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-4px;
  width:0;
  height:2px;
  background:#1e40af;
  transform:translateX(-50%);
  transition: width 0.3s;
}
.nav ul li a:hover::after { width:100%; }

/* Buttons */
.btn { border:none; cursor:pointer; border-radius:50px; font-weight:600; transition: all 0.3s ease; }
.btn-primary {
  background: linear-gradient(90deg, #c211a0, #1e40af);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease;
  background-size: 200% auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-position: right center; /* animate gradient shift */
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.btn-white { background:#fff; color:#1e40af; padding:12px 28px; border: 2px solid #1e40af; }
.btn-white:hover { background:#1e40af; color:#fff; transform: translateY(-2px); }
.btn-outline { background:transparent; color:#fff; border:2px solid #fff; padding:12px 28px; }
.btn-outline:hover { background: rgba(255,255,255,0.2); }

/* Wrapper to give horizontal gaps to all sections */
.wrapper {
  max-width: 1200px; /* limits content width */
  margin: 0 auto;    /* center content */
  padding: 0 20px;   /* horizontal gaps */
}

/* Grid inside wrapper */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Remove max-width and margin from individual sections */
.section,
.hero,
#client-login,
.footer {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.v2-left-border-text {
  border-left: 3px solid #fff; /* adjust color to match your theme */
  padding-left: 15px; /* space between text and border */
}

.margin-top-20 {
  margin-top: 20px;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.section {
  padding: 50px 0;
  background: #f9f9fb;
}

.text-center {
  text-align: center;
}

.section-text {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 40px;
  color: #c211a0;
  margin-bottom: 15px;
  transition: all 0.5s ease;
}

.feature-card:hover .icon {
  transform: rotate(10deg) scale(1.2);
  color: #1e40af;
}

/* Glowing gradient border animation */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(90deg, #c211a0, #1e40af, #c211a0);
  background-size: 200% 200%;
  animation: gradientMove 4s linear infinite;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}



/* Hero */
.hero {
  color: #fff;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2 columns */
  gap: 40px;                        /* space between columns */
  justify-content: center;
  align-items: center;
  padding: 120px 40px 40px;
  padding-left: 350px;               /* move content to the right */

  /* Background: gradient overlay + image */
  background-image: 
    linear-gradient(135deg, #05afdab0, #0a2ca7ea),  /* gradient overlay with transparency */
    url('/static/images/bg.jpg');  /* background image */
  background-size: cover;  /* cover full section */
  background-position: center;  /* center image */
  background-repeat: no-repeat; /* prevent repeat */
  animation: gradientMove 20s ease infinite;

}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 60px 10px 40px;
    padding-left: 20px;  /* Reset for mobile */
  }
}

.hero-title { font-size:2.5rem; font-weight:bold; line-height:3rem; text-align: left; margin-bottom: 20px;margin-top:20px }
.hero-text { max-width:600px; font-size:1.1rem; line-height:1.6; color: #fff; text-align: left}
.hero-buttons { display:flex; justify-content:left; flex-wrap:wrap; gap:15px; margin-top:25px; }

.form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 360px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
}

.form-toggle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.form-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: #64748b;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.form-toggle button.active {
  color: #1e40af;
  border-bottom: 3px solid #2c56df;
}

.form {
  display: none;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.5s ease forwards;
}

.form.active {
  display: flex;
}

.form h3 {
  margin-bottom: 0.5rem;
  color: #1e40af;
  text-align: center;
}

.form input {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  outline: none;
}

.form-btn {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #1e40af;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-btn:hover {
  background-color: #1e40af;
}

.social-note {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.facebook { background-color: #3b5998; color: #fff; }
.google { background-color: #fff; color: #333; border: 1px solid #ccc; }

.forgot {
  text-align: right;
  font-size: 0.85rem;
  color: #1e40af;
  text-decoration: none;
}

.forgot:hover { text-decoration: underline; }

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a {
  position: relative;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #1e40af;
  transition: width 0.3s ease-in-out;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #1e40af;
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    display: none;
  }
}
.login-note a {
    color: #1e40af;
    text-decoration: underline;
}

/* Sections */
.section { background-color: #fff; width: 100%; padding: 50px 0; }
.section-gray { background:#f1f5f9; padding: 50px 0;  width: 100%; }
.section .wrapper p { max-width:800px; margin:10px auto 0; color: #64748b; font-size:1rem; text-align: center; line-height: 1.6; margin-bottom: 30px;}
.text-center { text-align:center; }
.text-muted { color:#64748b; }
.problem-text {
  max-width: 800px;
  margin: 10px auto 30px;
  color: #64748b;
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
  padding: 0 1rem; /* add breathing room on small screens */
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .problem-text {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 90%;
  }
}

/* Small screens (mobiles) */
@media (max-width: 480px) {
  .problem-text {
    font-size: 0.9rem;
    line-height: 1.8;
    padding: 0 1.25rem;
  }
}


.section-text {
  max-width: 800px;           /* limits line length */
  margin: 10px auto 30px;     /* top/bottom spacing, centered */
  color: #64748b;             /* slate-500 text color */
  font-size: 1rem;            /* paragraph font size */
  text-align: center;           /* left align text */
  line-height: 1.6;           /* line spacing for readability */
}

.cta-text {
  line-height: 1.4;      /* tighter spacing */
  color: #64748b;           /* or any color different from global p */
  font-size: 1.1rem;
  margin-top: 5px;
  margin-bottom: 30px;
  text-align: center;           /* left align text */
}

/* Grid */
.grid { display:flex; flex-wrap:wrap; gap:20px; }
.grid-2 > * { flex: 1 1 calc(50% - 20px); }
.grid-3 > * { flex: 1 1 calc(33.333% - 20px); }
.grid-4 > * { flex: 1 1 calc(25% - 20px); }

/* Responsive Grids */
@media (max-width: 1024px) {
  .grid-3 > * { flex: 1 1 calc(50% - 20px); }
  .grid-4 > * { flex: 1 1 calc(50% - 20px); }
}
@media (max-width: 640px) {
  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > * { flex: 1 1 100%; }
  .hero-title { font-size:2rem; }
  .hero-text { font-size:1rem; }
  .btn {  text-align:center; }
}

/* Cards */
.card, .feature-card, .login-card { background:#fff; padding:25px; border-radius:20px; box-shadow:0 2px 10px rgba(0,0,0,0.1); text-align:center; transition: all 0.3s ease; }
.card:hover, .feature-card:hover, .login-card:hover { transform: translateY(-6px); box-shadow:0 8px 20px rgba(0,0,0,0.15); }
.step { font-size:3rem; font-weight: 800; color:#1e40af; margin-bottom:15px; line-height: 1;}


/* .step {
  width: 300px;
  height: 300px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 5%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
} */

.step img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step img {
  transition: transform 0.3s ease;
}

.card:hover .step img {
  transform: scale(1.03);
}


/* Benefits */
.benefit { background:#fff; padding:20px; border-radius:15px; box-shadow:0 2px 8px #0000001a; text-align: center; color: #0f172b; font-weight:600; font-size: 1.125rem; transition: all 0.3s ease; }
.benefit:hover { transform: translateY(-5px); box-shadow:0 6px 18px rgba(0,0,0,0.15); }

.section-gray {
  background: #f7f8fa;
  padding: 50px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.benefit {
  text-align: center;
}

.radial {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
}

.radial svg {
  transform: rotate(-90deg);
  width: 120px;
  height: 120px;
}

.radial circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.radial circle.bg {
  stroke: #eee;
}

.radial circle.progress {
  stroke: url(#grad1); /* replace with respective gradient in HTML */
  stroke-dasharray: 0; /* will be set by JS */
  stroke-dashoffset: 0; /* will be set by JS */
  transition: stroke-dashoffset 1.5s ease;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 600;
  color: #c211a0;
}

.benefit h3 {
  font-size: 1.1rem;
  color: #333;
  margin-top: 10px;
}

/* Gradient Stroke */
svg defs linearGradient {
  stop-color: #c211a0;
}

svg defs stop:nth-child(2) {
  stop-color: #1e40af;
}

/* Pricing Section */

  .wrap{
    max-width:1200px;
    margin:48px auto;
    padding:28px;
  }

  /* Header */
  .pricing-hero{
    text-align:left;
    margin-bottom:24px;
  }
  .pricing-hero h1{
    font-size:44px;
    margin:0 0 8px 0;
    letter-spacing:-0.5px;
  }
  .pricing-hero p{
    margin:0;
    color:var(--muted);
    text-align: center;
  }

  /* Toggle */
  .toggle-wrap{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    align-items:center;
    margin:18px 0 28px;
  }

  .toggle-pill{
    background:#fff;
    border-radius:12px;
    border:1px solid var(--border);
    padding:8px 12px;
    display:inline-flex;
    gap:10px;
    align-items:center;
  }
  .toggle-pill .label{ font-size:14px; color:var(--muted); }
  .switch {
    --w:46px; --h:26px;
    width:var(--w); height:var(--h);
    background:#efeef2;
    border-radius:999px;
    position:relative;
    display:inline-block;
    cursor:pointer;
    border:1px solid #efeaf3;
  }
  .switch .dot{
    position:absolute;
    left:4px; top:2px;
    width:20px; height:20px;
    background:#fff; border-radius:50%;
    transition:all .22s ease;
    box-shadow:0 2px 6px rgba(16,24,40,0.08);
  }
  .switch.on{
    background: linear-gradient(90deg, var(--save), #1e40af);
  }
  .switch.on .dot{ transform:translateX(18px); }

  .save-flag{
    background:rgb(222, 229, 253);
    color:var(--save);
    padding:6px 10px;
    border-radius:10px;
    font-weight:600;
    font-size:13px;
    border:1px solid #1e40afaf;
  }

  /* Main table grid */
  
  .pricing-table{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:0;
    border-radius:8px;
    overflow:hidden;
    border:1px solid var(--border);
    background: linear-gradient(180deg,#fff,#fff);
  }

  /* Each column style */
  .col{
    display:grid;
    grid-template-rows: auto 1fr auto; /* header, middle stack, footer long list */
    border-left:1px solid var(--border);
    min-height:520px;
    background:#fff;
  }
  .col:first-child{ border-left:0; }

  /* top header bar in each column */
  .col .col-header{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 20px;
    border-bottom:1px solid var(--border);
    background: linear-gradient(180deg, rgba(245,242,248,0.6), rgba(250,248,255,0.5));
  }
  .col .col-header svg{ width:20px; height:20px; color:var(--muted); }
  .col .col-header .title{
    font-weight:700; font-size:16px;
    color:var(--deep);
  }

  /* middle area: price + CTA + small feature row */
  .col .col-middle{
    border-bottom:1px solid var(--border);
    display:flex;
    flex-direction:column;
    padding:22px 20px;
    align-items:flex-start;
    justify-content:flex-start;
  }


  
  .price-wrap{
    display:flex;
    flex-direction:column;
    gap:6px;
    align-items:flex-start;
    width:100%;
  }
  .price-large{
    font-size:36px;
    font-weight:800;
    color:#0f172a;
  }
  .price-sub{
    font-size:13px;
    color:var(--muted);
  }

  .plan-icon {
  width: 30px;
  height: 30px;
  color: #2563eb;
}

.pricing-cta {
  margin-top: 20px;
  text-align: center;
}

.pricing-btn {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #2563eb;
  color: #fff;
}

/* Hover effects */
.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

.pricing-btn.ghost:hover {
  background-color: #2563eb;
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}

  /* small feature row under CTA (icons + small text), kept short for the screenshot */
  .mini-features{
    display:flex;
    gap:12px;
    width:100%;
    align-items:center;
    color:var(--muted);
    font-size:13px;
    margin-top:15px;
  }
  .mini-features .mini-item{
    display:flex;
    gap:8px;
    align-items:center;
  }
  .mini-features svg{ width:16px; height:16px; color: var(--pink); }

  /* big features list (footer of column) */
  .col .col-footer{
    padding:28px 20px;
    background:#fff;
    display: flex; /* Or display: grid; */
    flex-direction: column;
  }
  .col .col-footer h4{
    margin:0 0 12px 0;
    font-size:15px;
    font-weight:700;
  }
  .features-list{
    display: grid;
    list-style:none;
    margin:0;
    padding:0;
    color:var(--muted);
    font-size:14px;
    grid-template-rows: repeat(7, 1fr); 
    height: 100%;
  }
  .features-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:2px 5px;
    /* border-bottom:1px solid rgba(0,0,0,0.02); */
    position: relative;
  }
  .features-list li svg{
    width:14px; height:14px; margin-top:4px;
    color:var(--pink);
  }

  .check-icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

  /* 1. Ensure the LI is the positioning context for the tooltip */
.features-list li.has-tooltip {
    position: relative; /* Crucial for absolute positioning of the tooltip */
    /* Other existing flex styles: display: flex; align-items: flex-start; gap: 12px; */
}

/* 2. Style the Feature Name / Icon area */
.features-list li .feature-name {
    display: flex; /* Makes the feature name and icon sit side-by-side */
    justify-content: space-between; /* Pushes the icon to the far right */
    align-items: center;
    flex-grow: 1; /* Makes this element fill all available width */
    min-width: 0; /* Prevents text overflow issues */
    gap: 8px; /* Small gap between the feature text and the 'i' icon */
}

/* 3. Style the Feature Text (optional) */
.features-list li .feature-text {
    /* Ensures text doesn't push the icon off the side */
    margin-right: 12px;
}

/* 3. Style the 'i' icon */
.info-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #999; /* Light grey color for the icon */
    flex-shrink: 0; /* Ensures icon is not squeezed */
    position: relative; /* Needed to wrap the tooltip box */
}

.info-icon .icon-i {
    width: 16px;
    height: 16px;
    /* You can adjust the SVG styles here */
    stroke: currentColor;
    fill: none;
}

/* 4. Style the Tooltip Box (Hidden by default) */
.tooltip-box {
    /* Tooltip positioning */
    position: absolute;
    right: 100%; /* Align its right edge with the left edge of the .info-icon */
    top: -10px; /* Adjust vertical position */
    left: 100%; /* Position right of the icon wrapper */
    transform: translateX(-10px); /* Push it 10px away from the icon */
    z-index: 10;

    /* Tooltip appearance */
    background-color: #555; /* Dark background */
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left; /* Ensure text is left-aligned inside the box */

    /* Transition and Hide */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* 5. Show the Tooltip on Hover */
.info-icon:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
}

/* Optional: Add a small arrow/triangle to the tooltip for a polished look */
.tooltip-box::before {
    content: "";
    position: absolute;
    top: 30px; /* Align vertically with the icon */
    left: -5px; /* Position to the left */
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}

  /* Badges (top right inside column header area but visually overlay) */
  .badge{
    position:absolute;
    right:18px;
    top:18px;
    font-size:12px;
    padding:6px 10px;
    border-radius:8px;
    font-weight:700;
    letter-spacing:.6px;
  }


  /* Inside your existing .col style block */
.col{
    display:grid;
    /* This change is the key: auto header, auto middle, 1fr for the footer list */
    grid-template-rows: auto auto 1fr; /* <--- CHANGE THIS LINE */
    border-left:1px solid var(--border);
    min-height:520px;
    background:#fff;
}
  /* Individual column color styling to match screenshot */
  .col.free .col-header{ background: rgba(253,242,248,0.6); }
  .col.starter .col-header{ background: rgba(253,242,248,0.6); }
  .col.growth .col-header{ background: rgba(229,214,255,0.95); }
  .col.premium .col-header{ background: rgba(229,214,255,0.95); }
  .col.enterprise{
    background: linear-gradient(180deg,#0a0a0a,#0a0a0a);
    color:#fff;
  }
  .col.enterprise .col-header{ background: transparent; border-bottom:1px solid rgba(255,255,255,0.06); }
  .col.enterprise .price-large{ color:#fff; }
  .col.enterprise .btn{ background:#fff; color:#0a0a0a; font-weight:700; }

  .col.growth .col-middle {background: rgba(229, 214, 255, 0.95);}
  .col.premium .col-middle {background: rgba(229, 214, 255, 0.95);}

  .col.free .col-middle{ background: rgba(253,242,248,0.6); }
  .col.starter .col-middle{ background: rgba(253,242,248,0.6); }

  /* border separators between rows: keep them thin and subtle */
  .col .col-middle + .col-footer{ border-top:1px solid var(--border); }

  /* visual rounding for the entire table to match screenshot */
  .pricing-table .col:first-child .col-header{ border-top-left-radius:8px; }
  .pricing-table .col:last-child .col-header{ border-top-right-radius:8px; }
  .pricing-table .col:first-child .col-footer{ border-bottom-left-radius:8px;}
  .pricing-table .col:last-child .col-footer{ border-bottom-right-radius:8px;}

  /* position badges inside header area */
  .col { position:relative; }
  .col .badge { position:absolute; transform:translateY(2px); }

  /* small responsive */
  @media (max-width:1180px){
    .pricing-table{ grid-template-columns: repeat(2,1fr);}
  }
  @media (max-width:720px){
    .pricing-table{ grid-template-columns:1fr;}
    .toggle-wrap{ justify-content:center; }
    .wrap{ padding:14px; }
  }

  .plan-icon {
  width: 30px;
  height: 30px;
  color: #2563eb;
}

/* Button colors */
.primary-btn { background: #2563eb; color: #fff; }
.secondary-btn { background: #e0e7ff; color: #1e40af; }
.tertiary-btn { background: #fff; color: #2563eb; border: 1px solid #2563eb; }

.primary-btn:hover { background: #1e40af; }
.secondary-btn:hover { background: #1e40af; color: #fff; }
.tertiary-btn:hover { background: #fff; color: #fff; }

/* Premium card styling */
.premium-card {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
}

.premium-card ul li { color: #fff; }
.premium-card .price { color: #fff; }
.premium-card .pricing-btn { background: #fff; color: #2563eb; }
.premium-card .pricing-btn:hover { background: #2563eb; color: #fff; }




/* Specialties */
.specialties { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-top:20px; }
.specialties span { background:#cffafe; color:#0369a1; padding:10px 20px; border-radius:999px; font-weight:500; transition: all 0.3s ease; }
.specialties span:hover { background:#06b6d4; color:#fff; transform: scale(1.05); }

.specialties-wave {
  position: relative;
  background: url('/static/images/blue\ copy.jpg') center/cover no-repeat; /* Replace with your image */
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
}

.specialties-wave .wrapper .specialties-subtitle {
    max-width: none;        /* remove max-width */
    margin: 20px auto 50px; /* separate from heading and pills */
    color: #fff;            /* ensure visible on background */
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

.specialties-wave h2,
.specialties-wave .subtitle {
  color: #fff;
}

/* Pills */
.wave-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffffff33, rgba(255,255,255,0.1));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}

/* Hover effect */
.pill:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Floating motion */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width:600px) {
  .pill { padding: 12px 20px; font-size: 0.9rem; }
}

/* Container to separate subtitle */
.specialties-subtitle-container {
  width: 100%;
  margin: 20px 0 50px 0; /* Top & bottom spacing to separate from heading and pills */
  display: block;
  text-align: center;
}

.specialties-subtitle {
  font-size: 1rem;
  color: #ffffff; /* adjust according to background */
  line-height: 1.6;
  margin: 0; /* Remove default p margin to control spacing via container */
}


/* .specialties-wave::before {
  content: '';
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: linear-gradient(to bottom right, rgba(6,182,212,0.7), rgba(14,165,233,0.7));
  z-index: 0;
} */


/* Footer */
.footer {
  background-color: #0f172a;
  color: #fff;
  font-size: 0.9rem;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer h2.logo {
  font-size: 1.8rem;
  color: #06b6d4;
  margin-bottom: 10px;
}

.footer h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #06b6d4;
}

.footer p, .footer a {
  color: #cbd5e1;
  line-height: 1.6;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  margin-top: 20px;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* spacing below text */
  width: 0%;
  height: 2px;
  background-color: #06b6d4;
  transition: width 0.3s ease-in-out;
}

.footer a:hover {
  color: #06b6d4;
}

.footer a:hover::after {
  width: 100%;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: 10px;
}

.footer-social .social-icons a {
  color: #cbd5e1;
  font-size: 1rem;
  margin-right: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-social .social-icons a:hover {
  color: #06b6d4;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 15px;
  text-align: center;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}


/* Login Form */
.login-card form { display:flex; flex-direction:column; gap:10px; }
.login-card input { padding:10px; border:1px solid #cbd5e1; border-radius:8px; transition: all 0.3s ease; }
.login-card input:focus { outline:none; border-color:#1e40af2a; box-shadow:0 0 5px #1e40af; }
.login-actions { display:flex; flex-direction: column; justify-content:space-between; align-items:left; margin-top:10px; flex-wrap:wrap;  gap: 10px; }
.login-actions a { margin-top:5px; color:#1e40af; font-size:0.9rem; text-decoration: underline; }

.login-actions a:hover {
  color: #1e40af; /* slightly darker shade on hover */
  text-decoration: none; /* optional — removes underline on hover */
  font-weight: 600; /* optional — makes link bold on hover */
}
/* Labels left-aligned */
.login-card label {
  text-align: left;       /* left-align text */
  font-weight: 600;       /* optional: make label bold like Tailwind font-semibold */
  font-size: 0.95rem;     /* optional: slightly smaller than input text */
  color: #1e293b;         /* optional: dark text color */
}
.login-card h3 {
  text-align: center;     /* center-align heading */
  font-size: 1rem;      /* larger font size for heading */
  font-weight: 600;       /* bold font weight */
  color: #0f172b;         /* dark text color */
  margin-bottom: 20px;    /* space below heading */
}

/* Border-only button */
.btn-border {
  padding: 10px 20px;
  border: 1px solid #2c56df;  /* 1px stroke */
  background-color: transparent;
  color: #1e40af;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect: fill background */
.btn-border:hover {
  background-color: #1e40af;
  color: #fff;
}

.login-note {
  font-size: 0.85rem;          /* slightly smaller text */
  color: #64748b;              /* gray color like slate-500 */
  margin-top: 10px;            /* spacing from form elements */
  text-align: left;            /* left-aligned text */
  line-height: 1.5;
}

.login-note a {
  color: #1e40af;              /* link color */
  text-decoration: underline;  /* underline for links */
}

/* Misc */
h2 { font-size:2rem; margin-bottom:30px; color: #0a2ca7ea; text-align: center; }
h3 { font-size:1.25rem; margin-bottom:10px; font-weight: 600;  margin-top: 1rem; line-height: 1.4; color: #0f172b;}
p { line-height:1.6; color: #45556c; }

/* Form container */
/* #login-form {
  max-width: 450px;
  margin: 0 auto;
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
} */

/* Stack inputs vertically */
#login-form .form-inputs {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

/* Input styling */
#login-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 12px; /* adds gap between inputs */
}

#login-form input:focus {
  border-color: #3b82f6; /* blue ring */
  box-shadow: 0 0 0 2px rgba(59,130,246,0.3);
}

/* Button styling */
#login-form button {
  width: 100%;
  padding: 10px;
  background-color: #3b82f6; /* blue */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

#login-form button:hover {
  background-color: #2563eb;
}

/* Optional: small note text */
#login-form .login-note {
  font-size: 0.875rem;
  margin-top: 8px;
}

#demo-form .form-inputs {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

/* Input styling */
#demo-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 12px; /* adds gap between inputs */
}

#demo-form input:focus {
  border-color: #3b82f6; /* blue ring */
  box-shadow: 0 0 0 2px rgba(59,130,246,0.3);
}

/* Button styling */
#demo-form button {
  width: 100%;
  padding: 10px;
  background-color: #3b82f6; /* blue */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

#demo-form button:hover {
  background-color: #2563eb;
}

/* Optional: small note text */
#demo-form .login-note {
  font-size: 0.875rem;
  margin-top: 8px;
}

/* Style textarea like inputs */
#demo-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 12px; /* same gap as inputs */
  resize: vertical; /* allows user to adjust height */
  font-family: inherit; /* match input font */
}

/* Focus effect */
#demo-form textarea:focus {
  border-color: #3b82f6; /* same blue ring as inputs */
  box-shadow: 0 0 0 2px rgba(59,130,246,0.3);
}
.login-card {
  /* max-width: 400px; */
  /* margin: 40px auto; */
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.login-card .login-image {
  width: 100%;
  height: auto;
  border-radius: 8px; /* optional, rounded corners */
}

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #3b82f6;
  color: white;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0; /* hidden by default */
  z-index: 999;
}

#back-to-top:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

/* Style textarea like inputs */
#login-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.2s;
  width: 100%;
  margin-bottom: 12px; /* same gap as inputs */
  resize: vertical; /* allows user to adjust height */
  font-family: inherit; /* match input font */
}

/* Focus effect */
#login-form textarea:focus {
  border-color: #3b82f6; /* same blue ring as inputs */
  box-shadow: 0 0 0 2px rgba(59,130,246,0.3);
}




#chatbotButton {
  position: fixed; right: 24px; bottom: 24px; z-index: 9000;
  width: 68px; height: 68px; border-radius: 50%;
  background: #ffffffd9; backdrop-filter: blur(6px);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease;
}
#chatbotButton:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 34px rgba(0,0,0,.3); }
#chatbotButton img { width: 52px; height: 52px; object-fit: contain; }

/* Popup */
#chatbotPopup { position: fixed; right: 24px; bottom: 102px; z-index: 9001; display: none; }
#chatbotPopup[aria-hidden="false"] { display: block; }
.chat-window {
  width: 360px; max-height: 70vh; background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.35); display: grid; grid-template-rows: auto 1fr auto;
  animation: rise .2s ease;
}
@keyframes rise { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.chat-header {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: linear-gradient(90deg, #c211a0, #1e40af); color: #fff; font-weight: 600;
}
.chat-header img { width: 28px; height: 28px; border-radius: 50%; background: #fff; padding: 3px; }
.chat-header #closeChat {
  margin-left: auto; background: transparent; border: 0; color: #fff; font-size: 20px; cursor: pointer;
}

.chat-body { padding: 14px; background: #f7f9fc; overflow-y: auto; }
.msg { display: flex; margin-bottom: 10px; }
.msg.bot { justify-content: flex-start; }
.msg.user { justify-content: flex-end; }
.bubble {
  max-width: 80%; padding: 10px 12px; border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08); font-size: 14px; line-height: 1.35;
}
.msg.bot .bubble { background: #ffffff; border-top-left-radius: 6px; }
.msg.user .bubble { background: #e6f0ff; border-top-right-radius: 6px; }

.typing {
  width: 48px; height: 26px; background: #fff; border-radius: 13px; display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.08); padding: 0 8px;
}
.typing .dot { width: 6px; height: 6px; margin: 0 2px; background: #9aa7c7; border-radius: 50%; display: inline-block; animation: blink 1.2s infinite; }
.typing .dot:nth-child(2){ animation-delay: .15s; } .typing .dot:nth-child(3){ animation-delay: .3s; }
@keyframes blink { 0%,80%,100%{ opacity: .2; } 40% { opacity: 1; } }

.chat-footer { display: flex; gap: 8px; padding: 10px; background: #fff; border-top: 1px solid #eef2f7; }
.chat-footer input { flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid #dfe6f1; outline: none; }
.chat-footer button { padding: 10px 14px; border: 0; border-radius: 10px; background: #2575fc; color: #fff; font-weight: 600; }

.suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.chip {
  background: #eef4ff; color: #1f4bd8; border: 1px solid #d6e3ff;
  font-size: 12px; padding: 6px 10px; border-radius: 999px; cursor: pointer;
}
.chip:hover { background: #e6efff; }
