/* --- AUTOMATED COMPACT FIX (MNC STYLE) --- */
html {
  font-size: 14px !important;
  /* Default is usually 16px. 14px makes it compact. */
}

/* Optional: Make headings tighter */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.02em;
  /* Thoda professional look */
}

/* ----------------------------------------- */

:root {
  --color-primary: #5c6bc0;
  --color-secondary: #80cbc4;
  --color-accent: #ffb74d;
  --color-background: #ffffff;
  --color-text-dark: #37474f;
  --color-text-light: #546e7a;
  --color-border-light: #eceff1;
  --font-family-primary: "Poppins", sans-serif;
  --spacing-unit: 1rem;
}

/* Legacy submenu accordion CSS removed for vertical dropdown compatibility */


#contactSlideBar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--color-primary, #2563eb);
  color: white;
  padding: 12px 0px;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  cursor: pointer;
  z-index: 9999;
  transition: background .25s ease;
}

#contactSlideBar:hover {
  background: var(--color-primary-hover, #1d4ed8);
}

#contactSlidePanel {
  position: fixed;
  top: 50%;
  right: -300px;
  transform: translateY(-50%);
  width: 300px;
  max-width: 85vw;
  background: #fff;
  padding: 20px 18px;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  z-index: 10000;
  transition: right .35s ease;
  font-family: inherit;
}

#contactSlidePanel.open {
  right: 0;
}

#contactSlidePanel h3 {
  margin-bottom: 10px;
}

#contactSlidePanel label {
  font-size: 13px;
  font-weight: 500;
  margin-top: 10px;
}

#contactSlidePanel input {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}

#contactSlidePanel button[type="submit"] {
  margin-top: 14px;
  padding: 10px;
  border: none;
  background: var(--color-primary, #2563eb);
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

#contactCloseBtn {
  border: none;
  background: transparent;
  font-size: 20px;
  color: #6b7280;
  align-self: flex-end;
  cursor: pointer;
}

.intro-image-logo {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  mix-blend-mode: multiply;
  background-color: transparent;
}

.portfolio-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--color-text-light);
}

.btn-white {
  background-color: white;
  color: var(--color-primary);
}

.clients-section-centered {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 4rem;
}

.clients-title-margin {
  margin-bottom: 1rem;
}

.clients-subtitle-margin {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.insurance-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--color-text-light);
}

.footer-margin {
  margin-bottom: 5rem;
}

#contactError {
  color: #e11d48;
  margin-top: 6px;
  display: none;
  font-size: 13px;
}

body {
  font-family: var(--font-family-primary);
  color: var(--color-text-dark);
  background-color: var(--color-background);
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

section {
  display: block;
  visibility: visible;
  position: relative;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: var(--spacing-unit) * 2;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit) * 2;
}

section {
  padding: 5rem 0;
}

#navhead {
  color: var(--color-text-dark);
}




.btn {
  display: inline-block;

  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
}


.btn-primary {
  background-color: #3f51b5;
  color: #ffffff !important;



  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.btn-primary:hover {

  transform: translateY(-2px);

  background-color: #303f9f;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.btn::before {
  display: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: var(--color-primary);
  color: var(--color-background);
}


.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* padding: 0.75rem 0; */
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-left {
  width: 35%;
  display: flex;
  align-items: center;
}

.navbar-right {
  display: flex;
  justify-content: flex-end;
  /* Align links to the right */
  width: 75%;
  /* Give more space to the links */
  padding-right: 2rem;
  /* Add some padding to the right edge */
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 2rem;
  /* Added margin to move logo inwards */
}

.logo-image {
  margin-left: 70px;
  height: 60px;
  /* Keep layout height small so navbar doesn't expand */
  width: auto;
  max-width: 300px;
  object-fit: contain;

  /* Use transform to visually enlarge it beyond its box */
  transform: scale(1.6);
  transform-origin: left center;
}

.logo-text {
  margin-left: 10px;
  width: 100%;
  display: inline-block;
  white-space: nowrap;
}

.logo-text span {
  color: var(--color-accent);
  display: inline;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  padding: 0 0.75rem;
  /* Reduced padding to fit more links */
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
  background-color: rgb(38, 79, 216);
}

.nav-links li:last-child {
  margin-left: 1.5rem;
}


.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.mobile-menu-btn img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mobile-menu-btn .hamburger,
.mobile-menu-btn .hamburger::before,
.mobile-menu-btn .hamburger::after {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn .hamburger::before,
.mobile-menu-btn .hamburger::after {
  content: "";
  position: relative;
}


.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-backdrop.is-visible {
  display: block;
  opacity: 1;
}

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: var(--color-background);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 1600;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.22, 0.9, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  justify-content: flex-end;
  padding: 12px;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-panel-content {
  padding: 12px 16px;
  overflow-y: auto;
}

.nav-links-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-links-mobile a {
  display: block;
  padding: 10px 8px;
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-links-mobile a:hover,
.nav-links-mobile a:focus,
.nav-links-mobile a:active {
  background: var(--color-primary);
  color: #ffffff;
}

.nav-links-mobile a:hover {
  background-color: var(--color-primary);
}

.nav-links-mobile a:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(92, 107, 192, 0.12);
}

.mobile-nav-free-trial {
  background-color: #3f51b5 !important;
  color: white !important;
  text-align: center;
  padding: 14px 10px !important;
  margin: 15px 8px 10px 8px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  display: block !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(63, 81, 181, 0.2);
  transition: all 0.3s ease !important;
}

.mobile-nav-free-trial:hover, 
.mobile-nav-free-trial:active {
  background-color: #303f9f !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(63, 81, 181, 0.3);
}


@media (min-width: 769px) {
  .logo {
    position: static;
    left: auto;
    transform: none;
    margin: 0;
  }

  .nav-links {
    position: static;
    right: auto;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
    flex-direction: row;
    white-space: nowrap;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    color: inherit;
    background: transparent;
    text-decoration: none;
  }

  .nav-links li {
    width: auto;
    margin-left: 1.25rem;
    display: inline-block;
  }

  .nav-links {
    margin: 0;
  }
}

.nav-link-btn:hover,
.has-mega:hover>.nav-link-btn {
  background-color: var(--color-primary) !important;
  color: white !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
  text-decoration: none !important;
}


.navbar-right .nav-links a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  background: transparent;
  color: var(--color-text-dark);
  border: 1px solid transparent;
  font-weight: 400;
  transition: background-color 0.18s ease, color 0.18s ease,
    transform 0.12s ease;
}

.navbar-right .nav-links li {
  margin-left: 0.75rem;
}



.navbar-right .nav-links a {
  text-decoration: none;
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .navbar {
    position: relative;
    justify-content: center;
    align-items: center;
    padding-left: 1em;
  }

  .navbar-left {
    width: auto;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .mobile-menu-btn {
    display: inline-flex;
    position: absolute;
    right: 12px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .logo {
    margin: 0 auto;
    text-align: center;
    font-size: 1.3rem;
  }

  .logo-image {
    height: 40px;
  }

  .logo-text {
    margin-left: 0;
    display: inline-block;
    white-space: nowrap;
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .logo-text span {
    display: inline;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .mobile-menu-btn {
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .mobile-menu-btn img {
    width: 20px;
    height: 20px;
  }
}

#features {
  margin-top: 4rem;
  margin-bottom: 6rem;
}

#features h2 {
  font-size: 2.2rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  text-align: center;
  font-weight: 700;
  color: var(--color-text-dark);
}

.features-p {
  text-align: center;
  font-size: 1.15rem;
}


@media (max-width: 480px) {
  .features-p {
    font-size: 0.95rem;
  }
}


@media (max-width: 360px) {
  .features-p {
    font-size: 0.85rem;
  }
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card a {
  text-decoration: none;
}

.feature-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(2) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.2s;
}

.feature-card:nth-child(4) {
  transition-delay: 0.3s;
}

.feature-card:nth-child(5) {
  transition-delay: 0.4s;
}

.feature-card:nth-child(6) {
  transition-delay: 0.5s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}


.feature-icon-container {
  width: 68px;
  height: 68px;
  margin: 0 auto 1rem;
  border-radius: 50%;


  background-color: #5c7ba0;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.feature-card:hover .feature-icon-container {
  background-color: var(--color-primary);
}

.feature-card svg,
.feature-card .feature-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}

.feature-card:hover svg,
.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
}

.feature-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 1rem;
  margin: 0;
}


@media (max-width: 992px) {
  #features {
    margin-top: 3rem;
    margin-bottom: 4rem;
  }

  #features h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.65rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  #features {
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
  }

  #features h2 {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
  }

  .feature-card {
    width: 100%;
    padding: 1.75rem;
    border-radius: 14px;
    opacity: 1;
    transform: none;
  }

  .feature-icon-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.85rem;
  }

  .feature-card svg,
  .feature-card .feature-icon {
    width: 28px;
    height: 28px;
  }

  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  #features {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  #features h2 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding: 0 0.75rem;
    line-height: 1.3;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .feature-icon-container {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
  }

  .feature-card svg,
  .feature-card .feature-icon {
    width: 26px;
    height: 26px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}


@media (prefers-reduced-motion: reduce) {
  .feature-card {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


.how-it-works h2 {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--color-border-light);
  z-index: 0;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 3rem;
  max-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-step.reveal {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:nth-child(2) {
  transition-delay: 0.2s;
}

.timeline-step:nth-child(3) {
  transition-delay: 0.4s;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px var(--color-background);
  z-index: 1;
  transition: background-color 0.3s;
}

.timeline-step:hover .step-number {
  background-color: var(--color-accent);
}

.timeline-step-content h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.timeline-step-content p {
  font-size: 1rem;
}


@media (max-width: 480px) {
  .timeline-step-content h3 {
    font-size: 1.15rem;
  }

  .timeline-step-content p {
    font-size: 0.9rem;
  }
}


@media (max-width: 360px) {
  .timeline-step-content h3 {
    font-size: 1rem;
  }

  .timeline-step-content p {
    font-size: 0.85rem;
  }
}



.highlights-section {
  background-color: #f7f9fa;
}

.highlights-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: left;
  margin-top: 4rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.highlight-item strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.highlight-item p {
  margin-left: 10px;
}

.highlight-icon {
  color: var(--color-secondary);
  margin-right: 0.75rem;
  font-size: 1.5rem;
  line-height: 1;
}


.testimonials-section {
  background-color: #f7f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background-color: var(--color-background);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-left: 5px solid var(--color-secondary);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote {
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.quote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 0;
  position: absolute;
  top: 0.5rem;
  left: -1.5rem;
  opacity: 0.2;
}

.author {
  font-weight: 600;
  color: var(--color-primary);
}

.author-title {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}



@media (prefers-reduced-motion: reduce) {

  .feature-card,
  .timeline-step {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  #animated-word {
    transition: none !important;
  }
}




@media (max-width: 768px) {

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 3rem 0;
    display: block !important;
    visibility: visible !important;
    width: 100%;
    max-width: 100%;
  }

  .container {
    padding: 0 var(--spacing-unit);
    width: 100%;
    max-width: 100%;
  }



  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-links li {
    width: 100%;
    max-width: 250px;
    margin-left: 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 0.5rem;
    text-align: center;
  }

  .nav-links a {
    padding: 0.5rem 0;
    display: block;
  }


  .navbar-left {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }


  .nav-links li:last-child {
    margin-top: 1rem;
    border-bottom: none;
    padding-bottom: 0;
    max-width: 300px;
  }

  .nav-links li:last-child a {
    width: 100%;
  }




  #animated-word {
    display: inline-block;
    min-width: unset;
    text-align: center;
  }


  #features {
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
  }

  #features h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  #features p {
    text-align: center;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    visibility: visible;
    width: 100%;
    gap: 1.5rem;
    margin-top: 2.5rem;

  }

  .feature-card {
    display: block;
    width: 100%;
    padding: 1.75rem;
    border-radius: 14px;
  }

  .feature-icon-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.85rem;
  }

  .feature-card svg,
  .feature-card .feature-icon {
    width: 28px;
    height: 28px;
  }

  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

}


@media (max-width: 480px) {
  .card {
    width: clamp(240px, 90vw, 300px);
    padding: clamp(10px, 3vw, 14px);
  }

  @media (max-width: 480px) {
    .card h3 {
      font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

    .card p {
      font-size: clamp(0.8rem, 3.5vw, 1rem);
    }
  }







  .feature-card[data-reveal] {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }


  .feature-card.reveal {
    opacity: 1;
    transform: translateY(0);
  }




  @media (max-width: 768px) {
    .feature-card[data-reveal] {
      opacity: 0;
      transform: translateY(35px);
    }

    .feature-card.reveal {
      opacity: 1;
      transform: translateY(0);
    }
  }




  .feature-card[data-reveal]:nth-child(1) {
    transition-delay: 0.05s;
  }

  .feature-card[data-reveal]:nth-child(2) {
    transition-delay: 0.12s;
  }

  .feature-card[data-reveal]:nth-child(3) {
    transition-delay: 0.18s;
  }

  .feature-card[data-reveal]:nth-child(4) {
    transition-delay: 0.24s;
  }

  .feature-card[data-reveal]:nth-child(5) {
    transition-delay: 0.30s;
  }

  .feature-card[data-reveal]:nth-child(6) {
    transition-delay: 0.36s;
  }

  .feature-card[data-reveal]:nth-child(7) {
    transition-delay: 0.42s;
  }

  .feature-card[data-reveal]:nth-child(8) {
    transition-delay: 0.48s;
  }




  @media (prefers-reduced-motion: reduce) {
    .feature-card[data-reveal] {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }



  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    width: 100%;
    visibility: visible;
  }

  .timeline::before {
    display: none;
  }

  .timeline::after {
    display: none;
  }


  hr {
    display: none;
  }

  .timeline-step {
    width: 100%;
    max-width: 300px;
    padding-top: 3rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .timeline-step-content {
    padding-left: 0;
  }

  .step-number {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }


  .highlights-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    visibility: visible;
  }



  .testimonials-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    visibility: visible;
  }

  .testimonial-card {
    display: block;
    visibility: visible;
    width: 100%;
  }

}




.has-mega {
  position: relative;
}

/* Invisible block to bridge the hover gap between navbar and dropdown */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 30px;
  /* covers the gap below */
  background: transparent;
  z-index: 10;
}


.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.9rem;
  border-radius: 12px;
}


.arrow {
  width: 14px;
  transition: transform 0.25s ease;
}

.has-mega {
  position: relative;
  /* Scope dropdowns to this specific item */
}

.has-mega:hover .arrow {
  transform: rotate(180deg);
}




.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(780px, 92vw);
  max-height: calc(100vh - 140px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
  padding: 1.6rem 1.8rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  overflow-y: auto;
  z-index: 5000;
}

.mega-dropdown.dropdown-sm {
  width: 620px;
  /* Widened to fit larger fonts */
  padding: 1rem 0.8rem;
  border-radius: 20px;
}

.mega-dropdown.dropdown-right {
  left: auto;
  right: 40px;
  transform: translateX(0) translateY(8px);
}

.mega-dropdown.dropdown-xs {
  width: 320px;
  padding: 1rem 0.8rem;
  border-radius: 20px;
}

.mega-dropdown.dropdown-xs .submenu-vertical {
  grid-template-columns: 1fr;
}

.mega-dropdown.dropdown-md {
  width: 500px;
  padding: 1rem 0.8rem;
  border-radius: 20px;
}

.has-mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-mega:hover .mega-dropdown.dropdown-right {
  transform: translateX(0) translateY(0);
}


.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.8rem;

  width: 100%;
  box-sizing: border-box;
}

/* Styles for single-column vertical submenus */
.mega-submenu-vertical {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.submenu-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Split into 2 equal columns */
  gap: 2px 16px;
  /* Tighter vertical gap for HD layout, more horizontal separation */
}

.submenu-vertical li a {
  text-decoration: none;
  font-size: 0.94rem;
  /* Reduced title font for a precise, HD look */
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  /* Align icon and text block to top */
  padding: 0.65rem 1rem;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: transparent;
}

.menu-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submenu-vertical li a h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
  /* Added spacing so letters don't touch */
  transition: color 0.2s ease;
}

.menu-desc {
  color: #000000 !important;
  /* Force Black description */
  font-size: 0.78rem;
  /* Perfectly scaled description font */
  font-weight: 400;
  opacity: 0.65;
  /* Slightly transparent to look slightly lighter */
  line-height: 1.3;
  /* Increased slightly for longer readability */
  white-space: normal;
  /* Allow description text to wrap */
}

.submenu-vertical li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 3px;
  background: var(--color-accent) !important;
  /* Force Yellow sliding bar */
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.25s ease;
}

.submenu-vertical li a:hover {
  /* No shift */
  text-decoration: none !important;
}

.submenu-vertical li a:hover h4 {
  color: var(--color-primary);
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  /* Ensure underline only on the title */
}

/* Ensure the description stays exactly the same on hover */
.submenu-vertical li a:hover .menu-desc {
  text-decoration: none !important;
}

/* Removed sliding yellow bar animation */

.mega-card {
  display: block;
  text-decoration: none;
  color: inherit;

  min-width: 0;
  max-width: 100%;
}


.mega-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}


.mega-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin: 0;

  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}


.mega-card:hover h4 {
  text-decoration: none;
}



@media (max-width: 1024px) {
  .mega-dropdown {
    width: 94vw;
    padding: 1.4rem;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}






.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text-dark);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-arrow {
  transition: transform 0.25s ease;
}


.mobile-dropdown-menu {
  list-style: none;
  padding-left: 12px;
  margin: 6px 0;
  display: none;
}


.mobile-dropdown.is-open .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown.is-open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}


.mobile-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 6px;
}

.mobile-dropdown-menu a:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}


#demo-video {
  padding-top: 0;
  padding-bottom: 5rem;

}

.demo-video-title {
  text-align: center;
  font-size: clamp(1.4rem, 4.5vw, 2.3rem);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
  line-height: 1.25;
}


.demo-video-title::after {
  content: "";
  display: block;
  width: clamp(45px, 12vw, 70px);
  height: 3px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 999px;
}

.demo-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.demo-video-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
  padding-bottom: 56.25%;

  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#cp {
  color: var(--color-accent);
}

.blur-text-bg {
  display: inline-block;


  margin: 0;



  padding: clamp(0.45rem, 1.2vw, 0.7rem) clamp(0.8rem, 3vw, 1.2rem);

  border-radius: clamp(8px, 2vw, 12px);

  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(clamp(4px, 1vw, 6px));
  backdrop-filter: blur(clamp(4px, 1vw, 6px));

  border: 1px solid rgba(255, 255, 255, 0.25);

  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);

  max-width: min(90vw, 900px);
}

@media (max-width: 600px) {
  .blur-text-bg {
    text-align: center;
  }
}





.bank-benefits-section {
  padding: 4.5rem 0;
  background-color: var(--color-background);
}

.bank-benefits-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 3rem;
}


.bank-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}


.bank-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;

  padding: 1rem 1.25rem;
  border: 1px dashed rgba(92, 107, 192, 0.35);
  border-radius: 12px;

  background: rgba(92, 107, 192, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bank-benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


.benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;
  border-radius: 50%;

  background-color: var(--color-secondary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}


.bank-benefit-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.5;
}





@media (max-width: 768px) {
  .bank-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .bank-benefit-item {
    padding: 0.9rem 1rem;
  }

  .bank-benefit-item p {
    font-size: 0.95rem;
  }
}







.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.contact-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--color-primary);
  font-weight: 700;
}

.contact-header p {
  color: var(--color-text-light);
  margin-top: 0.75rem;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.contact-underline {
  display: block;
  width: 70px;
  height: 3px;
  margin: 1.2rem auto 0;
  background-color: var(--color-primary);
  border-radius: 999px;
}

.page-header {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: clamp(360px, 58vh, 640px) !important;
  padding-block: clamp(1.5rem, 6vw, 4rem) !important;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem) !important;
  text-align: center;
  border-radius: 0 0 50% 50% / clamp(10px, 3vw, 20px) !important;
}

.page-header .container {
  max-width: min(1200px, 92%);
  margin-inline: auto;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.25;
  margin-bottom: clamp(0.5rem, 1.8vw, 1rem);
}

.page-header p {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  max-width: 52ch;
  margin: 0 auto;
}

.buttons-inside-hero-page {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 40px;
}


.buttons-inside-hero-page a {
  background-color: var(--color-accent);
  color: #ffffff;
  text-decoration: none;

  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;

  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}


.buttons-inside-hero-page a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 183, 77, 0.45);
}


.buttons-inside-hero-page a:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(255, 183, 77, 0.35);
}

@media (max-width: 768px) {
  .page-header {
    min-height: clamp(340px, 50vh, 520px) !important;
    padding-block: clamp(1rem, 6vw, 3rem) !important;
  }

  .buttons-inside-hero-page a {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    min-height: clamp(300px, 48vh, 480px) !important;
    padding-block: clamp(0.9rem, 5vw, 2.4rem) !important;
  }

  .buttons-inside-hero-page a {
    padding: 0.6rem 1.6rem;
    font-size: 0.75rem;
  }
}





.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  align-items: flex-start;
}





.contact-info h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
  font-size: clamp(0.9rem, 2.5vw, 0.95rem);
  line-height: 1.6;
}

.contact-list .icon {
  font-size: 1.1rem;
  color: var(--color-primary);
}





.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.contact-social a:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}





.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  font-family: inherit;
  font-size: clamp(0.9rem, 2.5vw, 0.95rem);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.1rem 1.2rem;
  /* ⬅️ increased */
  border-radius: 10px;
  /* slightly smoother */
  border: 1px solid var(--color-border-light);
  font-family: inherit;
  font-size: 1rem;
  /* ⬅️ bigger text */
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}




.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}





.contact-form button {
  margin-top: 1.2rem;
  padding: 1rem;
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background-color 0.25s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}


.contact-form button:hover {
  background-color: #f9a23b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 183, 77, 0.35);
}


.contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 183, 77, 0.25);
}


.contact-form button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 183, 77, 0.35);
}






@media (max-width: 1024px) {
  .contact-grid {
    gap: 3rem;
  }
}


@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info h3 {
    text-align: center;
  }



  .contact-social {
    justify-content: center;
  }
}


@media (max-width: 480px) {
  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-social a {
    width: 38px;
    height: 38px;
  }

  .contact-form button {
    padding: 0.9rem;
    font-size: 0.95rem;
  }
}





.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(55, 71, 79, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.demo-modal-overlay.is-visible {
  display: flex;
}


.demo-modal {
  background: var(--color-background);
  width: 100%;
  max-width: 440px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  animation: scaleIn 0.25s ease;
}


@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(12px);
  }

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


.demo-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 1.6rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.demo-close-btn:hover {
  color: var(--color-primary);
}


.demo-title {
  text-align: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.demo-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin: 0.5rem 0 1.2rem;
}


.demo-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.2rem;
  display: block;
}

.demo-field input,
.demo-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  font-family: inherit;
  font-size: 0.85rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-field input:focus,
.demo-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.18);
  outline: none;
}


.demo-field textarea {
  resize: vertical;
  min-height: 70px;
  max-height: 120px;
}


.demo-submit-btn {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: linear-gradient(135deg,
      var(--color-primary),
      var(--color-accent));
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(92, 107, 192, 0.3);
}

.demo-submit-btn:active {
  transform: translateY(0);
}




@media (max-width: 480px) {
  .demo-modal {
    max-width: 95%;
    max-height: 90vh;
    padding: 1.4rem;
    border-radius: 14px;
  }

  .demo-title {
    font-size: 1.3rem;
  }

  .demo-subtitle {
    font-size: 0.8rem;
  }
}





.demo-modal {
  background: var(--color-background);
  width: 100%;
  max-width: 440px;
  max-height: 85vh;

  overflow-y: auto;
  overflow-x: hidden;


  scrollbar-width: none;
  -ms-overflow-style: none;

  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  animation: scaleIn 0.25s ease;
}


.demo-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

@media (max-width: 480px) {
  .demo-modal {
    max-width: 95%;
    max-height: 90vh;
    padding: 1.4rem;
    border-radius: 14px;
  }
}


@media (min-width: 769px) {
  .language-solution-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    min-width: clamp(260px, 22vw, 340px);
    max-width: 90vw;
  }

  .language-solution-dropdown.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}

@media (min-width: 769px) {
  .bot-solution-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    min-width: clamp(260px, 22vw, 340px);
    max-width: 90vw;
    margin-right: 0;
  }

  .bot-solution-dropdown.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}


.about-hero {
  background: linear-gradient(rgba(5, 10, 30, 0.5), rgba(5, 10, 30, 0.5)),
    url("./images/about.png");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 12rem 0 10rem;
  text-align: center;
  position: relative;
}

.about-hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}


.intro-section {
  padding: 5rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


.intro-text h2 {
  text-align: left;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}


.intro-text p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
  font-size: 1.05rem;
  text-align: justify;
  line-height: 1.7;
  margin-right: 2rem;
}



.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  /* border-radius: 12px; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}


.stats-bar {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 3rem 0;
  margin: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}


.portfolio-section {
  background-color: #f7f9fa;
  padding: 5rem 0;
  margin-top: -50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border-top: 5px solid var(--color-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-card h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}


.sectors-section {
  padding: 5rem 0;
  text-align: center;
}

.sectors-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sector-tag {
  background-color: #e3f2fd;
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s, color 0.2s;
}

.sector-tag:hover {
  background-color: var(--color-primary);
  color: #fff;
}


.cta-box {
  background: linear-gradient(90deg, var(--color-primary), #3949ab);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 16px;
  margin-bottom: 4rem;
}

.cta-box h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


.logo-slider-container {
  overflow: hidden;
  padding: 4rem 0;
  background: #f7f9fa;
  white-space: nowrap;
  position: relative;
}

.logo-slider-container::before,
.logo-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider-container::before {
  left: 0;
  background: linear-gradient(to right, #f7f9fa, transparent);
}

.logo-slider-container::after {
  right: 0;
  background: linear-gradient(to left, #f7f9fa, transparent);
}

.logo-track {
  display: inline-flex;
  animation: scroll-marquee 40s linear infinite;
}

.logo-slide {
  margin: 0 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-slide img:hover {
  transform: scale(1.4);
  cursor: pointer;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}




@media (max-width: 1024px) {
  .about-hero {
    background-attachment: scroll;
  }
}


@media (min-width: 1440px) {
  .about-hero {
    padding: 14rem 0 12rem;
  }

  .about-hero h1 {
    font-size: 4rem;
  }

  .about-hero p {
    font-size: 1.5rem;
  }
}


@media (max-width: 1366px) {

  .about-hero h1 {
    font-size: 3rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }


  .intro-text h2 {
    font-size: 1.8rem;
    margin-left: 1em;

  }

  .intro-text p {
    font-size: 1rem;
    text-align: left;
    margin-left: 2em;
  }
}


@media (max-width: 1024px) {
  .intro-grid {
    gap: 3rem;
  }

  .intro-text h2 {
    font-size: 1.8rem;
    margin-left: 1em;

  }

  .intro-text p {
    font-size: 1rem;
    text-align: left;
    margin-left: 2em;

  }

  .stat-item h3 {
    font-size: 2.1rem;
  }
}


@media (max-width: 768px) {
  .about-hero {
    padding: 7rem 0 5rem;
  }

  .about-hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .about-hero p {
    font-size: 1.05rem;
    padding: 0 1rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-text h2 {
    text-align: center;
    font-size: 1.6rem;
  }

  .intro-text p {
    font-size: 0.95rem;
    text-align: center;
  }

  .portfolio-section {
    margin-top: 0;
  }

  .logo-slide {
    margin: 0 30px;
  }

  .logo-slide img {
    height: 65px;
  }
}


/* Why Choose Sakshi Softech Section Styles */
.why-choose-section {
  background-color: #f7f9fa;
  padding: 5rem 0;
  margin-top: 2rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border-top: 5px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-card h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.why-choose-card p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Vision Section Styles */
.vision-section {
  padding: 5rem 0;
  background-color: #ffffff;
  text-align: center;
}

.vision-text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: left;
}

.vision-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .sector-tag {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  .logo-slide {
    margin: 0 20px;
  }

  .logo-slide img {
    height: 55px;
  }

  .intro-text h2 {
    font-size: 1.45rem;
  }

  .intro-text p {
    font-size: 0.9rem;
    text-align: center;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-choose-card {
    padding: 1.2rem;
  }

  .why-choose-card h3 {
    font-size: 1.2rem;
  }

  .why-choose-card p {
    font-size: 0.9rem;
  }

  .vision-section {
    padding: 2rem 0;
  }

  .vision-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}


#open-demo-btn-dd {
  background-color: var(--color-primary);
  color: white;
}


#open-demo-btn-dd:hover {
  background-color: var(--color-accent);
  color: white;
  border: var(--color-accent);
}





.industries-modern-section {
  padding: 4.5rem 0;
  background-color: #ffffff;
}


.industries-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.industries-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--color-text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.industries-header p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.55;
}


.industries-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 1100px;
  margin: 0 auto;
}


.industry-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  padding: 1.05rem 1.4rem;
  border-radius: 12px;
  background: #f7f9fc;
  border-left: 4px solid var(--color-primary);


  opacity: 0;
  transform: translateX(-40px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.25s ease;
}


.industry-row.is-visible {
  opacity: 1;
  transform: translateX(0);
}


.industry-row:hover {
  box-shadow: 0 10px 24px rgba(92, 107, 192, 0.12);
}


.industry-index {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  align-self: center;
  line-height: 1;
}


.industry-content h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.industry-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}





@media (max-width: 768px) {
  .industries-list {
    max-width: 100%;
  }

  .industry-row {
    grid-template-columns: 38px 1fr;
    padding: 0.95rem 1rem;
  }

  .industry-index {
    font-size: 1.05rem;
  }

  .industry-content h3 {
    font-size: 1.05rem;
  }

  .industry-content p {
    font-size: 0.88rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  .industry-row {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}









.cta-contact-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg,
      rgba(92, 107, 192, 0.08),
      rgba(128, 203, 196, 0.08));
}


.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
}





.cta-text h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.cta-highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.cta-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.cta-footer-text {
  margin-top: 1.1rem;
  font-weight: 500;
  color: var(--color-text-dark);
}





.cta-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}


.cta-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;

  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}


.cta-btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(92, 107, 192, 0.28);
}

.cta-btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 183, 77, 0.4);
}


.cta-btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.cta-btn-accent:hover {
  background-color: #f9a23b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 183, 77, 0.45);
}





.cta-visual {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 2.1rem 2rem;
  width: 100%;
  max-width: 360px;
  border: 1px solid rgba(92, 107, 192, 0.25);
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--color-accent);
}

.cta-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-card li {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-bottom: 0.65rem;
  position: relative;
  padding-left: 1.2rem;
}

.cta-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}





@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-text h2 {
    font-size: 1.9rem;
    text-align: center;
  }

  .cta-text p {
    font-size: 0.92rem;
  }

  .cta-card {
    margin: 0 auto;
    border-top: 4px solid var(--color-primary);
    border-left: none;

  }
}

@media (max-width: 480px) {
  .cta-contact-section {
    padding: 3rem 0;
  }

  .cta-highlight {
    font-size: 0.95rem;
  }

  .cta-text p {
    font-size: 0.88rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-card {
    padding: 1.7rem 1.4rem;
    border-top: 4px solid var(--color-primary);
    border-left: none;

  }

  .cta-card h3 {
    font-size: 1.1rem;
  }

  .cta-card li {
    font-size: 0.85rem;
  }
}





.support-process-section {
  padding: 4rem 0;
  background-color: #ffffff;
}


.support-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.2rem;
}

.support-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.support-header p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.55;
}





.support-process-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.2rem;
  align-items: flex-start;
}





.support-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.support-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--color-border-light);
}

.support-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-index {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-top: 0.15rem;
}

.step-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}





.support-info-panel {
  background: #f7f9fc;
  border-left: 4px solid var(--color-primary);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-info-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
}

.support-info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-info-panel li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}

.support-info-panel li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}





@media (hover: hover) and (pointer: fine) {
  .support-info-panel {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }

  .support-info-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(92, 107, 192, 0.18);
    border-left-color: var(--color-accent);
  }
}





@media (max-width: 900px) {
  .support-process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .support-info-panel {
    border-left: none;
    border-top: 4px solid var(--color-primary);
  }
}

@media (max-width: 480px) {
  .support-process-section {
    padding: 2.8rem 0;
  }

  .support-header {
    margin-bottom: 1.8rem;
  }

  .support-header p {
    font-size: 0.9rem;
  }

  .support-step {
    grid-template-columns: 30px 1fr;
    gap: 0.8rem;
  }

  .step-index {
    font-size: 0.9rem;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.88rem;
  }

  .support-info-panel {
    padding: 1.6rem 1.4rem;
  }

  .support-info-panel h3 {
    font-size: 1.1rem;
  }

  .support-info-panel li {
    font-size: 0.88rem;
  }
}


.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 24px;
  border-radius: 999px;

  background-color: #25D366;
  color: #ffffff;

  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;

  margin-top: 2rem;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.45);
}


.whatsapp-cta-icon {
  width: 22px;
  height: 22px;
  display: block;
}


.whatsapp-cta-text {
  line-height: 1;
}


@media (min-width: 1200px) {
  .whatsapp-cta {
    font-size: 1.05rem;
    padding: 16px 30px;
  }

  .whatsapp-cta-icon {
    width: 24px;
    height: 24px;
  }
}


@media (max-width: 768px) {
  .whatsapp-cta {
    font-size: 0.95rem;
    padding: 12px 22px;
  }

  .whatsapp-cta-icon {
    width: 20px;
    height: 20px;
  }
}


@media (max-width: 480px) {
  .whatsapp-cta {
    max-width: 80vw;
    padding: 12px 18px;
    font-size: 0.98rem;
    gap: 8px;
  }

  .whatsapp-cta-icon {
    width: 18px;
    height: 18px;
  }
}









.bot-fab {
  position: fixed;
  bottom: 24px;
  right: 32px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 9999;
  border-radius: 50%;
  display: block;
  font-size: 1.8em;
}


.bot-box {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
  display: none;
  flex-direction: column;
  z-index: 10000;
}


.bot-header {
  background: #f2f7ff;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px 16px 0 0;
}

.bot-header button {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
}

.bot-header span {
  color: var(--color-primary);
  font-weight: 600;
}


.bot-body {
  padding: 14px;
  max-height: 360px;
  overflow-y: auto;
}


.bot-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-top: -32px;
}


.bot-btn {
  width: 100%;
  background: #f1f3f6;
  border: none;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 12px;
}




@media (max-width: 480px) {
  .faq-float-btn {
    font-size: 12px;
  }

  .faq-popup-header h4 {
    font-size: 14px;
  }

  .faq-question {
    font-size: 12px;
  }

  .faq-answer {
    font-size: 11px;
  }
}


@media (max-width: 360px) {
  .faq-float-btn {
    font-size: 11px;
  }

  .faq-popup-header h4 {
    font-size: 13px;
  }

  .faq-question {
    font-size: 11px;
  }

  .faq-answer {
    font-size: 10.5px;
  }
}


.bot-back {
  background: #e0e7ff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
  z-index: 10001;
}


@media (max-width: 480px) {
  .bot-box {
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .bot-fab {
    right: 12px;
  }
}


.bot-detail-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -40px;
  margin-left: 5px;
  z-index: -99999;
}

.bot-detail-card h3 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #263238;


}


.bot-detail-text {
  background: #f7f9fc;
  padding: 12px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: #455a64;
  max-height: 180px;
  overflow-y: auto;
  margin-top: -10px;
  text-align: center;
}


.bot-detail-actions {
  display: flex;
  gap: 10px;
}

.bot-action {
  flex: 1;
  border: none;
  padding: 8px;
  border-radius: 8px;
  font-size: 11px;
  cursor: pointer;
  font-weight: 600;
}

.bot-action.contact {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.bot-action.demo {
  background: var(--color-primary);
  color: #fff;
}

.bot-action.contact:hover {
  background: var(--color-accent);
  color: #fff;
}

.bot-action.demo:hover {
  background: var(--color-accent);
  color: #fff;
}



@media (max-width: 768px) {
  .bot-box {
    width: 280px;
    bottom: 85px;
    right: 20px;
    left: auto;
    border-radius: 14px;
  }

  .bot-fab {
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    right: 20px;
  }

  .bot-body {
    max-height: 300px;
  }
}



@media (max-width: 480px) {
  .bot-box {
    width: 240px;
    max-width: 240px;
    right: 16px;
    left: unset !important;
    bottom: 80px;
    border-radius: 12px;
  }

  .bot-fab {
    width: 54px;
    height: 54px;
    font-size: 1.4em;
    right: 16px;
    bottom: 16px;
  }
}


@media (max-width: 360px) {
  .bot-box {
    width: 220px;
    max-width: 220px;
    right: 12px;
    left: unset !important;
  }

  .bot-fab {
    width: 48px;
    height: 48px;
    font-size: 1.2em;
  }
}








.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide-1 {
  background-image: url("./images/HomeImg.png");
  background-position: center top !important;
  background-size: 100% 100% !important;
}





.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 4rem;
  margin-top: 0;

}

.hero-text {
  max-width: 100%;
  text-align: left;
}



.highlight-text {
  color: #7986cb;
  position: relative;
  z-index: 1;
  font-size: 0.9em;
  font-weight: 700;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 183, 77, 0.2);
  z-index: -1;
  border-radius: 4px;
}

#animated-word {
  color: var(--color-accent);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  display: inline-block;
  min-width: 150px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 0.9em;
  opacity: 0.8;
}


.hero-text p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #e0e0e0;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-text strong {
  color: #ffffff;
  font-weight: 700;
}


.hero-actions {
  margin-top: 2rem;
  display: flex;
}

.whatsapp-cta-wrapper {
  display: flex;
  padding-bottom: 0 !important
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-cta-icon {
  width: 22px;
  height: 22px;
}


@media (max-width: 1024px) {
  #hero-headline {
    font-size: 2.8rem;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
    align-items: flex-start;
  }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 2rem;
  }
}









.hero-actions {
  margin-top: 0.5rem !important;
  justify-content: center;
}



@media (max-width: 480px) {
  #hero-headline {
    font-size: 2.8rem;
    margin-top: 9rem;
  }

  .hero-text p {
    font-size: 1.2rem;
    margin-top: -20px !important;
  }
}







@media (max-width: 1366px) {
  .container {
    max-width: 95% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  #hero-headline {
    font-size: 3rem;
  }

  .hero-container {
    gap: 2rem;
  }
}


@media (max-width: 1024px) {
  .hero {

    min-height: 50vh !important;
    height: auto;


    padding-bottom: 3rem !important;

    display: flex;
    align-items: center;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 0;
  }

  .hero-text {
    max-width: 90% !important;
    margin: 0 auto;
    text-align: center;
  }

  #hero-headline {
    font-size: 2.8rem;
    margin-top: 1rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }


  .hero-actions,
  .whatsapp-cta-wrapper {
    justify-content: center !important;
    display: flex;
  }


  .navbar-right .nav-links li {
    margin-left: 0.5rem;
  }

  .navbar-right .nav-links a {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
}


@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

  #hero-headline {
    font-size: 4.5rem;
  }
}


html,
body {
  overflow-x: hidden;
  width: 100%;
}


.hero-text {
  position: relative;
  z-index: 10;
}





.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* Unified background image pattern for consistency across all hero sections */
.hero-bg-pattern {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

/* Apply to index.html hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Removed darker linear-gradient to keep HD image quality */
  /* background-image: url('./images/home.png'); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

/* Apply to Industry_Global_Enterprises.html hero */
.global-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/global_enterprises_1.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

#hero-headline {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-top: 1rem;
  color: #ffffff !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.highlight-text {
  color: #7986cb !important;
  position: relative;
  z-index: 1;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 183, 77, 0.2);
  z-index: -1;
  border-radius: 4px;
}

#animated-word {
  color: var(--color-accent) !important;
  font-weight: 600;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
  display: inline-block;
  min-width: 150px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-text p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #e0e0e0 !important;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}

.hero-text strong {
  color: #ffffff !important;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero-headline {
    font-size: 2.8rem;
    color: #ffffff !important;
  }

  .hero-text p {
    color: #eeeeee !important;
  }
}





.hero-text {
  max-width: 700px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


#hero-headline {
  font-family: 'Poppins', sans-serif;

  font-size: clamp(2rem, 4vw, 3.2rem);


  font-weight: 600;

  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 1.2rem;
  color: #ffffff !important;
}


.highlight-text {
  color: #8c9eff !important;
  font-weight: 600;
  display: inline-block;
}

#animated-word {
  color: #ffb74d !important;
  font-weight: 600;
  font-style: normal;
}


.hero-text p {

  font-size: 1.1rem;

  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9) !important;


  font-weight: 400;

  margin-bottom: 2rem;
  max-width: 95%;
}


.hero-text strong {
  color: #ffffff !important;
  font-weight: 600;
}


@media (max-width: 768px) {
  .hero-text {
    text-align: center;
    align-items: center;
    padding: 0 20px;
  }

  #hero-headline {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}


.whatsapp-cta {


  background-color: #17af5b !important;
  color: #ffffff !important;


  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  border: none;


  box-shadow: none !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.whatsapp-cta:hover {
  background-color: #075E54 !important;
  transform: none !important;
  box-shadow: none !important;
}




@media (max-width: 1024px) {
  .hero {

    min-height: 70vh !important;
    height: auto !important;


    padding-top: 6rem !important;
    padding-bottom: 3rem !important;

    display: flex;
    align-items: center;
  }


  #hero-headline {
    margin-top: 1rem !important;
    font-size: 2.4rem !important;
  }

  .hero-container {
    margin-top: 0 !important;
  }
}


@media (max-width: 768px) {
  .hero {
    min-height: 60vh !important;
    padding-top: 5rem !important;
  }

  #hero-headline {
    margin-top: 0.5rem !important;
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.3 !important;
  }
}




@media (max-width: 1600px) {
  .hero {
    min-height: 70vh !important;
    height: auto !important;
    padding-top: 6rem !important;
    padding-bottom: 2rem !important;
  }


  #hero-headline {
    margin-top: 0.5rem !important;
    font-size: 2.8rem !important;
  }

  .hero-container {
    margin-top: 0 !important;
  }
}


@media (max-width: 768px) {
  .hero {
    min-height: 60vh !important;
    padding-top: 5rem !important;
  }

  #hero-headline {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.3 !important;
  }
}



.hero {
  height: 70vh !important;
  min-height: 70vh !important;
  max-height: 70vh !important;

  padding-top: 150px !important;
  padding-bottom: 40px !important;

  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  position: relative !important;
  width: 100% !important;
}


@media (max-width: 768px) {
  .hero {
    height: 60vh !important;
    min-height: 60vh !important;
    max-height: 60vh !important;
    padding-top: 60px !important;
    padding-bottom: 20px !important;
  }

  .hero-text {
    text-align: center !important;
    align-items: center !important;
  }

  #hero-headline {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    margin-top: 0 !important;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.3 !important;
  }
}



.hero-btn-new {
  margin-top: 20px !important;
  /* Text se thoda door */
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  margin-bottom: 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Thoda shadow taaki alag dikhe */
  align-self: flex-start !important;
  /* Left side mein chipka rahega */
  width: fit-content !important;
}

.hero-btn-new:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
}

/* Mobile ke liye thoda adjust */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px !important;
  }

  .hero-text {
    text-align: center;
    /* Mobile pe center */
  }
}

@media (max-width: 768px) {
  .hero-btn-new {
    align-self: center !important;
    /* Mobile pe beech mein aa jayega */
    margin-bottom: 40px;
    /* Mobile pe thoda kam gap */
  }
}


/* =========================================
   COMPACT FOOTER STYLES (50% Height Reduced)
   ========================================= */

.footer {
  /* Padding 4rem se ghata kar 2.5rem kar di */
  /* padding: 2.5rem 0 1rem;  */
  padding: 1.5rem 0 1rem;
  background-color: #5c7bc0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  margin-top: 3rem;

  /* Curve ko bhi thoda chota kiya taaki compact lage */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(7, 1fr);
  gap: 1rem;
  align-items: start;
}

/* --- Brand Section --- */
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left !important;
}

.footer-logo {
  height: 32px;
  /* Adjusted height to fit well with 20px font */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-brand h2 {
  font-size: 20px;
  /* Font size 26px se 20px */
  color: #ffffff;
  margin: 0 !important;
  /* Reset margin for better alignment inside flexbox */
  padding-left: 0;
  text-align: left !important;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 13px;
  /* Text chota kiya */
  line-height: 1.5;
  color: #e8eaf6;
  max-width: 300px;
  margin-bottom: 1rem;
  /* Gap kam kiya */
  opacity: 0.95;
}

/* --- Compact Social Icons --- */
.social-links {
  display: flex;
  gap: 8px;
  /* Icons ke beech ka gap kam kiya */
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  /* Size 40px se 32px */
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-links a svg {
  width: 14px;
  /* Icon andar ka size chota */
  height: 14px;
  fill: currentColor;
}

.social-links a:hover {
  background: var(--color-accent);
  /* Background ab Yellow hoga */
  color: #ffffff;
  /* Icon ka color White rahega */
  border-color: var(--color-accent);
  /* Border bhi Yellow ho jayegi */
  transform: translateY(-2px);
}

/* --- Columns Headers --- */
.footer-col h4 {
  font-size: 15px;
  /* Heading choti ki */
  color: #ffffff;
  margin-bottom: 1rem;
  /* Gap kam kiya */
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* Underline decoration */
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 24px;
  /* Line choti ki */
  height: 2px;
  background-color: #ffb74d;
  border-radius: 2px;
}

/* --- Compact Links Styling --- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
  /* List items ke beech ka gap aadha kar diya */
  line-height: 1.2;
}

.footer-col ul li a {
  font-size: 13px;
  /* Link text chota */
  color: #e8eaf6;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 2px 0;
  /* Click area thoda rakha par height kam ki */
}

.footer-col ul li a:hover {
  color: #ffffff;
  /* transform: translateX(4px);  <-- Removed to stop shaking */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* --- Compact Footer Bottom --- */
.footer-bottom {
  margin-top: 1rem;
  /* Upar se gap kam kiya */
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 12px;
  /* Copyright text chota */
  color: #c5cae9;
}

/* =========================================
   RESPONSIVE (Tablet/Mobile)
   ========================================= */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-container {
    justify-content: center;
  }

  .footer-brand p {
    margin: 0 auto 1rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer {
    padding: 2rem 0 1rem;
    border-radius: 0;
  }

  .footer-bottom {
    margin-top: 1.5rem;
  }
}

.footer-brand {
  align-self: center !important;
  /* Vertically align the brand section to the middle of the grid */
  text-align: left !important;
}



/* =======================================================
   FAQ FLOAT BUTTON & POPUP STYLES
   ======================================================= */

/* 1. Floating Button */
.faq-float-btn {
  position: absolute;
  /* Page ke sath scroll hoga */
  bottom: 32px;
  left: 24px;

  background: var(--color-primary);
  /* Button Blue rahega */
  color: #fff;

  /* --- YEH NAYA ADD KIYA HAI (Yellow Border) --- */
  border: 3px solid var(--color-accent);
  /* ------------------------------------------- */

  padding: 12px 22px;
  /* Thoda adjust kiya taaki border ke sath acha dikhe */
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 5000;
  transition: all 0.3s ease;
}

.faq-float-btn:hover {


  transform: translateY(-4px);

  /* --- HOVER EFFECTS --- */
  background-color: var(--color-accent);
  /* Background ab YELLOW (Orange type) hoga */
  border-color: var(--color-primary);
  /* Border BLUE hogi */
  color: #fff;
}

/* 2. Popup Container */
.faq-popup {
  position: absolute;
  bottom: 90px;
  left: 30px;
  width: 350px;
  max-width: calc(100vw - 60px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  display: none;
  /* Default Hidden */
  flex-direction: column;
  z-index: 10000;
  border: 1px solid #e0e0e0;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

/* 3. Popup Header */
.faq-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f5f7fa;
  border-bottom: 1px solid #eee;
  border-radius: 12px 12px 0 0;
}

.faq-popup-header h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.faq-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  line-height: 1;
}

/* 4. Popup Body */
.faq-popup-body {
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}

/* 5. FAQ Items (Questions & Answers) */
.faq-item {
  border-bottom: 1px solid #f0f0f0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f9f9f9;
  color: #5c6bc0;
}

.faq-question span {
  font-size: 18px;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  background-color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Active State (Open) */
.faq-item.active .faq-answer {
  max-height: 150px;
  /* Adjust if content is long */
  padding-bottom: 15px;
}

.faq-item.active .faq-question {
  color: #5c6bc0;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  /* Cross ban jayega */
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .faq-float-btn {
    left: 20px;
    bottom: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .faq-popup {
    left: 20px;
    bottom: 80px;
    width: 300px;
  }
}





/* =======================================================
   ONLY ICON CONTAINER STYLE UPDATE
   ======================================================= */

/* 1. Reset Card Background (Agar purana code lagaya tha to ye use theek kar dega) */
.feature-card {
  background-color: var(--color-background) !important;
  color: var(--color-text-dark) !important;
  border: 1px solid var(--color-border-light);
}

.feature-card p {
  color: var(--color-text-light) !important;
}

.feature-card h3 {
  color: var(--color-primary) !important;
}

/* 2. Gol Icon Container ka Default Color (Footer Blue) */
.feature-icon-container {
  background-color: #5c7bc0 !important;
  /* Footer Blue */
  transition: all 0.3s ease;
}

/* Icon ka color White rakhein */
.feature-icon-container svg,
.feature-icon-container .feature-icon {
  fill: #ffffff !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* 3. Card Hover karne par Icon Container Yellow ho jaye */
.feature-card:hover .feature-icon-container {
  background-color: var(--color-accent) !important;
  /* Yellow */
  transform: scale(1.1);
  /* Thoda sa bada hoga style ke liye */
  box-shadow: 0 4px 15px rgba(255, 183, 77, 0.4);
}

/* 4. Hover par Icon ka color wapas Blue ho jaye (Taaki Yellow pe dikhe) */
.feature-card:hover .feature-icon-container svg,
.feature-card:hover .feature-icon-container .feature-icon {
  fill: #5c7bc0 !important;
  /* Icon Blue */
  color: #5c7bc0 !important;
  stroke: #5c7bc0 !important;
  transform: rotateY(180deg);
  /* Ghumne wala effect */
}

/* Help Assistant Bot Styles */
.ha-fab {
  position: fixed;
  bottom: 120px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
  z-index: 1200;
}

.ha-tooltip {
  position: fixed;
  bottom: 84px;
  right: 24px;
  background: #1f2937;
  color: white;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(3px);
  transition: 0.18s;
  white-space: nowrap;
  z-index: 1200;
}

.ha-box {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 350px;
  max-height: 70vh;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.10);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1190;
}

.ha-header {
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.ha-close-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #6b7280;
  cursor: pointer;
}

.ha-content-area {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-dark);
  overflow-y: auto;
}

.haBtn {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.haBtn-primary {
  border: none;
  background: var(--color-primary);
  color: #ffffff;
}

.haBtn-primary:hover {
  background: color-mix(in srgb, var(--color-primary) 85%, white);
}

.haBtn-secondary {
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: var(--color-text-dark);
}

.haBtn-secondary:hover {
  background: color-mix(in srgb, var(--color-primary) 12%, white);
}

.ha-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.ha-card-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.ha-card-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.36;
  margin-bottom: 8px;
}

.ha-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Other general inline styles */
.hero-divider {
  margin-top: 0.1px;
}

.timeline-margin {
  margin-top: 1em;
}

.industries-section {
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.industries-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.industries-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hidden-p {
  display: none;
}

.clients-section {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 4rem;
}

.clients-title {
  margin-bottom: 1rem;
}

.clients-subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.footer-margin {
  margin-bottom: 5rem;
}

.contact-error-msg {
  color: #e11d48;
  margin-top: 6px;
  display: none;
  font-size: 13px;
}

/* Intl API Custom Styling */
.iti {
  width: 100%;
  margin-top: 4px;
}

.iti__flag {
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png');
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png');
  }
}

.iti__country-list {
  z-index: 10001 !important;
  /* Ensure it stays above modals and panels */
  width: 250px;
}

/* Fix for ITI phone input overlap issue */
.iti {
  display: block;
  /* Ensures ITI wrapper takes full width properly */
}

.iti__flag-container {
  z-index: 10000;
  /* Ensure dropdown displays above everything */
}

.iti input[type="tel"] {
  padding-left: 50px !important;
  /* Make sure text does not overlap with flag */
}

/* Client Showcase Styles */
.clients-hero {
  background: linear-gradient(135deg, #5c6bc0 0%, #7986cb 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clients-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.clients-hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.clients-hero .hero-subtitle {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.clients-intro {
  padding: 4rem 0 2rem;
  background-color: #f8f9fa;
}

.clients-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.clients-intro-content h2 {
  font-size: 2.2rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.clients-intro-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.clients-intro-content p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0 auto;
}

.clients-stats {
  padding: 2rem 0 4rem;
  background-color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1rem;
  color: var(--color-text-dark);
  font-weight: 500;
  margin: 0;
}

.clients-showcase {
  padding: 4rem 0;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.client-category {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
}

.client-category h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.client-logo-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.client-logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%) opacity(0.8);
}

.client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.client-name {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.author-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #5c6bc0 0%, #7986cb 100%);
  color: white;
  text-align: center;
}

.clients-cta {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.clients-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.clients-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.partnership-benefits {
  padding: 4rem 0;
  background-color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-card p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .client-logos {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .clients-hero {
    padding: 4rem 0 3rem;
  }

  .clients-hero h1 {
    font-size: 2.2rem;
  }

  .clients-hero .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .clients-hero .hero-subtitle {
    font-size: 1rem;
    max-width: 600px;
  }
}

.clients-intro-content h2 {
  font-size: 1.8rem;
}

.stat-item {
  padding: 1.5rem;
}

.stat-item h3 {
  font-size: 2rem;
}

.client-logo-item {
  padding: 1rem;
}

.client-logo-item img {
  max-height: 50px;
}

.testimonial-card {
  padding: 1.5rem;
}

.clients-cta {
  padding: 2rem;
}

.clients-cta h2 {
  font-size: 1.8rem;
}

@media (max-width: 480px) {
  .clients-hero h1 {
    font-size: 1.8rem;
  }

  .clients-intro-content h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .client-logos {
    grid-template-columns: 1fr;
  }

  .client-logo-item {
    padding: 1.2rem;
  }

  .testimonial-content::before {
    font-size: 3rem;
  }

  .clients-cta {
    padding: 1.5rem;
  }

  .clients-cta h2 {
    font-size: 1.5rem;
  }
}

/* ==========================================
   GLOBAL CONTACT MODAL CSS
   ========================================== */
.contact-modal,
.demo-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-modal.active,
.demo-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.contact-modal-content,
.demo-modal {
  background: white;
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-modal.active .contact-modal-content,
.demo-modal-overlay.active .demo-modal {
  transform: translateY(0);
}

.contact-modal-header {
  text-align: center;
  margin-bottom: 12px;
}

.contact-modal-header h2,
.demo-title {
  font-size: 1.8rem;
  color: var(--color-primary, #5c6bc0);
  margin-bottom: 5px;
  text-align: center;
  font-weight: 700;
}

.contact-modal-header p,
.demo-subtitle {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

.close-contact-modal,
.demo-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s, transform 0.2s;
}

.close-contact-modal:hover {
  color: #333;
}

.contact-form .form-group {
  margin-bottom: 8px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 0.85rem;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fcfcfc;
}

.contact-form textarea {
  min-height: 50px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary, #5c6bc0);
  box-shadow: 0 0 0 4px rgba(92, 107, 192, 0.1);
  background-color: #ffffff;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background: var(--color-primary, #5c6bc0);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  margin-top: 5px;
  box-shadow: 0 4px 12px rgba(92, 107, 192, 0.2);
}

.contact-form .btn-submit:hover {
  background: #4a59b0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(92, 107, 192, 0.3);
}

.contact-form .btn-submit:active {
  transform: translateY(0);
}


