:root {
  --bg: #ffffff;
  --section: #f8fafc;
  --card: #ffffff;
  --text: #111827;
  --text-secondary: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
  --gradient: linear-gradient(135deg, #ffb000, #ffd93d, #47d7ac, #3aa8ff, #b65cff, #ff3d8b);
  --accent-pink: #3AA8FF;
  --accent-gradient: linear-gradient(135deg,#47D7AC,#3AA8FF,#4F7CFF);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  overflow-x: hidden;
}

.navbar {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.navbar .nav-link {
  color: #374151;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.35rem;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #111827;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  border-color: rgba(17, 24, 39, 0.06);
  animation: navbarSlideDown 0.35s ease both;
}

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.custom-hamburger {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}

.custom-hamburger span {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background-color: #1F2937;
  transition: .3s ease;
  transform-origin: center;
}

.custom-hamburger span:nth-child(1) {
  top: 3px;
}

.custom-hamburger span:nth-child(2) {
  top: 11px;
}

.custom-hamburger span:nth-child(3) {
  top: 19px;
}

.navbar-toggler[aria-expanded="true"] .custom-hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .custom-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .custom-hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-collapse {
  align-items: center;
}

.navbar-actions {
  margin-left: 0;
}

.navbar-controls {
  margin-left: auto;
}

.navbar .btn-outline-light {
  border-color: #d1d5db;
  background: transparent;
}

.navbar .btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #ffffff;
  animation: gradientShift 3s ease infinite;
}

.navbar .btn-primary:hover,
.navbar .btn-primary:focus,
.navbar .btn-primary:active {
  color: #ffffff;
}

.navbar-nav {
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .navbar {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .navbar-brand {
    margin-right: 0;
    flex-shrink: 0;
  }

  .navbar-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .navbar-toggler {
    margin-left: 0;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 0.75rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  }

  .navbar-collapse .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }
}

.footer-contact-section {
  background: #0b1020;
  padding-top: 3rem;
  padding-bottom: 2rem;
  margin-top: 2.3rem;
}

.footer-contact-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(2, 8, 23, 0.35);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.footer-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(58, 168, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.8), rgba(255, 122, 0, 0.8), rgba(255, 61, 139, 0.8), rgba(182, 92, 255, 0.8), rgba(58, 168, 255, 0.8), rgba(71, 215, 172, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.footer-icon-wrap {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffb000 0%, #ff7a00 20%, #ff3d8b 40%, #b65cff 60%, #3aa8ff 80%, #47d7ac 100%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06), 0 12px 40px rgba(255, 61, 139, 0.24);
}

.footer-icon-wrap i {
  color: #ffffff;
  font-size: 1.5rem;
}

.footer-contact-card h5,
.footer-contact-card p {
  color: #f8fafc;
}

.footer-contact-card .text-secondary {
  color: #cbd5e1 !important;
}

.site-footer {
  background: #0b1020;
  color: #fff;
}

.site-footer .text-secondary {
  color: #94a3b8 !important;
}

.site-footer a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.brand-logo {
  width: 175px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  margin-left:-1rem;
}

.brand-chip {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: #374151;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.py-lg-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-title {
  letter-spacing: -0.03em;
  color: #111827;
}

.gradient-text {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease infinite;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-secondary);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.btn {
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(58, 168, 255, 0.16);
}

.btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 700;
  border: none;
  animation: gradientShift 3s ease infinite;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #ffffff;
}

.btn-outline-light {
  border-color: #d1d5db;
  color: #111827;
  background: #ffffff;
}

.btn-outline-light:hover {
  border-color: #111827;
  background: #f9fafb;
  color: #111827;
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card,
.contact-card {
  position: relative;
}

.hero-card {
  overflow: hidden;
}

.stats-section {
  background: #ffffff;
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 1.5rem;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffb000 0%, #ffd93d 20%, #47d7ac 45%, #3aa8ff 70%, #b65cff 85%, #ff3d8b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.65rem;
}

.stat-description {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.hero-metric {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section-spacing {
  padding: 4rem 0;
}

.section-muted {
  background: var(--section);
}

.section-heading {
  margin-bottom: 1.4rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0em;
  font-size: 1.5rem;
  font-weight: 700;
  color: #191970;
}

.feature-card,
.step-card,
.industry-card,
.pricing-card,
.benefit-list {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.step-card:hover,
.industry-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  border-color: #d1d5db;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg,rgba(71,215,172,.18),rgba(58,168,255,.18));
  color: #191970;
  font-size: 1.2rem;
}

.step-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg,rgba(71,215,172,.18),rgba(58,168,255,.18));
  color: #191970;
  border: 1px solid rgba(58,168,255,.2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.industry-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  width: 100%;
}

.industry-card i {
  font-size: 1.7rem;
  color: #191970;
  flex-shrink: 0;
}

.industry-card h3 {
  margin: 0;
}

.pricing-card.featured {
  border: 1px solid rgba(58, 168, 255, 0.2);
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-gradient);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.price span {
  font-size: 1rem;
  color: var(--text-secondary);
}

.carousel-control-prev,
.carousel-control-next {
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #1e1f4b;
  border: 0;
  box-shadow: 0 12px 30px rgba(58, 168, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
  width: 1.2rem;
  height: 1.2rem;
  filter: brightness(0) invert(1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-next:focus {
  background: linear-gradient(135deg,#FFD93D,#FFB000,#47D7AC,#3AA8FF,#B65CFF,#FF3D8B);
  box-shadow: 0 16px 36px rgba(58, 168, 255, 0.35);
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
  outline: none;
}

.accordion-button {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--text);
}

.accordion-button::after {
  filter: brightness(0.3);
}

.form-control,
.form-select {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 1rem;
}

.form-control::placeholder {
  color: #9ca3af;
}

.form-control:focus,
.form-select:focus {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 0 0 0.2rem rgba(58, 168, 255, 0.16);
  border-color: #60a5fa;
}

.progress {
  height: 0.7rem;
  background: #e5e7eb;
  border-radius: 999px;
}

.progress-bar {
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.shape-one {
  width: 220px;
  height: 220px;
  background: rgba(58, 168, 255, 0.28);
  top: 5%;
  left: -5%;
}

.shape-two {
  width: 260px;
  height: 260px;
  background: rgba(182, 92, 255, 0.22);
  top: 28%;
  right: -8%;
  animation-delay: 1s;
}

.shape-three {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg,rgba(71,215,172,.22),rgba(58,168,255,.22));
  bottom: 4%;
  left: 45%;
  animation-delay: 2s;
}

/* .reveal / .reveal-left / .reveal-right / .reveal-scale
   opacity & transform are now controlled exclusively by
   js/animations.js (GSAP + ScrollTrigger) — no CSS needed here. */


.text-secondary {
  color: var(--text-secondary) !important;
}

.border-dark-subtle {
  border-color: var(--border) !important;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.03);
  }
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-metric {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-title {
    font-size: 1.05rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .stat-number {
    font-size: 3rem;
  }
}

.modal-backdrop {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 300ms ease;
}

.modal.show .modal-dialog {
  transform: scale(1);
}

#demoModal .modal-dialog {
  max-width: 600px;
}

#demoModal .modal-content {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

#demoModal .modal-header,
#demoModal .modal-body,
#demoModal .modal-footer {
  padding: 32px;
}

#demoModal .modal-header {
  padding-bottom: 16px;
}

#demoModal .modal-body {
  padding-top: 8px;
  padding-bottom: 8px;
}

#demoModal .modal-footer {
  padding-top: 16px;
  gap: 12px;
}

#demoModal .modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
}

#demoModal .modal-title::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: transparent;
  background-image: url('../fevicon.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

#demoModal .modal-subtitle {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

#demoModal .btn-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
}

#demoModal .btn-close::before,
#demoModal .btn-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #374151;
  border-radius: 999px;
  transition: background 0.2s ease;
}

#demoModal .btn-close::before {
  transform: rotate(45deg);
}

#demoModal .btn-close::after {
  transform: rotate(-45deg);
}

#demoModal .btn-close:hover {
  background: #E5E7EB;
  transform: rotate(90deg);
}

#demoModal .btn-close:hover::before,
#demoModal .btn-close:hover::after {
  background: #111827;
}

#demoModal .form-control,
#demoModal .form-select {
  border-radius: 16px;
  min-height: 56px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #111827;
  padding: 0.9rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#demoModal .form-control::placeholder,
#demoModal .form-select::placeholder {
  color: #9CA3AF;
}

#demoModal .form-control:focus,
#demoModal .form-select:focus {
  background: #ffffff;
  border-color: #3AA8FF;
  box-shadow: 0 0 0 4px rgba(58, 168, 255, 0.16);
}

#demoModal textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

#demoModal .modal-footer .btn {
  min-height: 52px;
  border-radius: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#demoModal .modal-footer .btn-primary {
  background: linear-gradient(135deg,#FFB000,#FFD93D,#47D7AC,#3AA8FF,#B65CFF,#FF3D8B);
  color: #ffffff;
  border: 0;
  box-shadow: 0 12px 30px rgba(58, 168, 255, 0.22);
}

#demoModal .modal-footer .btn-primary:hover,
#demoModal .modal-footer .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(58, 168, 255, 0.32);
  color: #ffffff;
}

#demoModal .modal-footer .btn-outline-light {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}

#demoModal .modal-footer .btn-outline-light:hover,
#demoModal .modal-footer .btn-outline-light:focus {
  background: #f3f4f6;
  color: #111827;
  border-color: #cbd5e1;
}

#demoModal .invalid-feedback {
  margin-top: 0.45rem;
}

/* ===========================
   Floating AI Assistant
=========================== */

.ai-assistant{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    animation: floating 4s ease-in-out infinite;
}

/* Logo Circle */

.assistant-logo{
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0,0,0,.12),
        0 0 15px rgba(67,199,200,.25);

    transition: all .35s ease;
}

/* Logo */

.assistant-logo img{
    width: 34px;
    height: auto;
    transition: .35s;
}

/* Rings */

.ring{
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Inner Ring */

.ring1{
    width: 60px;
    height: 60px;
    border:2px solid rgba(67,199,200,.45);
    animation: rotate 8s linear infinite;
}

/* Outer Ring */

.ring2{
    width: 72px;
    height: 72px;
    border:2px solid rgba(214,43,209,.45);
    animation: rotateReverse 10s linear infinite;
}

/* Glow Pulse */

.ai-assistant::before{

    content:"";

    position:absolute;

    width:70px;

    height:70px;

    border-radius:50%;

    background:rgba(67,199,200,.10);

    animation:pulse 2.5s infinite;

    z-index:-1;
}

/* Hover */

.ai-assistant:hover .assistant-logo{

    transform:scale(1.12);

    box-shadow:
        0 8px 25px rgba(0,0,0,.18),
        0 0 20px rgba(67,199,200,.45),
        0 0 35px rgba(214,43,209,.30);

}

.ai-assistant:hover img{

    transform:rotate(10deg);

}

.ai-assistant:hover .ring1{

    border-color:#43c7c8;

}

.ai-assistant:hover .ring2{

    border-color:#d62bd1;

}

/* Floating */

@keyframes floating{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Rotation */

@keyframes rotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes rotateReverse{

    from{
        transform:rotate(360deg);
    }

    to{
        transform:rotate(0deg);
    }

}

/* Pulse */

@keyframes pulse{

    0%{
        transform:scale(.9);
        opacity:.6;
    }

    70%{
        transform:scale(1.25);
        opacity:0;
    }

    100%{
        transform:scale(.9);
        opacity:0;
    }

}

/* Mobile */

@media(max-width:768px){

    .ai-assistant{

        width:55px;
        height:55px;
        right:18px;
        bottom:18px;

    }

    .assistant-logo{

        width:45px;
        height:45px;

    }

    .assistant-logo img{

        width:30px;

    }

    .ring1{

        width:55px;
        height:55px;

    }

    .ring2{

        width:65px;
        height:65px;

    }

}
.ring1{
    border-top-color:#43c7c8;
    border-right-color:transparent;
    border-bottom-color:transparent;
    border-left-color:transparent;

    animation:rotate 1.5s linear infinite;
}


/* Overlay */

.ai-search-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.45);

display:none;

justify-content:center;

align-items:flex-start;

padding-top:120px;

z-index:99999;

}

/* Modal */

.ai-search-modal{

width:900px;

max-width:95%;

background:#fff;

border-radius:18px;

padding:20px;

position:relative;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}

/* Close */

.close-search{

position:absolute;

top:15px;
right:15px;

border:none;

background:none;

font-size:30px;

cursor:pointer;

}

/* Search */

.search-box{
display:flex;
align-items:center;
border:2px solid #dce3ec;
border-radius:14px;
padding:12px 15px;
margin-bottom:25px;
}

.search-box img{

width:38px;

margin-right:15px;

}

.search-box input{

flex:1;

border:none;

outline:none;

font-size:18px;

}

.search-box button{

border:none;

background:none;

font-size:24px;

cursor:pointer;

color:#888;

}

/* Heading */

.trending h5{

font-weight:700;

margin-bottom:18px;

}

/* Chips */

.chips{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.chips span{

padding:10px 18px;

background:#eef6ff;

border-radius:25px;

cursor:pointer;

transition:.3s;

font-size:15px;

}

.chips span:hover{

background:#43c7c8;

color:#fff;

}

/* Navbar Search */

.ai-search-trigger{

display:flex;

align-items:center;

width:260px;

height:45px;

padding:0 15px;

border:1px solid #d7dce3;

border-radius:30px;

cursor:pointer;

background:#fff;

margin-right:15px;

}

.ai-search-trigger img{

width:28px;

margin-right:10px;

}

.ai-search-trigger span{

flex:1;

color:#888;

font-size:15px;

}

.ai-search-trigger i{

font-size:18px;

color:#888;

}

/* Mobile */

@media (max-width:991px){

.ai-search-trigger{

    display:flex;
    align-items:center;

    width:100%;
    height:46px;

    margin:15px 0 0 0;

}

.navbar-controls{

    flex-wrap:wrap;

}

.ai-search-modal{

    width:95%;
    margin:0 auto;

}

}
@media (min-width:992px){

.mobile-search{

    display:none;

}

}
.desktop-search{
    display:flex;
}

.mobile-search{
    display:none;
}

@media (max-width:991px){

    .desktop-search{
        display:none !important;
    }

    .container.d-lg-none{
        padding:0 15px;
        margin-top:12px;
    }

    .mobile-search{

        display:flex !important;
        align-items:center;
        justify-content:space-between;

        width:100%;
        height:48px;

        padding:0 16px;

        border:1px solid #d7dce3;
        border-radius:30px;
        background:#fff;

    }

    .mobile-search img{
        width:28px;
        margin-right:10px;
        flex-shrink:0;
    }

    .mobile-search span{
        flex:1;
        color:#777;
        font-size:15px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .mobile-search i{
        font-size:18px;
        color:#777;
        flex-shrink:0;
    }

}

/* Old CSS reveal stagger delays removed — GSAP stagger used instead. */


/* ==========================================================================
   Industries Section Layout Fix
   ========================================================================== */
#industries {
  position: relative !important;
  display: block !important;
  height: auto !important;
  min-height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  scroll-margin-top: 90px;
}
/* Offset for fixed navbar */
section[id] {
    scroll-margin-top: 110px;
}

/* Mobile */
@media (max-width: 991.98px) {
    section[id] {
        scroll-margin-top: 90px;
    }
}

/* Mobile View */
@media (max-width: 768px) {

    .ai-search-modal {
        width: 92%;
        max-width: 92%;
        padding: 20px;
        border-radius: 25px;
        overflow: visible;
    }

    .close-search {
        top: -12px;
        right: -12px;
        width: 42px;
        height: 42px;
        font-size: 28px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-box {
        padding: 10px 15px;
        gap: 10px;
    }

    .search-box img {
        width: 28px;
        height: 28px;
    }

    .search-box input {
        font-size: 16px;
        min-width: 0;
    }

    .search-box button {
        flex-shrink: 0;
        padding: 0;
        background: transparent;
        border: none;
        font-size: 22px;
    }

    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .chips span {
        font-size: 14px;
        padding: 10px 16px;
    }
}
.ai-search-modal {
    position: relative;
    padding: 50px 40px 30px; /* Increase top padding */
    background: #fff;
    border-radius: 25px;
}

.close-search{
    position: absolute;
    top: -18px;
    right: -18px;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;

    /* Center the X */
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    line-height: 1;
    padding: 0;
}
.site-footer {
background: #fff;}
.site-footer .text-secondary {
color: #111827 !important;
}
.footer-socials a {
background: #1e1f4b;
width: 45px;
height: 45px;}
.footer-socials a:hover {
background: #43c7c8;
}
.footer-divider {
    border-top: 1px solid #000;
}
.brand-video {
    height: 50px;
    width: 210px;
    object-fit: cover;
}
/* Mobile View */
@media (max-width: 767px) {
    .brand-video {
        width: 175px;
    }
}
.offer-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #1e1f4b, #1e1f4b);
    color: #fff;
    padding: 12px 0;
    white-space: nowrap;
}

.offer-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.offer-track span {
    font-size: 15px;
    font-weight: 600;
    margin-right: 60px;
}

.offer-marquee:hover .offer-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.industry-card-content i {
    font-size: 2rem;
    color: #2b2b8f;
    margin-right: 18px;
    transition: all .35s ease;
}

.industry-card:hover .industry-card-content i {
    transform: scale(1.15) rotate(-8deg);
    color: #5B5BEF;
}
.icon-wrap{
    width:72px;
    height:72px;
    border-radius:20px;
    background:linear-gradient(135deg,#E8F7FF,#DDF7F1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    transition:.4s ease;
}

.icon-wrap i{
    font-size:32px;
    color:#25318D;
    transition:.4s ease;
}

.feature-card:hover .icon-wrap{
    transform:translateY(-8px) rotate(-6deg);
    box-shadow:0 15px 35px rgba(37,49,141,.15);
}

.feature-card:hover .icon-wrap i{
    transform:scale(1.15);
    color:#4F46E5;
}