/* ===============================
   Global layout offset for fixed navbar
   =============================== */
body {
    padding-top: 72px;
}

/* ===============================
   Fixed Navbar
   =============================== */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

/* ===============================
   Navbar Styling
   =============================== */
.navbar-custom {
    background-color: #39a0ca !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-custom .navbar-brand {
    color: #ffffff !important;
    font-weight: bold;
}

.navbar-custom .nav-link {
    color: #ffffff !important;
    opacity: 0.9;
    transition: all 0.25s ease;
}

.navbar-custom .nav-link:hover {
    opacity: 1;
}

.navbar-custom .nav-link.active {
    font-weight: 700;
    opacity: 1;
    border-bottom: 2px solid rgba(255,255,255,0.7);
}





/* ===============================
   Demo button
   =============================== */
.btn-demo {
    background-color: #8B5CF6;
    color: #ffffff;
    font-weight: 600;
    border-radius: 14px;
    padding: 0.75rem 1.5rem;
    border: none;
    box-shadow: 0 10px 25px rgba(139,92,246,0.35);
    transition: all 0.25s ease;
}

.btn-demo:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
}

/* ===============================
   Refined Workflow Visual
   =============================== */

.workflow-visual-wrapper {
  margin: 3rem 0 2.5rem;
}

.workflow-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

/* Card */
.workflow-step {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
  text-align: center;
  width: 190px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

/* Icon */
.workflow-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg,#8B5CF6,#6366F1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
}

/* Title */
.workflow-step h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #0f172a;
  line-height: 1.3;
}

/* Description */
.workflow-step p {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

/* Arrow */
.workflow-arrow {
  width: 20px;
  align-self: center;
  height: 1.5px;
  background: linear-gradient(to right,#8B5CF6,#6366F1);
  position: relative;
}

.workflow-arrow::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #6366F1;
  border-bottom: 1.5px solid #6366F1;
  transform: rotate(-45deg);
}

/* Hover polish (optional but recommended) */
.workflow-step:hover {
  border-color: #8B5CF6;
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

/* Mobile */
@media (max-width: 992px) {
  .workflow-visual {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .workflow-arrow {
    display: none;
  }
}


.section-title-gradient {
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.ui-proof-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.ui-proof-image {
  border-radius: 12px;
  max-width: 100%;
}






<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">

<style>
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
  }

  /* Hero */
  .platform-hero {
    background: linear-gradient(135deg,  #8A2BE2 30%,  #6366F1 40%, #3BA4FF 60%);
    padding: 3rem 2rem 2rem;
    color: white;
    text-align: center;
  }

  .platform-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
  }

  .platform-hero p {
    max-width: 900px;
    margin: 1.75rem auto 2.5rem;
    font-size: 1.125rem;
    opacity: 0.95;
  }

  /* Section */
  .platform-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-label {
    font-size: 1.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: #8B5CF6;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0d2d5c;
    margin: 1rem 0;
  }

  .section-subtitle {
    max-width: 850px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
  }

  /* Cards */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }

  .feature-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2.5rem;
    transition: all .35s ease;
    position: relative;
  }

  .feature-card:hover {
    transform: translateY(-8px);
    border-color: #8B5CF6;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }

  .feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .icon-purple { background: rgba(139,92,246,.12); }
  .icon-blue { background: rgba(99,102,241,.12); }
  .icon-green { background: rgba(16,185,129,.12); }

  .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .75rem;
  }

  .feature-card p {
    font-size: .85rem;
    color: #64748b;
    line-height: 1.7;
  }

  /* Workflow */
  .workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }

  .step-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    padding: .4rem .9rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
    color: white;
  }

  .badge-purple { background: linear-gradient(135deg,#8B5CF6,#7C3AED); }
  .badge-green { background: linear-gradient(135deg,#10B981,#059669); }
  .badge-red { background: linear-gradient(135deg,#EF4444,#DC2626); }

  /* CTA */
  .platform-cta {
    background: linear-gradient(135deg,#D946EF, #8B5CF6, #06B6D4);
    border-top: 1px solid #e5eef7;
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
  }

.text-purple {
  color: #7C3AED;
}




/*Blog style*/
/* Blog Accordion Styling */
#blogAccordion .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    background-color: #f8fbff;
    color: #1e3a8a; /* deep blue */
    border-radius: 12px;
}



#blogAccordion .accordion-button:focus {
    box-shadow: none;
}


#blogAccordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #7c3aed, #2563eb);
    color: #ffffff;
}


/* Smooth scroll globally */
html {
    scroll-behavior: smooth;
}

/* Offset anchor position for fixed navbar */
article {
    scroll-margin-top: 140px;  /* adjust if needed */
}




/* Active topic highlight */
.accordion-button.topic-active {
    background: linear-gradient(90deg, #7c3aed, #2563eb);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}




/* Sigma purple gradient title */
.article-title {
    font-weight: 700;
    background: linear-gradient(90deg, #7c3aed, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}








</style>








