html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;

  overflow-x: hidden;
}

h1 {
  font-weight: bold;
}

.nav-logo {
  height: 90px;
  width: auto;
  margin-right: 12px;
}

/* Navbar styling */
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/* Nav links */
.navbar-nav .nav-link {
  font-weight: bold;
  font-size: 20px;
  padding: 0.5rem 0.8rem;
}

/* Brand spacing fix */
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

/* Override fixed-top to prevent shifting */
.fixed-top {
  top: 0;
}



/* Navigation Logo */

.btn-sales {
  border: 2px solid #6f2c91;
  color: #6f2c91;
  font-weight: bold;
  padding: .75rem 1rem;
}

.btn-started {
  padding: .75rem 1rem;
  border: 2px solid #75437D;
  background-color: #75437D;
  color: white;
  font-weight: bold;
}

.btn-started:hover,
.btn-started:focus {
  background-color: #75437D;
  color: white;
  border: 2px solid #75437D;
}

.btn-sub {
  border: 2px solid #75437D;
  color: #75437D;
  font-weight: bold;
  padding: 0.8rem 3rem;
}

.btn-sub:hover,
.btn-sub:focus,
.btn-sales:hover,
.btn-sales:focus {
  background-color: white;
  color: #75437D;
  border: 2px solid #75437D;
}

.search-icon {
  font-size: 20px;
  cursor: pointer;
  margin-right: 10px;
}

#dynamic-word {
  color: #0D6EFD;
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}


/* Feature Section Styles */
/* .feature-header {
  background: radial-gradient(circle at center top, #f6ecfe 20%, #ffffff 80%);
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
} */


.section-title {
  font-size: 56px;
  font-weight: 800;
  color: #1f2937;
}

.section-subtitle {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Layout */
.feature-section {
  display: flex;
  height: 100vh;
  position: relative;
  /* overflow: hidden; */
  /* gap: 24px; Add this line to control the gap */
}


.blob-background {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 900px;
  height: 900px;
  background-color: #afd530;
  border-radius: 60% 40% 50% 50% / 60% 40% 60% 40%;
  opacity: 0.2;
  filter: blur(150px);
  z-index: -1;
  transition: background-color 0.6s ease-in-out, transform 0.5s ease-in-out;
}

.left-part {
  width: 68%;
  padding: 30px 20px 30px 10px;
  /* Reduce padding */
  text-align: left;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.left-part::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.left-part::-webkit-scrollbar-thumb {
  background: transparent;
}

.feature {
  height: 100vh;
  /* border-bottom: 1px solid #e5e7eb; */
  padding: 60px 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.feature p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

/* Right Sticky Image */
.right-part {
  /* width: 32%;      */
  height: 90vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
}



.feature-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 740px;
    height: 740px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    background: #B968C9FF; /* default color */
    transition: background 0.5s;
    filter: blur(0px);
}

.right-part {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}


.right-part img {
  /* max-width: 90%; */
  max-height: 80vh;
  height: auto;
  z-index: 1;
  /* border-radius: 20px; */
  /* transition: opacity 0.5s ease-in-out, transform 0.4s ease; */
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
  /* object-fit: contain; */
  /* top: -100px !important; */
}

@media (max-width: 1200px) {
  .section-title {
    font-size: 42px;
  }

  .left-part {
    width: 60%;
  }

  .right-part {
    height: 70vh;
  }
}

@media (max-width: 992px) {
  .feature-section {
    flex-direction: column;
    height: auto;
  }

  .left-part {
    width: 100%;
    height: auto;
    overflow: visible;
    padding: 20px;
  }

  .feature {
    height: auto;
    padding: 40px 20px;
  }

  .right-part {
    position: static;
    height: auto;
    width: 100%;
    margin-top: 30px;
  }

  .right-part img {
    max-width: 100%;
    max-height: 60vh;
    margin: 0 auto;
  }

  .section-title {
    font-size: 38px;
  }

  .section-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }

  .feature h1.feature-title {
    font-size: 24px;
  }

  .feature p {
    font-size: 16px;
  }

  .blob-background {
    width: 600px;
    height: 600px;
    top: -60px;
    right: -100px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .feature-label {
    font-size: 14px;
  }

  .feature h1.feature-title {
    font-size: 20px;
  }

  .feature p {
    font-size: 15px;
  }

  .feature-highlight {
    font-size: 14px;
  }

  .right-part img {
    max-height: 50vh;
  }
}

/* img:hover {
  transform: scale(1.05);
  opacity: 0.9;
} */

.feature-label {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #AC5422;
}

.feature-description {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.feature-highlight {
  font-size: 18px;
  color: #1d1d1f;
  font-weight: 400;
}

.highlight-percent {
  font-size: 32px;
  font-weight: 700;
  /* color: #b030b0; */
  /* or #B968C9FF */
  margin-right: 5px;
}

/* Dropdown Styles */
.dropdown-menu {
  /* display: none; */
  position: absolute;
  will-change: transform;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 0.375rem;
}

.show>.dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
}


.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 80px;
  background: linear-gradient(to bottom, #e5f1ff, #ffffff);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* max-width: 1200px; */
  margin: 0 auto;
}

.content {
  max-width: 50%;
}

.tag {
  color: #0c63e4;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
}

.heading {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.learn-more {
  font-size: 18px;
  color: #0c63e4;
  text-decoration: none;
  font-weight: bold;
}

.learn-more:hover {
  text-decoration: underline;
}

.image-container {
  max-width: 45%;
}

.image-container img {
  width: 400px;
  height: 450px;
  border-radius: 10px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .content,
  .image-container {
    max-width: 100%;
    text-align: center;
  }

  .heading {
    font-size: 32px;
  }
}



.section-title {
  text-align: center;
  /* font-size: 2.5rem; */
  /* margin-bottom: 50px; */
  margin-top: 20px;
  color: black;
  /* text-shadow: 0 0 8px #0ff; */
}

.video-row {
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.video-card {
  flex: 1;
  transition: all 0.4s ease;
  overflow: hidden;
  border-radius: 12px;
  /* box-shadow: 0 0 15px rgba(0, 255, 225, 0.1); */
  cursor: pointer;
  position: relative;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.video-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* text-align: center; */
  /* background: rgba(0, 0, 0, 0.6); */
  color: white;
  font-weight: bold;
  padding: 10px;
  font-size: 1.1rem;
}

/* Hover effect */
.video-row:hover .video-card {
  flex: 0.9;
  filter: blur(1px);
  opacity: 0.6;
}

.video-row .video-card:hover {
  flex: 2.2;
  filter: none;
  opacity: 1;
  z-index: 1;
  transform: scale(1.05);
  /* box-shadow: 0 0 25px rgba(0, 255, 225, 0.6); */
}

@media (max-width: 767px) {
  .video-row {
    flex-direction: column;
  }

  .video-row:hover .video-card {
    flex: auto;
    filter: none;
    opacity: 1;
  }

  .video-row .video-card:hover {
    transform: scale(1.02);
  }
}



.pricing-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  justify-content: start;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  border-radius: 15px 15px 0 0;
  color: white;
}

.basic-header {
  background: linear-gradient(45deg, #4A90E2, #50A7F1);
  /* Clean and modern blues */
}

.pro-header {
  background: linear-gradient(45deg, #3E3A73, #5A5A89);
  /* Subtle and elegant dark purples */
}

.enterprise-header {
  background: linear-gradient(45deg, #2D9C84, #5ED4B1);
  /* Professional green tones */
}

.enterprise-grid-header {
  background: linear-gradient(45deg, #2C3E50, #3498DB);
}






.btn-custom {
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child {
  border-bottom: none;
}

.stats-section {
  position: relative;
  background: linear-gradient(135deg, #4B1D5F, #6A1B9A);
  color: white;
  text-align: center;
  padding: 10px 20px;
  overflow: hidden;
}

.top-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: white;
  border-bottom-left-radius: 100% 80px;
  border-bottom-right-radius: 100% 80px;
  transform: scaleX(1.5);
  transform-origin: top center;
  z-index: 1;
}

.stats-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

.stats-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}

.stat {
  max-width: 280px;
}

.stat h3 {
  font-size: 4.5rem;
  color: #D59BFF;
  margin: 0;
  font-weight: bolder;
}

.stat p {
  font-size: 24px;
  margin-top: 15px;
  line-height: 1.4;
  font-weight: bold;
}

sup {
  font-size: 0.7em;
  vertical-align: top;
}




.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.stats {
  flex: 1;
  min-width: 300px;
}

.stats-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.number {
  font-size: 48px;
  font-weight: 700;
  margin-right: 12px;
  min-width: 100px;
  text-align: right;
}

.description {
  font-size: 18px;

}

.testimonials {
  flex: 1;
  min-width: 300px;
  padding-left: 40px;
}

/* .heading {
  font-size: 36px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  text-align: center;
} */

.subheading {
  font-size: 24px;
  font-weight: bold;
}

.market-info {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-img {
  width: 120px;
  height: 100px;
  object-fit: contain;
  border-radius: 6px;
  /* background: #f9f9f9; */
  padding: 4px;
}

.card {
  background: white;
  border-radius: 15px;
  /* padding: 20px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}



.cta-section {
  background-color: #4a154b;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;

}

/* .cta-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 90;
  left: 0;
  width: 100%;
  height: 200px;
  background: white;
  border-top-left-radius: 100% 80px;
  border-top-right-radius: 100% 80px;
  z-index: 0;
} */

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  /* margin-bottom: 50px; */
}

.btn {
  padding: 6px 18px;
  font-weight: 400;
  /* text-transform: uppercase; */
  border-radius: 6px;
  /* transition: all 0.3s ease; */
  text-decoration: none;
  /* font-size: 15px; */
}

.btn-primary {
  background-color: #75437D;
  color: white;
  border: none;
  border: 2px solid #7E4681;
}

.btn-primary:hover {
  background-color: #75437D;
  color: white;
  border: none;
}

.btn-outline {
  background-color: transparent;
  /* border: 2px solid white; */
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: #4a154b;
}

.footer {
  /* height: 30vw; */
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 60px 40px;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 90%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("images/Poster-02.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transform: scale(1.05);
}



.footer-heading {
  font-size: 22px;
  font-weight: bold;
  color: #79447F;
  margin-bottom: 10px;
}

.footer-info {
  font-size: 20px;
  font-weight: bold;
  color: #F63D5C;
  margin-bottom: 0;
}

.footer-logo-img {
  height: 300px;
  /* margin-left: 400px; */
}

.form-control {
  /* border: 2px solid #75437D; */
  /* border-radius: 8px; */
  padding: 15px;
  /* font-size: 16px; */
  /* color: #333; */
}

.footer-links a {
  color: #F63D5C;
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.footer-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}

.social-icons a {
  color: black;
  margin: 0 8px;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
  transform: scale(1.2);
}

.fa-lg {
  font-size: 2em;
  line-height: 1.3em !important;
}

@media (max-width: 768px) {
  .footer-logo-img {
    margin-bottom: 20px;
  }
}


.column {
  min-width: 160px;
  display: flex;
  flex-direction: column;
}

.column h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.column a {
  text-decoration: none;
  color: #1d1c1d;
  font-size: 14px;
  margin-bottom: 6px;
}

.column a:hover {
  text-decoration: underline;
}


.social-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #0d6efd;
  /* Bootstrap primary color, or replace with your brand color */
  transform: scale(1.2);
}


        .clients-section {
            background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(80, 60, 120, 0.08);
            padding: 60px 20px 40px 20px;
            margin-bottom: 40px;
        }

        .clients-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #4a154b;
            margin-bottom: 0.5rem;
        }

        .clients-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #75437D, #0d6efd);
            border-radius: 2px;
            margin: 0 auto 2rem auto;
        }

        .clients-subtitle {
            color: #555;
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
        }

        .client-logo-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 2px 16px rgba(80, 60, 120, 0.07);
            padding: 18px 10px;
            transition: transform 0.25s, box-shadow 0.25s;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 250px;
            position: relative;
            overflow: hidden;
        }

      

        .client-logo-card:hover {
            transform: translateY(-8px) scale(1.04);
            box-shadow: 0 8px 32px rgba(80, 60, 120, 0.18);
            z-index: 2;
        }

        .client-logo-card:hover .client-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.08) rotate(-2deg);
        }

        @media (max-width: 768px) {
            .clients-title {
                font-size: 2rem;
            }

            .client-logo-card {
                height: 90px;
                padding: 10px 2px;
            }

            .client-logo {
                max-width: 70px;
                max-height: 50px;
            }
        }



.animate-logo {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1600px;
  }
}

.feature-header {
  background: linear-gradient(135deg, #f8fafc 60%, #e0e7ff 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(80, 60, 120, 0.08);
  padding: 60px 20px 40px 20px;
  margin-bottom: 40px;
}

.text-gradient {
  background: linear-gradient(90deg, #75437D, #0d6efd 80%);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
}

.custom-navbar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  /* border-radius: 0 0 24px 24px; */
  box-shadow: 0 8px 32px rgba(80, 60, 120, 0.10);
  padding: 0.5rem 0;
  transition: background 0.3s;
  min-height: 90px;
  /* padding-top: 1.2rem; */
  /* padding-bottom: 1.2rem; */
}

/* .text-gradient {
    background: linear-gradient(90deg, #75437D, #0d6efd 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

.navbar-nav .nav-link {
  color: #4a154b !important;
  transition: color 0.2s, background 0.2s;
  border-radius: 18px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: #f0f4ff;
  color: #0d6efd !important;
}

.btn-outline-primary {
  border-radius: 18px;
  border-width: 2px;
}

.btn-primary {
  border-radius: 18px;
  background: linear-gradient(90deg, #75437D, #0d6efd 80%);
  border: none;
}

.btn-primary:hover,
.btn-outline-primary:hover {
  box-shadow: 0 2px 12px rgba(13, 110, 253, 0.12);
  transform: translateY(-2px) scale(1.03);
}

.feature-hero-bg {
    background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(80, 60, 120, 0.08);
    margin-bottom: 40px;
}

.glass-card {
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(80, 60, 120, 0.10);
    padding: 32px 28px 32px 28px;
    margin-bottom: 32px;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    box-shadow: 0 12px 32px rgba(80, 60, 120, 0.18);
    transform: translateY(-6px) scale(1.02);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(80, 60, 120, 0.08);
}