: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 */
.legal-ai-section {
  /* background: var(--gradient-primary); */
}

.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;
}

