:root {
  /* Brand Colors */
  --primary-color: #135ab4;        /* Bootstrap primary blue */
  --secondary-color: #ffffff;      /* Light background */
  --accent-color: #28a745;         /* Green for FREE badge */
  --text-color: #000000;           /* Default text */
  --border-color: #dee2e6;         /* Subtle border (Bootstrap light gray) */
  --gradient-primary: linear-gradient(90deg,#0A2647,#0E4073,#095eb3); 
 /* 

 */


  /* Typography */
  --font-primary: "Lora", serif;
  --font-secondary: "Marcellus", serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

    --radius-lg: 1rem;
  --text-color: #000000;
}


/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color); /* use your defined CSS variable */
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

/* Firefox */
* {
  scrollbar-width: thin; /* Options: auto | thin | none */
  scrollbar-color: var(--primary-color) transparent;
}



body{
    font-family: var(--font-primary);
}
p{
  font-family: var(--font-secondary);
}




/* General navbar style */
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  
}
.navbar {
  position: relative;
  top: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5); /* semi-transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1030;
}

.navbar-blur {
  background-color: rgba(255, 255, 255, 0.5); /* semi-transparent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1030;
}


/* Logo text */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.navbar-brand img {
  height: 32px;
}

/* Navigation links */
.nav-link {
  font-size: 1rem;
  color: #000;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color);
}

/* Sign In button */
.btn-outline-dark {
  border-width: 2px;
  padding: 6px 16px;
  font-weight: 500;
  border-radius: 10px;
}

/* Book Demo button */
.btn-primary {
  padding: 6px 20px;
  background-color: var(--primary-color);
  font-weight: 600;
  border-radius: 10px;
}
.all-features-div{
  display: flex
;
    /* align-items: center; */
    justify-content: flex-end;
}
.all-features-div a{
  text-decoration: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: .5rem 2rem;
    border-radius: 2rem;
    transition: .2s ease-in-out;
}
.all-features-div a:hover{
  background: var(--primary-color);
  color: white;
}
.sub-menu-a{
  text-decoration: none;
  color: #000;
}
/* FREE Badge */
.badge {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Dropdown item font weight */
.dropdown-item {
  font-weight: 500;
}


/* Hero Section Styling */
.hero-section {
  /* background: linear-gradient(to bottom right, #2563eb, #1d4ed8); blue gradient */
  background: url(/Images/hero-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 80vh;
}

/* Floating image effect */
.floating-ui {
  max-width: 100%;
  border-radius: 10px;
  animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive spacing for mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

  .hero-section .btn {
    width: 100%;
  }
}


/* ===============================
   Security & Compliance Section
   =============================== */

.security-section {
  background-color: #f8f9fa; /* light gray background */
}

.security-card {
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  border-radius: var(--radius-lg);
  background-color: #ffffff;
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.security-card img {
  background-color: #e7f2ff;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
}

.security-card h6 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.security-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.svg-icon{
       padding: 10px 10px;
    margin-bottom: 1rem;
    width: 52px;
    height: 52px;
    background: #427bc329;
    border-radius: 30px;
}
.check-svg-icon{
          width: 17px;
    height: 17px;
    margin-left: 10px;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .security-card {
    padding: 1.5rem 1rem;
  }
}




.legal-ai-section p{
    font-family: var(--font-secondary);
    color: white !important;
}

.legal-ai-section h2{
  color: white;
}
.Ai-legal-badge-text{
    font-family: var(--font-secondary);
    color: white;
}


.legal-ai-section .btn-outline-primary {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #000;
  border: 2px solid transparent;
  border-radius: 8px;
  background-image: linear-gradient(white, white), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}

.legal-ai-section .btn-outline-primary:hover {
  background-image: var(--gradient-primary);
  color: #fff;
}

/* Optional custom image sizing */
.ai-image {
  max-width: 90%;
  height: auto;
}



/* Demo Section Styles */


.blue-banner {
  /* background-color: var(--primary-color); */
  color: white;
  background: var(--gradient-primary);
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.demo-btn{
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid transparent;
  border-radius: 8px;
  background-image: linear-gradient(white, white), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}

.demo-btn:hover {
  background-image: var(--gradient-primary);
  color: #fff;
}
/* .demo-btn{
  background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);

}
.demo-btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transition: all 0.3s ease;
} */

.demo-image-wrapper img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* Highlight selected demo button */
.demo-btn.active-demo-btn {
  background: var(--gradient-primary) !important;
  color: var(--secondary-color) !important;
  /* border: 1px solid var(--primary-color); */
}

#demo-preview {
  transition: opacity 0.3s ease;
}

.live-demo-btn{
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid transparent;
  border-radius: 8px;
  background-image: linear-gradient(white, white), var(--gradient-primary);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.5s ease;
  cursor: pointer;
}

.live-demo-btn:hover {
  background-image: var(--gradient-primary);
  color: #fff;
  /* border: none; */
}

/* 
.live-demo-btn{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
}
.live-demo-btn:hover{
  background-color: transparent;
  color: var(--primary-color);
} */


.billing-section {
  background-color: #ffffff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
}

.res-img{
  height: 60vh;
}

.carousel-item .col-md-4 h5{
  text-align: left;
}

.carousel-item .col-md-4 p{
  text-align: left;
}


.carousel-control-prev{
  left: -10rem;
}
.carousel-control-next{
  right: -7rem;
}

.feature-box svg{
  margin-right: 1rem;
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.feature-box h5{
  color: var(--primary-color);
}
.feature-box{
 text-align: left;
    border: 2px solid #135ab4;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 3px 3px 0px 0px #135ab4;
}


.why-choose-section {
      background-color: #fdfdfd;
    margin: 2rem 0rem;
}

.image-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.list-unstyled svg{
      margin-right: .5rem;
      color: var(--primary-color);
}

.image-stack {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 1rem;
}

.image-stack::before {
  content: "";
    position: absolute;
    top: -4px;
    left: 11px;
    width: 100%;
    height: 100%;
    background-color: #d6ebff;
    border-radius: 1rem;
    z-index: -1;
    transform: rotate(4deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.main-img {
  border-radius: 1rem;
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}



/* CTA Section */
.cta-banner {
  background: url('/Images/cta-bg.png') center center / cover no-repeat;
  background-color: #0d6efd;
  min-height: 40vh;
  position: relative;
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.cta-banner .btn {
  min-width: 180px;
  transition: all 0.3s ease;
}

.cta-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: #0d6efd;
}


.site-footer {
  background-color: #0a2647; /* deep navy */
}

.site-footer a:hover {
  color: #ffffff !important;
}


.pricing-card .bi-check-circle-fill::before {
    content: "\f26a";
    color: #0c79b4;
}

.pricing-card .bi-x-circle::before {
    content: "\f623";
    color: #db0000;
}


/* Ensure the dropdown stays a small box instead of full width */
.mega-menu {
  min-width: 900px;
  max-width: 950px;
  left: 26% !important;
  right: 0;
}

/* Tweak spacing for visual clarity */
.mega-menu ul li {
  margin-bottom: 0.75rem;
}

.mega-menu h6 {
  color: #003366;
}

/* Optional: control width on smaller screens */
@media (max-width: 991px) {
  .mega-menu {
    min-width: 100%;
  }
}

/* #contact {
  margin-top: 0 !important;
}

.align-items-start .col-lg-6{
  margin-top: 0;
} */


#demoCarousel .carousel-item img {
  width: 100%;
  height: 550px;            
  object-fit: contain;        
  background-color: inherit;     
  border-radius: 10px;
}

/* #demoCarousel .carousel-item img {
  width: 100%;
  height: 550px;
  object-fit: cover;          
  border-radius: 10px;
} */

#demoCarousel .carousel-control-prev,
#demoCarousel .carousel-control-next {
  width: 5%;                
  opacity: 0.9;
  transition: all 0.3s ease;
}

#demoCarousel .carousel-control-prev {
  left: 10px;              
}

#demoCarousel .carousel-control-next {
  right: 10px;               
}

#demoCarousel .carousel-control-prev:hover,
#demoCarousel .carousel-control-next:hover {
  opacity: 1;
  transform: scale(1.05);
}

#demoCarousel .carousel-control-prev-icon,
#demoCarousel .carousel-control-next-icon {
  background-color: rgba(255, 255, 255);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}
#demoCarousel .carousel-indicators [data-bs-target] {
  background-color: #ffffff;
  opacity: 0.6;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0.1px solid #0a2647;
  margin: 5px;
  transition: all 0.3s ease;
}
#demoCarousel .carousel-indicators .active {
  opacity: 1;
  background-color: #0a2647;
}

.demo-vid-btn{
    color: var(--primary-color);
    border-radius: 2rem;
    padding: 0.5rem 2rem;
}
.demo-vid-btn:hover{
  color: white;
  border: 1px solid white;
  background-color: transparent;
}

:root { --brand:#135ab4; }

    /* --- Carousel wrapper + arrows --- */
    .card-carousel-wrap{
      position: relative;
      padding: 6px 56px;
    }
    .nav-circle{
      position:absolute; top:50%; transform:translateY(-50%);
      width:46px; height:46px; border-radius:999px;
      background: rgba(255,255,255,0.96);
      border: 1px solid rgba(19,90,180,.28);
      display:grid; place-items:center;
      color: var(--brand);
      box-shadow: 0 10px 20px rgba(16,24,40,.10);
      z-index: 5;
      cursor: pointer;
      user-select: none;
    }
    .nav-left{ left: 0; }
    .nav-right{ right: 0; }
    .nav-circle:hover{ box-shadow: 0 14px 26px rgba(19,90,180,.18); }

    /* --- Scroll carousel (moves 1 card at a time) --- */
    .card-carousel{
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 8px 2px;
      scrollbar-width: none;          /* Firefox */
      -ms-overflow-style: none;       /* IE/Edge */
      scroll-snap-type: x mandatory;  /* nice snapping */
    }
    .card-carousel::-webkit-scrollbar{ display:none; }

    /* 1 card per view on mobile, 2 on tablet, 3 on desktop */
    .carousel-card{
      scroll-snap-align: start;
      flex: 0 0 100%;
      min-width: 0;
    }
    @media (min-width: 768px){
      .carousel-card{ flex-basis: calc(50% - 9px); }
    }
    @media (min-width: 992px){
      .carousel-card{ flex-basis: calc((100% / 3) - 12px); }
    }

    /* --- Card styling like your reference --- */
    .feature-card{
      background:#fff;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(31,41,55,.10);
      box-shadow: 0 10px 30px rgba(16,24,40,.06);
      height: 100%;
      display:flex;
      flex-direction: column;
    }
    .card-top{ padding: 18px 18px 10px; }

    .pill{
      display:inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      background: var(--brand);
      color: #fff;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: .5px;
      text-transform: uppercase;
    }
    .title{
      margin-top: 10px;
      font-size: 24px;
      line-height: 1.15;
      font-weight: 750;
      color: #1e3a8a;
      word-break: break-word;
    }

    .thumb{
      position: relative;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, rgba(19,90,180,.14), rgba(19,90,180,.03));
      display:grid;
      place-items:center;
      border-top: 1px solid rgba(31,41,55,.06);
      border-bottom: 1px solid rgba(31,41,55,.06);
    }
    .thumb .thumb-text{
      text-align:center;
      padding: 18px;
      color: rgba(31,41,55,.75);
      font-weight: 600;
    }

    .play-overlay{
      position:absolute; inset:0;
      display:grid; place-items:center;
      background: radial-gradient(circle at center, rgba(0,0,0,.15), rgba(0,0,0,0));
    }
    .play-circle{
      width: 66px; height: 66px;
      border-radius: 999px;
      background: rgba(0,0,0,.28);
      border: 2px solid rgba(255,255,255,.55);
      display:grid; place-items:center;
      backdrop-filter: blur(2px);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .play-circle:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(0,0,0,.18);
    }
    .triangle{
      width:0; height:0;
      border-left: 18px solid #fff;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      margin-left: 4px;
    }

    .card-body{
      padding: 14px 18px 18px;
      display:flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .label{
      font-size: 12px;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: #6b7280;
    }
    .highlights{
      list-style:none;
      padding:0;
      margin: 6px 0 0;
      display:grid;
      gap: 10px;
      color: #334155;
    }
    .highlights li{
      display:flex;
      gap: 10px;
      align-items: flex-start;
      line-height: 1.25;
    }
    .highlights i{
      color: var(--brand);
      font-size: 18px;
      line-height: 1;
      margin-top: 2px;
    }

    .btn-brand{
      --bs-btn-bg: var(--brand);
      --bs-btn-border-color: var(--brand);
      --bs-btn-hover-bg: #0f4c97;
      --bs-btn-hover-border-color: #0f4c97;
      --bs-btn-active-bg: #0d4284;
      --bs-btn-active-border-color: #0d4284;
      color: #fff;
    }

    /* Modal video */
    .video-modal .modal-content{
      border-radius: 18px;
      overflow: hidden;
    }
    .video-wrap{ background:#0b1220; }
    video{ width:100%; height:auto; display:block; background:#000; }

    .thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* fills without stretching */
  display: block;
}

.list-unstyled li a{
  color: white !important;
}

.signup-text{
  color: white !important;
}