/* Preferred family (others commented in original kept intentional) */
@font-face {
  font-family: 'Basier Square';
  src: url('https://www.casefox.com/assets/font/BasierSquare-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Global Tokens */
:root {
  /* Typography */
  --default-font: 'Basier Square', sans-serif;
  --heading-font: 'Basier Square', sans-serif;
  --nav-font: 'Basier Square', sans-serif;
  --body-font-weight: 400;

  /* Palette */
  --background-color: #F8F9FB;
  --default-color: #0a0a0a;
  --heading-color: #0B3558;
  --accent-color: #0066f2;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Nav palette */
  --nav-color: #212529;
  --nav-hover-color: #0058D3;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0d83fd;

  /* Motion */
  scroll-behavior: smooth;
}

/* Color presets */
.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #0058D3;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0058D3;
  --contrast-color: #ffffff;
}

/* Base */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: var(--body-font-weight);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.header {
  margin-top: 10px;
  color: var(--default-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.header .header-container {
  background-color: rgba(255, 255, 255, 0.807);
  border-radius: 15px;
  border: 2px solid rgba(0, 4, 255, 0.100);
  padding: 5px 25px;
  max-width: 1295px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Scrolled state */
.scrolled .header { background-color: #ffffff00; }
.scrolled .header .logo h1 { color: #2d405f; }
.scrolled .navmenu ul li a,
.scrolled .navmenu ul li a:focus { color: #2d405f; }
.scrolled .navmenu ul li:hover > a,
.scrolled .navmenu .active,
.scrolled .navmenu .active:focus { color: var(--accent-color); }
.scrolled .mobile-nav-toggle { color: #2d405f; }

/* Logo */
.header .logo {
  line-height: 1;
  padding-left: 5px;
  display: flex;
  align-items: center;
}
.header .logo img { max-height: 50px; margin-right: 0; }
.header .logo h1 {
  font-size: 24px; margin: 0; font-weight: 500;
  color: var(--default-color); transition: color 0.3s;
}

/* Buttons */
.header .btn-getstarted,
.header .btn-getstarted:focus { border: none; cursor: pointer; }
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover { color: var(--contrast-color); }

.header .bbtn-getstarted,
.header .bbtn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(to right, #350091 0%, #0a93e4 100%);
  font-size: 14px;
  padding: 10px 20px;
  margin: 0;
  border-radius: 7px;
  transition: 0.3s;
  border: none; cursor: pointer;
  font-family: var(--nav-font);
}
.header .bbtn-getstarted:hover,
.header .bbtn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Desktop Nav */
@media (min-width: 1210px) {
  .navmenu { padding: 0; }
  .navmenu ul {
    margin: 0; padding: 0; display: flex; list-style: none; align-items: center;
  }
  .navmenu li { position: relative; }
  .navmenu a,
  .navmenu a:focus {
    color: #10021c;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navmenu a i,
  .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s; }
  .navmenu li:last-child a { padding-right: 0; }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: #5d07a8a0; }

  /* Dropdown */
  .navmenu .dropdown ul{
    margin:0; padding:10px 0; display:block; position:absolute; visibility:hidden;
    left:14px; top:130%; opacity:0; transition:0.3s; border-radius:4px; z-index:99;
  }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a { padding:10px 20px; font-size:15px; }
  .navmenu .dropdown ul a i { font-size:12px; }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover > ul { opacity:1; top:100%; visibility:visible; }
  .navmenu .dropdown .dropdown ul { top:0; left:-90%; visibility:hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity:1; top:0; left:-100%; visibility:visible; }
}

/* Mobile Nav */
@media (max-width: 1210px) {
  .mobile-nav-toggle {
    color:#5c07a8; font-size:28px; line-height:0; margin-right:10px;
    cursor:pointer; transition:color .3s; display:block;
  }
  .navmenu { padding:0; z-index:9997; }
  .navmenu ul{
    display:none; list-style:none; position:absolute; inset:60px 20px 20px 20px;
    padding:10px 0; margin:0; border-radius:6px; background:var(--nav-mobile-background-color);
    overflow-y:auto; transition:.3s; z-index:9998; box-shadow:0 0 30px rgba(0,0,0,.1);
  }
  .navmenu a,
  .navmenu a:focus{
    color:var(--nav-dropdown-color); padding:10px 20px; font-family:var(--nav-font);
    font-size:17px; font-weight:500; display:flex; align-items:center; justify-content:space-between;
    white-space:nowrap; transition:.3s; text-decoration:none;
  }
  .navmenu a i,
  .navmenu a:focus i{
    font-size:12px; line-height:0; margin-left:5px; width:30px; height:30px; display:flex;
    align-items:center; justify-content:center; border-radius:50%;
    transition:.3s; background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover{ background-color: var(--accent-color); color: var(--contrast-color); }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus{ color: var(--nav-dropdown-hover-color); }
  .navmenu .active i,
  .navmenu .active:focus i{ background-color: var(--accent-color); color: var(--contrast-color); transform: rotate(180deg); }
  .navmenu .dropdown ul{
    position:static; display:none; z-index:99; padding:10px 0; margin:10px 20px;
    background:var(--nav-dropdown-background-color);
    border:1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow:none;
    transition:all .5s ease-in-out;
  }
  .navmenu .dropdown ul ul{ background-color: rgba(33,37,41,0.1); }
  .navmenu .dropdown > .dropdown-active { display:block; background-color: rgba(33,37,41,0.03); }

  .mobile-nav-active { overflow:hidden; }
  .mobile-nav-active .mobile-nav-toggle{
    color:#2d405f; position:absolute; font-size:32px; top:15px; right:15px; margin-right:0; z-index:9999;
  }
  .mobile-nav-active .navmenu{
    position:fixed; overflow:hidden; inset:0; background:rgba(33,37,41,.8); transition:.3s;
  }
  .mobile-nav-active .navmenu > ul { display:block; }

  .scrolled .mobile-nav-toggle { color:#2d405f; }
  .scrolled.mobile-nav-active .mobile-nav-toggle { color:#2d405f; }
}

/* Header responsive tweaks */
@media (max-width: 1200px) {
  .header { padding-top: 0; }
  .header .header-container { margin-left:0; margin-right:0; padding:10px 5px 10px 15px; }
  .header .logo { order:1; }
  .header .btn-getstarted { order:2; margin:0 -10px 0 0; padding:6px 15px; margin-top:5px; }
  .navmenu { order:3; }
}

/* Login link */
.login-btn {
  display:inline-flex; align-items:center; text-decoration:none; color:#093444;
  font-size:16px; margin-right:8px; font-family:sans-serif;
}
.login-btn i { color:#093444; font-size:20px; margin-right:8px; }
.login-btn:hover { text-decoration: underline; }
@media (max-width: 499px) { .login-btn { display: none; } }

/* Utility containers (kept values exact) */
.ccustom-section{
  padding: 0 40px; padding-top:20px; background:#ffffff; border-radius:20px;
  border-top:3px solid rgb(7,7,77); margin-left:-380px; padding-bottom:20px;
}
@media (max-width:768px){
  .ccustom-section{
    padding:0; background-color:#ffffff00; border-radius:20px;
    border-top:3px solid rgba(255,255,255,0); margin-left:0; margin-top:-42px;
  }
}
.custom-section{
  padding:0 40px; padding-top:20px; background:#ffffff; border-radius:20px;
  border-top:3px solid rgb(7,7,77); margin-left:-272px; padding-bottom:15px;
}
.custom-container{
  max-width:1000px; min-width:1200px; margin:auto; display:flex; justify-content:space-between; gap:30px;
}
.custom-column{ width:30%; }
.custom-heading{
  font-weight:600; background:#f3f4f6; color:#374151; padding:8px 12px; border-radius:6px;
  margin-bottom:10px; font-size:16px; margin-left:-5px;
}
.custom-heading.custom-active{ background:#e5e7eb; }
.custom-item{ margin-bottom:-5px; }
.custom-title{
  display:inline-block; font-weight:600; color:#0f172a; text-decoration:none; font-size:15px; margin-left:-20px;
}
.custom-title:hover{ text-decoration: underline; }
.custom-item p{ color:#6b7280; font-size:11px; margin:-4px 0 0; }
.custom-see-all{ color:#6b7280; font-size:14px; text-decoration:none; }
.custom-see-all:hover{ text-decoration: underline; }
.custom-column img{ max-width:300px; height:auto; border-radius:10px; display:block; }
@media (max-width:768px){
  .custom-column img{ display:none; }
  .custom-section{
    padding:0; background:#ffffff00; border-radius:20px; border-top:3px solid rgba(255,255,255,0);
    margin-left:0; margin-top:-42px;
  }
  .custom-title{ margin-top:-25px; }
}
@media (max-width:910px){
  .custom-container{ flex-direction:column; }
  .custom-column{ width:100%; }
  .custom-item{ margin-bottom:5px; padding:10px; max-width:25%; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer-v2{
  background-image:url('https://www.casefox.com/assets/img/footer-bg.png');
  font-size:15px; background-size:cover; color:#111;
}
.footer-v2 h5{ font-weight:600; color:#111; margin-bottom:16px; }
.footer-v2 ul{ list-style:none; padding-left:0; }
.footer-v2 ul li{ margin-bottom:10px; }
.footer-v2 ul li a{ text-decoration:none; color:#111; }
.footer-v2 ul li a:hover,
.footer-v2 .contact-sales{ text-decoration: underline; }
.footer-v2 .footer-top{ padding:60px 0; }
.footer-v2 .footer-bottom{
  background:#fff; padding:20px 0; border-top:1px solid #cfd8e1; font-size:14px;
}
.footer-v2 .social-icons a{
  margin-right:15px; color:#111; font-size:20px; display:inline-flex; align-items:center; gap:6px; text-decoration:none;
}
.footer-v2 .legal-links{ text-align:center; flex-grow:1; margin-top:10px; margin-left:0; }
.footer-v2 .legal-links a{ margin:0 12px; color:#111; text-decoration:none; }
.footer-v2 .app-buttons{ display:flex; gap:10px; }
.footer-v2 .app-buttons img{ height:40px; }
.footer-v2 .arrow{ font-weight:500; margin-left:5px; }
.footer-v2 .emoji{ font-size:16px; }
@media (max-width:768px){
  .footer-v2 .footer-bottom .container{ flex-direction:column; align-items:center; text-align:center; gap:20px; }
  .footer-v2 .legal-links a{ display:inline-block; margin:6px; }
  .footer-v2 .app-buttons{ justify-content:center; }
}

/* =========================================================
   UTILITIES (Scroll top, AOS mobile)
   ========================================================= */

.scroll-top{
  position:fixed; visibility:hidden; opacity:0; right:15px; bottom:-15px; z-index:99999;
  background-color:var(--accent-color); width:44px; height:44px; border-radius:50px; transition:all .4s;
}
.scroll-top i{ font-size:24px; color:var(--contrast-color); line-height:0; }
.scroll-top:hover{ background-color: color-mix(in srgb, var(--accent-color), transparent 20%); color: var(--contrast-color); }
.scroll-top.active{ visibility:visible; opacity:1; bottom:15px; }
@media screen and (max-width:768px){ [data-aos-delay]{ transition-delay:0 !important; } }

/* =========================================================
   PAGE TITLES
   ========================================================= */

.page-title{
  color:var(--default-color); background-color:var(--background-color);
  padding:170px 0 80px; text-align:center; position:relative;
}
.page-title h1{ font-size:42px; font-weight:700; margin-bottom:10px; }
.page-title .breadcrumbs ol{
  display:flex; flex-wrap:wrap; list-style:none; justify-content:center; padding:0; margin:0; font-size:16px; font-weight:400;
}
.page-title .breadcrumbs ol li+li{ padding-left:10px; }
.page-title .breadcrumbs ol li+li::before{
  content:"/"; display:inline-block; padding-right:10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* =========================================================
   SECTIONS & TITLES
   ========================================================= */

section,.section{
  color:var(--default-color); background-color:var(--background-color);
  padding:60px 0; scroll-margin-top:90px; overflow:clip;
}
@media (max-width:1199px){ section,.section{ scroll-margin-top:66px; } }

.section-title{
  text-align:center; padding-bottom:60px; position:relative; margin-top:-30px;
}
.section-title h2{
  font-size:36px; font-weight:700; margin-bottom:20px; padding-bottom:20px; color:rgb(11,53,88); position:relative;
}
.section-title h2:after{
  content:""; position:absolute; display:block; width:50px; height:3px; background:var(--accent-color);
  left:0; right:0; bottom:0; margin:auto;
}
.section-title p{ margin-bottom:0; }


/* =========================================================
   NDA STRIP
   ========================================================= */
.nda-section{ background-color:#ffffff; }
.nda-wrapper{
  background:url('https://www.casefox.com/assets/img/background-1.png') no-repeat center center; background-size:cover;
  border-radius: 15px 15px 60px 15px; width:100%;
}
.nda-card{ background-color:#1b1e4aad; border-radius:15px 15px 15px 15px; color:#ffffff; }
.nda-card h5{ color:#fff; }
.nda-card p{ color:#ccc; }
.nda-section .btn-primary{ background:linear-gradient(90deg,#011446,#3171e6); border:none; }
.nda-section .btn-primary:hover{ background:linear-gradient(90deg,#011546c8,#3170e6c0); }

/* =========================================================
   ========================================================= */

.hero-section {
  position: relative;
  padding: 180px 20px 10px;
  background: #f0f4fd url('/assets/img/Mas-group.svg') no-repeat;
  background-size: cover;
  text-align: left;
  overflow: hidden;
}
.hero-container {
  max-width: 1320px;
  margin: 0 auto;
}

.badge-top {
  display: inline-block;
  padding: 6px 12px;
  background: #bcc5e543;
  color: #3d5afe;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
}

.greadent-animation {
  background: linear-gradient(
    90deg,
    #00c6ff,
    #0072ff,
    #8e2de2,
    #4a00e0,
    #00c6ff
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
  display: inline-block;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Avatar stacking */
.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgb(0, 0, 0);
  margin-left: 0px;
  object-fit: cover;
}

/* Fixed rating at bottom-right */
.rating-fixed {
  z-index: 2;
}




.cta-input {
  height: 52px;
  font-size: 16px;
  border-radius: 8px 0 0 8px !important;
  border-right: none;
}

.cta-btn {
  background: linear-gradient(90deg, #01147e, #556eff);
  color: #ffffff;
  border: 1px solid #402080;
  padding: 0 24px;
  font-weight: 600;
  font-size: 16px;
  height: 52px;
  border-radius: 0px 8px 8px 0px !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #798aeb, #f8f9ff);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.cta-btn:hover::before {
  transform: translateX(0);
}

.cta-btn:hover {
  color: #402080;
  border-color: #611ed4;
}

.cta-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #ced4da;
}

  /* Add these styles to your existing CSS */
  .hero-section {
    position: relative;
    padding-bottom: 0px;
  }
  
  .dashboard-image {
    transition: transform 0.3s ease;
    margin-top: 15px;
  }
  
  .dashboard-image:hover {
    transform: translateY(-5px);
  }
  
  /* Ensure the hero content stays properly spaced */
  .hero-container {
    padding-bottom: 10px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .dashboard-image {
      margin-top: 50px;
    }
    .hero-container {
      padding-bottom: 80px;
    }
  }

/* Existing styles remain unchanged above this line */

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-section h1 {
    min-width: auto;
    font-size: 2.5rem;
  }
  .rating-fixed {
    top: auto;
    bottom: 20px;
    right: 20px;
    position: relative;
    margin-top: 30px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 120px 20px 60px;
    background-position: center;
  }

  .hero-section h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    min-width: auto;
  }

  .lead {
    font-size: 1rem;
  }

  .badge-top {
    font-size: 12px;
    padding: 5px 10px;
    margin-top: 100px;

  }

  .cta-note {
    font-size: 13px;
  }

  .rating-fixed {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 24px;
  }

  .avatar-stack img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-section h1 {
    font-size: 2rem;
    text-align: left;
  }

  .hero-container {
    padding-bottom: 60px;
  }

  .cta-box {
    width: 100%;
  }

  .dashboard-image {
    margin-top: -30px;
    border-radius: 18px;
    margin-bottom: -50px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 80px 15px 50px;
  }

  .hero-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .lead {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 0 16px;
    font-size: 14px;
  }

  .cta-input {
    font-size: 14px;
  }

  .cta-note {
    font-size: 12px;
    margin-bottom: 50px;

  }

  .avatar-stack img {
    width: 34px;
    height: 34px;
  }

  .rating-fixed div {
    font-size: 14px !important;
  }
}

/*--------------------------------------------------------------
# Hero Section end
--------------------------------------------------------------*/


.gradient-textt {
  font-weight: bold;
  background-image: linear-gradient(to right, #7991f6 0%,#2e3e8e 50%, #132a9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}



/* ------------------------------------------------------------------------- */


.text-succes {
  margin-top: 50px;
    --bs-text-opacity: 1;
    color: #ff620c;
}
.scroll-wrapper {
    margin-top: 30px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, rgb(0, 0, 0) 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .scroll-content {
    display: inline-flex;
    gap: 0; /* No gap between items */
    animation: scroll-left 20s linear infinite;
  }

  .scroll-content.reverse {
    animation: scroll-right 25s linear infinite;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .scroll-badge {
    display: inline-block;
    white-space: nowrap;
    padding: 13px 34px;
    margin: 0; /* No margin */
    border-radius: 9999px;
    background-color: #ffffff;
    color: #333;
    font-weight: 500;
    font-family: sans-serif;
    font-size: 22px;
  }

  
/* ------------------------------------------------------------------------- */





































/* ---------------------------------------------------------------*/

  .horizontal-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .horizontal-scroll::-webkit-scrollbar {
    display: none;
  }

  .custom-card {
    width: 300px;
    min-width: 300px;
    background: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 450px;
    position: relative;
    overflow: hidden;
  }

  .custom-card:hover {
    border-color: #001bb165;
    box-shadow: 0 4px 16px rgba(0, 44, 177, 0.3);
  }

  .card-footer {
    margin-top: auto;
    overflow: hidden;
  }

  .bottom-image {
    transition: transform 0.3s ease;
    width: 100%;
    display: block;
  }

  .learn-more {
    position: absolute;
    top: -30px;
    left: 0;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
    margin-left: 20px;
  }

  .custom-card:hover .bottom-image {
    transform: translateY(30px);
  }

  .custom-card:hover .learn-more {
    opacity: 1;
    top: 0;
  }
  /* New styles for navigation buttons */
  .scroll-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001bb1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .scroll-button:hover {
    background: #001bb1;
    color: white;
    transform: scale(1.1);
  }

  .scroll-button:active {
    transform: scale(0.95);
  }

   /* Dot indicator styles */
  .dot-container {
    height: 12px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  

  .dot:hover {
    background-color: #001bb180;
  }

/* ---------------------------------------------------------------*/
.gradient-text {
    background: linear-gradient(90deg, #3105c5, #010756);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .text-purple {
    color: #7b4db7;
  }
  
  .bg-purple {
    background-color: #5f4db7;
  }
  
  .bg-purple-light {
    background-color: #f8f1f9;
  }
  
  .badgea.bg-purple {
    background-color: rgba(77, 86, 183, 0.064) !important;
  }
  
  @media (max-width: 992px) {
    .display-5 {
      font-size: 2rem;
    }
    
    .fs-5 {
      font-size: 1rem !important;
    }
    
    .p-lg-5 {
      padding: 1.5rem !important;
    }
  }
  
  @media (max-width: 768px) {
    .display-5 {
      font-size: 1.75rem;
    }
    
    .lead {
      font-size: 1rem;
    }
  }



  /* ---------------------------------------------------------------*/


  
  

/* ---------------------------------------------------------------*/
.performance-title {
    margin-top: 50px;
    color: #ff620c;
  }

  .performance-scroll-wrapper {
    margin-top: 30px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .performance-scroll-track {
    display: inline-flex;
    gap: 0;
    animation: performance-scroll-left 20s linear infinite;
  }

  .performance-scroll-track.reverse {
    animation: performance-scroll-right 20s linear infinite;
  }

  @keyframes performance-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes performance-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .performance-badge-track {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 25px;
    background: #e9e8e841;
    border-radius: 999px;
    color: #000;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .performance-badge img {
    width: 35px;
    height: 35px;
    /* border-radius: 50%; */
    object-fit: cover;
    padding: 5px;
  }
  .performance-badge p{
    font-size: 20px;  
    margin-bottom: 0px;
  }

  .performance-gradient-text {
    background: linear-gradient(90deg, #0744c7, #0f8bdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  @media (max-width: 768px) {
    .performance-badge img {
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
    object-fit: cover;
    padding: 5px;
  }
   .performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
 
    
  }
  }


/* ---------------------------------------------------------------*/





/* ---------------------------------------------------------------*/
 
.section-bg-image{
  background: linear-gradient(to bottom,#f3f7fe,#ffffff);
  background-size:cover; background-position:center; background-repeat:no-repeat;
  min-height:300px; color:#fff; position:relative; padding:30px 0; z-index:1;
  margin-bottom: -50px;
}
.feature-card{
  margin: 0px; position:relative; background:#fff; padding:30px 30px 20px; border-radius:15px;
  box-shadow:0 8px 30px rgba(0,0,0,.02); height:110%; overflow:visible; text-align:left; 
}
.feature-card:hover{ box-shadow:0 8px 20px rgba(111, 1, 208, 0.204); }
.icon-top-right{
  position:absolute; top: 35px; left: 20px; width:60px; height:60px; background:#ffffff00; border-radius:10%;
  border:1px solid #ffffff00; display:flex; align-items:center; justify-content:center; ;
}
.icon-top-right img{ width:46px; height:46px; }
.feature-card h5{ font-size:28px; font-weight:600; margin:10px 0 20px; color:#111; }
.feature-card p{ font-size:16px; color:#322f2f; line-height:1.6; margin-left:0; }
@media (max-width:767px){ .feature-card{ padding:35px 20px 0px; } 
.icon-top-right{
  position:absolute; top: 35px; left: 20px; width:60px; height:60px; background:#ffffff00; border-radius:10%;
  border:1px solid #ffffff00; display:flex; align-items:center; justify-content:center; ;
}}



/* ---------------------------------------------------------------*/
/* =========================================================
   REVIEWS / SOCIAL PROOF
   ========================================================= */

.reviews-section{
  background: radial-gradient(1200px 600px at 50% -10%, #c0d9fb 0%, #f8f9fb 70%);
  position:relative; overflow:hidden;
}
.trusted-pill{
  background: rgba(43,92,255,0.1); color:#2b5cff; letter-spacing:.08em; font-size:.75rem; backdrop-filter: blur(4px);
  border:1px solid rgba(43,92,255,0.2);
}
.reviews-title{
  max-width:900px; background:linear-gradient(120deg,#1a202c,#2d3748);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; line-height:1.2;
}
.brand-accent{
  background:linear-gradient(90deg,#2b5cff,#4b73ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; position:relative;
}
.brand-accent::after{
  content:''; position:absolute; bottom:-2px; left:0; width:100%; height:2px; background:linear-gradient(90deg,#2b5cff,#4b73ff); border-radius:2px;
}

/* IMPORTANT: Scope avatar stack in reviews to avoid global override */
.reviews-section .avatar-stack{ display:flex; align-items:center; }
.reviews-section .avatar-stack img{
  width:44px; height:44px; border-radius:50%; border:2px solid #fff; object-fit:cover; margin-left:-12px;
  transition:transform .3s ease; box-shadow:0 4px 6px rgba(0,0,0,.1);
}
.reviews-section .avatar-stack img:hover{ transform:translateY(-2px); z-index:2; }
.reviews-section .avatar-stack img:first-child{ margin-left:0; }

/* Cards */
.review-card{
  background:#fff; border:1px solid rgba(43,92,255,0.1); border-radius:1.25rem; padding:1.75rem;
  box-shadow:0 10px 25px rgba(17,24,39,.08); transition:all .3s ease; position:relative; overflow:hidden;
  animation: fadeInUp .6s ease forwards;
}
.review-card::before{
  content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:linear-gradient(90deg,#2b5cff,#4b73ff); opacity:0; transition:opacity .3s ease;
}
.review-card:hover{ transform:translateY(-5px); box-shadow:0 20px 40px rgba(17,24,39,.12); }
.review-card:hover::before{ opacity:1; }
.review-card .g2-logo{ width:40px; height:24px; object-fit:contain; opacity:.7; }
.review-text{ color:#1f2937; line-height:1.7; margin:0; font-size:1.05rem; }
.review-card .avatar{ width:50px; height:50px; object-fit:cover; box-shadow:0 4px 8px rgba(0,0,0,.1); }

.reviews-section .btn-primary{
  background:linear-gradient(90deg,#2b5cff,#4b73ff); border:none; border-radius:.8rem; transition:all .3s ease;
}
.reviews-section .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 15px rgba(43,92,255,.3); }
.reviews-section .btn-outline-primary{
  border-radius:.8rem; border-width:2px; transition:all .3s ease;
}
.reviews-section .btn-outline-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 15px rgba(0,0,0,.1); }

.trusted-logo{ height:30px; opacity:.7; transition:all .3s ease; filter:grayscale(100%); }
.trusted-logo:hover{ opacity:1; filter:grayscale(0%); }

@media (max-width:768px){
  .reviews-title{ font-size:2.2rem; }
  .review-card{ padding:1.5rem; }
  .reviews-section .avatar-stack img{ width:38px; height:38px; }
}
@media (max-width:576px){
  .reviews-title{ font-size:1.8rem; }
  .reviews-section .avatar-stack img{ width:34px; height:34px; }
  .trusted-logo{ height:22px; }
}
@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}
.review-card:nth-child(2){ animation-delay:.2s; }
.review-card:nth-child(3){ animation-delay:.4s; }


    .faq .faq-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.family-law-section {
  background-color: #ffffff;
}
.icon-circle-blue {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #11005f, #4b30ffea);
  display: flex;
  align-items: center;
  justify-content: center;
}


.custom-link {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

.custom-link:hover {
  color: #6c47ff;
  text-decoration: underline;
}



  /* Blue color theme */
.text-dark-blue {
  color: #1c2049;
}

.bg-light-blue {
  background-color: #e6f0ff;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* For image in right column */
.ai-marketing-section img {
  max-height: 630px; /* Adjust height as needed */
  height: auto;
  float: right;
}
@media (max-width: 768px) {
  .ai-marketing-section img {
    max-height: 320px;
    float: none;
    margin: 0 auto;
  }
}



   /* Base Styles */
  .feature-toggle-section {
    line-height: 1.5;
    margin-top: 50px;
  }
  
  .container {
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* Toggle Buttons */
  .toggle-button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    margin: 5px;
    white-space: nowrap;
  }

  .toggle-button:hover {
    background-color: #f0f0f0;
  }

  .toggle-button.active {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
  }

  /* Feature Content Box */
  .feature-content-box {
    background: #ffffff00;
    padding: 40px;
  }

  /* Tab Layout */
  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }

  .text-block {
    flex: 1 1 50%;
    max-width: 45%;
    order: 1;
  }
  .text-block {
  flex: 1 1 50%;
  padding-right: 40px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.text-block h2 {
  margin-top: -10px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-block p {
  font-size: 28px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

.text-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.text-block ul li {
  position: relative;
  padding-left: 28px;
  font-size: 21px;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.5;
}

.text-block ul li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #006aff;
  border-radius: 50%;
  mask: url('https://cdn-icons-png.flaticon.com/512/1828/1828640.png') no-repeat center;
  mask-size: cover;
  -webkit-mask: url('https://cdn-icons-png.flaticon.com/512/1828/1828640.png') no-repeat center;
  -webkit-mask-size: cover;
}

  .image-block {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
    text-align: center;
  }

  /* Images */
  .tab-pane img {
    max-width: 100%;
    height: auto;
    margin-right: -149px;
    margin-top: -50px;
    margin-bottom: -40px;
    border-radius: 26px 0px 26px 0px;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .feature-content-box {
      padding: 25px;
      margin: -20px;

    }
    .tab-pane img {
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
    
    .tab-layout {
      flex-direction: column;
      gap: 30px;
    }
    
    .text-block, .image-block {
      flex: 1 1 100%;
      min-width: 100%;
    }
    
    .text-block {
      order: 2;
    }
    
    .image-block {
      order: 1;
    }
    
    .toggle-button-row {
      gap: 8px;
    }
    
    .toggle-button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .feature-toggle-section {
      padding: 40px 15px;
    }
    
    
    .feature-content-box {
      padding: 20px;
      margin: -10px;
    }
  }

  @media (max-width: 1000px) {
  .text-block {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .text-block h2 {
    margin-top: 0px;
    font-size: 24px;
  }

  .text-block p {
    font-size: 16px;
  }

  .text-block ul li {
    font-size: 15px;
  }
}

.btn-orange {
  background: linear-gradient(90deg, #2d0e9f, #00aaff); /* Gradient from purple to blue */
  color: #ffffff;
  font-weight: 500;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0044f0;
  border: 1px solid #0044f0;
}




  @media (max-width: 768px) {
    .content-row {
      flex-direction: column !important;
      align-items: center !important;
      gap: 40px !important;
    }
    
    .trusted-section {
      width: 100% !important;
      margin-right: 0 !important;
      margin-bottom: 20px !important;
      text-align: center !important;
    }
    
    .trusted-section > div {
      justify-content: center !important;
    }
    
    .trusted-section img {
      margin-top: 0 !important;
    }
    
    .logos-section {
      width: 100% !important;
      justify-content: center !important;
      gap: 20px 30px !important;
    }
    
    .logos-section img {
      max-height: 40px !important;
      max-width: 100px !important;
    }
  }
/* ---------------------------------------------------------------*/
