* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --secondary: #8b5cf6;
  --accent: #ec4899;
  --dark: #000000;
  --light: #fff;
  --text: #1e293b;
  --text-light: #64748b;
  --success: #10b981;
  --card-bg: #DFE7F2;
  --gradient: linear-gradient(89.65deg, #7890F5 0.3%, #3D56D8 29.72%, #2D44BB 85.42%);
  --gardient1: linear-gradient(89.65deg, rgba(120, 144, 245, 0.23) 0.3%, rgba(61, 86, 216, 0.23) 29.72%, rgba(45, 68, 187, 0.23) 85.42%);


}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Aeonik, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

.fs-12{
  font-size: 12px !important;
}

.fs-16{
  font-size: 16px !important;
}

.txt-dark {
  color: var(--dark) !important;
}

.txt-light {
  color: var(--light) !important;
}

.text-primary-gradient {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: linear-gradient(360deg, #858897 7.78%, #FFFFFF 65.56%);
  /* background-size: 100% 100%; */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* new styles*/
.home {
  background: url("/assets/img/homeBanner.svg") no-repeat center center/cover !important;
  width: 100%;
}

/* Navbar */
nav.navbar {
  background: url("/assets/img/homeBanner.svg") no-repeat center center/cover !important;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 2rem;
}

.navbar-brand {
  font-weight: 700;
  color: #8ab4ff;
  font-size: 1.4rem;
}

.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 0.8rem;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #8ab4ff !important;
}

/* Buttons */
.btn-demo {
  background-color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  color: #333 !important;
  transition: all 0.3s ease !important;
  font-weight: 500 !important;
}

.btn-demo:hover {
  background: var(--gradient);
  color: #fff !important;
  box-shadow: 0 0 25px rgba(93, 75, 255, 0.8) !important;
  transition: all 0.5s ease-in-out !important;
}

.btn-demo i {
  background: var(--gradient);
  color: #fff !important;
  padding: 2px 4px;
}

.btn-demo:hover i {
  background: #fff;
  color: #7b61ff !important;
}

.btn-trial {
  background: var(--gradient);
  border: none !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  color: #fff !important;
  font-weight: 500 !important;
  /* box-shadow: 0 0 15px rgba(93, 75, 255, 0.6) !important; */
}

.btn-trial:hover {
  background: #ffffff !important;
  color: #333 !important;
  transition: all 0.5s ease-in-out !important;
}

.btn-trial i {
  background: #fff;
  color: #7b61ff !important;
  padding: 2px 4px;
}

.btn-trial:hover i {
  background: var(--gradient);
  color: #fff !important;
}

/* Hero Section */

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  max-width: 720px;
  margin: 1rem auto 0rem;
  font-size: 1.05rem;
  color: #d8def9;
}

/* Document Flow Layout */
.doc-flow .trail-button {
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Features Overview */
.features-overview {
  background: url(/assets/img/sectionBg.png) no-repeat center center/cover;
}

.mini-card {
  border-radius: 21px !important;
  box-shadow: 0px 4px 7.8px 0px #0000001C;
  border: 1px solid #FFFFFF !important;
  background: #FFFFFFA8 !important;
}

.section-title p {
  max-width: 500px;
  margin: 0 auto;
}

.feature .card {
  box-shadow: 0px 2px 9.7px 0px #D0DEE6 !important;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
  font-weight: normal;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
  background: var(--gradient);
  padding: 1px 5.5px;
  border-radius: 50%;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 2px;
}

.feature:hover {
  .feature-list li:before {
    opacity: 1;
    transition: all 0.3s ease !important;
  }

  .card {
    background: url(/assets/img/hoverBg.svg) no-repeat center center/cover;
    z-index: 999;
    overflow: hidden;
    background-color: unset !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
  }

  .card-title {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease !important;
  }
}

@media (max-width: 464.98px) {
  .doc-flow .trail-button {
    bottom: -60px;
  }
}

/* Industries Section */
.industries-section {
  background: #f9faff;
  border-radius: 12px;
}

.industries-section .industries-bg {
  background: url(/assets/img/industries-bg.png);
  background-position: center;
  border-radius: 12px;
  box-shadow: 0px 2px 9.7px 0px #D0DEE6;
  position: relative !important;
  overflow: hidden;
}

.industry-tab {
  background: transparent;
  border: none;
  padding: 0.6rem 1.5rem;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.industry-tab img {
  width: 50px;
  height: 50px;
}

.industry-tab.active {
  background: #e7f0ff;
  border-color: #007bff;
  color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
  border-bottom: 2px solid #007bff;
}

.industry-tab:hover {
  background: #f4f7ff;
  border-color: #007bff;
}

.industry-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.industry-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PROCESS SECTION */
.process-section {
  height: 765px;
}

.process-card {
  border-radius: 15px !important;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: justify;
  margin: 15px;
  min-height: 320px;
  height: 510px !important;
  border: 1px solid #BBC9DD !important;
  background: #FAFAFA !important;
  position: relative;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: url(/assets/img/hover-bg-vertical.png) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.card-footer {
  background: none !important;
  border-top: 0 !important;
  padding: 0.75rem 0;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.24px solid rgba(255, 255, 255, 1);
  box-shadow: 0px 4.97px 4.97px 0px rgba(175, 179, 201, 1);
  background: linear-gradient(89.65deg, #7890F5 0.3%, #3D56D8 29.72%, #2D44BB 85.42%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  z-index: 1;
}

.card-body {
  padding: 0.5rem 0;
}

.card-body h5 {
  margin-bottom: 1rem;
}

.card-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .process-card {
    text-align: center;
    margin: 10px;
  }
}


/* TESTIMONIAL */
.testimonials-section {
  padding: 80px 0;
  height: 680px;
}

.testimonials-section h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.testimonial-card {
  border-radius: 16px !important;
  border: 1px solid #BBC9DD !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 380px !important;
  background: url(/assets/img/hoverBg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .card-header {
  border-bottom: none !important;
  padding: 1.5rem;
  border-radius: 9px !important;
  margin: 7px;
  background: #DFE7F2;
}

.testimonial-card .card-body {
  padding: 1.5rem;
}

.testimonial-card .card-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 0;
}

.testimonial-card img:not(.testi-logo) {
  width: 60px !important;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-card h5 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.testimonial-card .text-muted {
  font-size: 0.9rem;
  color: #6c757d !important;
}

.testi-logo {
  height: 60px;
  width: auto;
}

.owl-carousel .owl-item img {
  width: auto;
}

.bg-light-green {
  background-color: #e6f5ec;
}

.bg-light-purple {
  background-color: #eee8ff;
}

.bg-light-orange {
  background-color: #fff0e4;
}

.bg-light-blue {
  background-color: #eaf2ff;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  color: #4c6fff !important;
  font-size: 1.5rem !important;
  border: none;
}

.owl-nav button.owl-prev {
  left: -25px;
}

.owl-nav button.owl-next {
  right: -25px;
}

.owl-dots {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .process-card {
    text-align: center;
    margin: 10px;
  }
}

/* CTA Section */
.cta-final {
  padding: 6rem 3rem;
  background: var(--dark);
  color: white;
  text-align: center;
}

.cta-final h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-box {
  padding: 3rem;
  background: url(/assets/img/blue-card-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.badge {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 0px 40px 30px;
  background: url(/assets/img/footer-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.badge {
  background: #2a2a2a;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #4a9eff;
  border: 1px solid #333;
}

/* .footer-h-line {
  border: 1px solid #858681;
  margin: 1.5rem 0;
} */

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #6a6969;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
}

.footer-card {
  border: 1px solid #A7DDB4;
  background: #FFFFFF;
  box-shadow: 0px 4px 26.4px 0px #0000000D;
  border-radius: 20px !important;
  padding-top: 40px;
  margin-top: 100px;
  position: relative !important;
}

.footer-img {
  position: absolute;
  margin-top: 1.28rem;
  z-index: 1;
  /* margin-left: 528px; */
}

.footer-img-container {
  display: flex;
  justify-content: center;
}

.footer-desc {
  width: 50%;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 576px) {
  footer {
    padding: 20px 10px 10px;
  }
  
  .footer-card {
    padding-top: 60px;
    margin-top: 70px;
    border-radius: 12px !important;
  }
  
  .footer-img {
    max-width: 150px;
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .footer-bottom p,
  .footer-bottom a {
    font-size: 0.8rem;
  }
}

/* Ensure proper spacing on all screen sizes */
.footer-li li {
  margin-bottom: 8px;
}

.footer-li a {
  display: inline-block;
  padding: 2px 0;
}

.social-tag-group {
  position: absolute;
  right: 25px;
  bottom: 100px;
}

.social-tag {
  background: linear-gradient(89.65deg, #7890F5 0.3%, #3D56D8 29.72%, #2D44BB 85.42%);
  color: #fff;
  padding: 6px 33px 6px 6px;
  border-radius: 50px;
}

.social-ico-circle {
  background: #fff;
  border-radius: 50%;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  padding: 6px;
}

/* Fix for the footer bottom links on small screens */
@media (max-width: 400px) {
  .footer-bottom p,
  .footer-bottom a {
    font-size: 0.75rem;
  }
}

/* MEDIA QUERIES */

@media (max-width: 968px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  footer {
    padding: 40px 20px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* OWL CAROUSEL */
.owl-stage {
  position: relative;
  top: 30px;
}

.owl-stage-outer {
  height: 100% !important;
}

.owl-carousel .owl-nav .owl-prev {
  display: none !important;
}

.owl-carousel .owl-nav .owl-next {
  border-radius: 50px !important;
  top: -15px !important;
  background: #FAFAFA !important;
  border: 1px solid #BBC9DD !important;
  right: 30px;
}

.owl-carousel .owl-nav .owl-next .bi-chevron-right {
  color: #000 !important;
  font-weight: 800 !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {

  .hero-container,
  .tech-grid,
  .industry-grid,
  .process-step {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .doc-animation {
    height: 400px;
  }

  .social-tag-group {
    position: static;
  }

  footer {
    padding: 30px 15px 15px;
  }
  
  .footer-card {
    padding-top: 70px;
    margin-top: 80px;
    border-radius: 15px !important;
  }
  
  .footer-img {
    position: absolute;
    margin-top: 0.5rem;
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
  }
  
  .footer-bottom p, 
  .footer-bottom a {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .footer-bottom p br {
    display: none;
  }

  .footer-desc {
    width: 100%;
  }

  .testimonials-section h1 {
    font-size: 2rem;
  }

  .cta-box {
    padding-bottom: 2rem;
  }
}

