@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}


/* ===============================================
   THEME VARIABLES - Light Theme Revert
=============================================== */
:root {
  /* --- Forest Green Design System Tokens --- */
  --fg-50: #F1F5F2;
  --fg-100: #E2EBE5;
  --fg-200: #C6D6CC;
  --fg-300: #A9C2B3;
  --fg-400: #719982;
  --fg-500: #2D5A43;
  --fg-600: #244936;
  --fg-700: #1B3629;
  --fg-800: #12241B;
  --fg-900: #09120E;
  --fg-950: #040806;
  --white: #ffffff;

  /* --- Mapping Tokens to Functional Variables --- */
  --primary-color: #10b981;
  --primary-gradient: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
  --primary-shadow: rgba(16, 185, 129, 0.3);
  --button-glow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.3);

  /* Backgrounds - LIGHT MODE */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-light: rgba(255, 255, 255, 0.65);
  --bg-hover: #f1f5f9;

  /* Text Colors - DARK ON LIGHT */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-link: #2563eb;

  /* Borders & Dividers */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-hover: #cbd5e1;

  /* Shadows */
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Component Specific */
  --header-bg: rgba(255, 255, 255, 0.8);
  --dropdown-bg: #ffffff;
  --card-bg: #ffffff;
  --footer-bg: #ffffff;
  --input-bg: #f8fafc;

  /* Functional States */
  --badge-info-bg: #eff6ff;
  --badge-info-text: #2563eb;
  --badge-danger-bg: #fef2f2;
  --badge-danger-text: #991b1b;
  --badge-success-bg: #f0fdf4;
  --badge-success-text: #166534;

  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --section-padding: 100px;

  /* Futuristic Header Tokens - Light Theme */
  --header-light-bg: rgba(255, 255, 255, 0.85);
  --header-glow: 0 4px 20px rgba(0, 0, 0, 0.03);
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(0, 0, 0, 0.08);
  --nav-text: var(--text-secondary);
  --nav-text-hover: var(--primary-color);
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-top: 72px;
}



section {
  margin: 0;
  padding: var(--section-padding) 0;
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--text-primary);
  line-height: 1.2;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

h4 {
  font-size: 1.15rem;
  font-weight: var(--fw-semibold);
}

p {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--text-secondary);
}

.section-header-modern {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: var(--fw-medium);
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}





/* --------------------Header & Navigation-------------------- */
.site-header {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: none;
}

/* Subtlest noise for texture depth */
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.015;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: -1;
}

.header-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  /* Prevent items from touching */
}

@media (max-width: 1200px) {
  .header-container {
    padding: 10px 16px;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo:hover img {
  transform: scale(1.05);
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

/* Desktop Nav Styles */
.nav-menu {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 6px 10px;
  border-radius: 100px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list>li {
  position: relative;
}

.nav-list>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--nav-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

/* Intermediate screens - make nav compact to fit all items */
@media (min-width: 769px) and (max-width: 1250px) {
  .nav-list {
    gap: 2px;
  }

  .nav-list>li>a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .header-actions .btn-demo {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 950px) {
  .nav-list>li>a {
    padding: 6px 6px;
    font-size: 12px;
  }


}

.nav-list>li>a:hover {
  background: var(--bg-hover);
  color: var(--primary-color);
}

.nav-list>li>a.active {
  color: var(--primary-color);
  background: var(--bg-hover);
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.arrow {
  font-size: 10px;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

/* Dropdown Base */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 99;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--bg-hover);
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Desktop Interactions */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown:hover .arrow {
    transform: rotate(180deg);
  }

  .menu-toggle {
    display: none !important;
  }
}

/* Tablet & Mobile Menu Toggle */
.menu-toggle {
  display: none;
  /* Hidden on desktop by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  /* Slightly larger targets for mobile */
  height: 44px;
  background: var(--bg-hover);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    margin-right: 10px;
    /* Pushes it left from the edge */
  }
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

/* Morph X Icon */
.menu-open .hamburger {
  background: transparent;
}

.menu-open .hamburger::before {
  transform: rotate(45deg);
}

.menu-open .hamburger::after {
  transform: rotate(-45deg);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   RESPONSIVE HEADER SYSTEM
============================================================ */

/* --- TABLET & MOBILE SHARED (Max 1024px) --- */
@media (max-width: 1024px) {
  .nav-list {
    gap: 4px;
  }

  .nav-list>li>a {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* --- MOBILE MENU DRAWER (Max 768px) --- */
@media (max-width: 768px) {

  /* Toggle Button Visible */
  .menu-toggle {
    display: flex !important;
  }

  /* Full Screen Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 24px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid var(--border-color);
    border-radius: 0;
  }

  .menu-open .nav-menu {
    right: 0;
  }

  /* Stack Links Vertically */
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .nav-list>li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-list>li>a {
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
    justify-content: space-between;
    width: 100%;
    border-radius: 0;
    color: var(--fg-900);
  }

  /* Mobile Dropdown Static */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--bg-secondary);
    box-shadow: none;
    border: none;
    padding: 0 0 12px 16px;
    display: none;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  .dropdown.active .arrow {
    transform: rotate(180deg);
  }

  /* Hide Desktop CTA */
  .header-actions .desktop-btn {
    display: none;
  }
}

/* Hide Mobile Elements on Desktop */
@media (min-width: 769px) {

  .mobile-cta,
  .mobile-menu-footer {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }
}


@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility Focus States */

.nav-list>li>a:focus-visible,
.btn-demo:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}





/* ============ SHARED BUTTON SYSTEM ============ */
.btn-demo,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  background: var(--primary-gradient);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  white-space: nowrap;
}

/* Premium Shine Effect */
.btn-demo::before,
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.6s;
}

.btn-demo:hover::before,
.btn:hover::before {
  left: 100%;
}

.btn-demo:hover,
.btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 15px 35px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

.secondary-btn.glass,
.nav-list .btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.secondary-btn.glass:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}


































/* ============================================================
   PREMIUM TECH HERO - LIGHT THEME
============================================================ */
.premium-tech-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}


.hero-container-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content-left {
  position: relative;
  z-index: 20;
  animation: fadeInHero 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-title-main {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  margin-bottom: 35px;
}

.gradient-text-hero {
  background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0.1em 0.05em;
  margin: -0.1em -0.05em;
}

.hero-para-modern {
  font-size: 1.20rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 600px;
  font-weight: 400;
}

.hero-actions-modern {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
}

.btn-hero-primary {
  background: var(--primary-gradient);
  color: white !important;
  padding: 17px 46px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--button-glow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: all 0.6s;
}

.btn-hero-primary:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4), 0 20px 40px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color) !important;
  padding: 18px 46px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(16, 185, 129, 0.1),
      transparent);
  transition: all 0.6s;
}

.btn-hero-secondary:hover::before {
  left: 100%;
}

.btn-hero-secondary:hover {
  background: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
}



/* --- Neural World Background --- */
/* --- Neural World Background (Animated) --- */
.hero-neural-world {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0f2fe 0%, #eef5f9 50%, #f8fbff 100%);
  background-size: 400% 400%;
  animation: heroMeshFlow 15s ease infinite;
  opacity: 0.6;
  z-index: 1;
}

@keyframes heroMeshFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  z-index: 2;
  animation: heroOrbFloat 20s infinite alternate ease-in-out;
}

.hero-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.4);
  /* Blue */
  top: -150px;
  left: 0%;
}

.hero-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.3);
  /* Greenish */
  bottom: -100px;
  right: 0%;
  animation-delay: -5s;
}

@keyframes heroOrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 60px) scale(1.1);
  }
}

#hero-neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: block;
  opacity: 1;
}

/* Update hero container for transparency compatibility */
.premium-tech-hero {
  background: none;
  /* Let the neural world handle background */
}

/* Reset text for light theme */
.hero-title-main {
  color: var(--text-primary);
  text-shadow: none;
  position: relative;
  z-index: 10;
}

.hero-para-modern {
  color: var(--text-secondary);
  text-shadow: none;
  position: relative;
  z-index: 10;
}



@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-container-modern {
    padding: 0 40px;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    min-height: auto;
    padding-top: 80px;
  }

  .hero-content-left {
    max-width: 800px;
    margin-bottom: 60px;
  }

  .hero-para-modern {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions-modern {
    justify-content: center;
  }

  .hero-visual-right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    /* Slightly lower opacity when acting as background */
    justify-content: center;
  }

  .neural-bg-wrapper {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    /* Smaller background on medium screens */
    height: 700px;
  }
}

@media (max-width: 768px) {
  .premium-tech-hero {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: auto;
  }

  .hero-container-modern {
    padding: 0 24px;
    padding-top: 60px;
  }

  .hero-title-main br {
    display: none;
    /* Let text flow naturally on mobile */
  }

  .hero-para-modern {
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .hero-actions-modern {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: auto;
    white-space: nowrap;
    justify-content: center;
    padding: 16px 28px;
    font-size: 15px;
  }

  .neural-bg-wrapper {
    width: 500px;
    /* Even smaller background on mobile */
    height: 500px;
    opacity: 0.25;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-para-modern {
    font-size: 1rem;
  }

  .hero-container-modern {
    padding: 0 20px;
  }
}

/* --------------------Premium Tech Hero Redesign-------------------- */




/* <!-- -------------------Enterprise-section----------------- --> */


/* ================= SECTION 2 : PAIN POINT ================= */

.pain-point {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background: var(--bg-primary);
}

.pain-point .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

/* ================= MODERN PAIN POINT SECTION (LIGHT) ================= */
.premium-pain-point {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 30px 0 50px 0;
}


.mesh-bg-overlay {
  display: none;
}


.container-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 80px;
}

.subheading-modern {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: var(--fw-regular);
}

.subheading-modern .dark-text {
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
}

.main-heading-modern {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.gradient-text-unsafe {
  background: linear-gradient(90deg, #22c1c3, #4ade80, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.modern-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.modern-risk-card {
  background: #ffffff;
  padding: 56px 40px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modern-risk-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}


.icon-box-modern {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 32px;
  color: #ffffff;
}

.icon-teal {
  background: linear-gradient(135deg, #22c1c3 0%, #4ade80 100%);
  box-shadow: 0 10px 20px rgba(34, 193, 195, 0.2);
}

.icon-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  box-shadow: 0 10px 20px rgba(96, 165, 250, 0.2);
}

.icon-green {
  background: linear-gradient(135deg, #4ade80 0%, #22c1c3 100%);
  box-shadow: 0 10px 20px rgba(74, 222, 128, 0.2);
}

.card-stat-modern {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.card-desc-modern {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
}


.modern-cta-box {
  display: flex;
  justify-content: center;
}

.btn-modern-download {
  background: var(--primary-gradient);
  color: #ffffff !important;
  padding: 18px 48px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-modern-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.6s;
}

.btn-modern-download:hover::before {
  left: 100%;
}

.btn-modern-download:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 15px 35px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .modern-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .glass-box-approach {
    padding: 60px 0;
  }

  .premium-pain-point {
    padding: 80px 0;
  }

  .container-modern {
    padding: 0 24px;
  }

  .modern-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }

  .section-header-centered {
    margin-bottom: 30px;
  }

  .subheading-modern {
    font-size: 1rem;
  }

  .modern-risk-card {
    padding: 32px 24px;
  }

  .card-stat-modern {
    font-size: 1.8rem;
  }

  .btn-modern-download {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 1rem;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .container-modern {
    padding: 0 20px;
  }

  .card-stat-modern {
    font-size: 1.6rem;
  }

  .card-desc-modern {
    font-size: 0.95rem;
  }
}



.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.2s;
}

.reveal-delay-2 {
  transition-delay: 0.4s;
}

.reveal-delay-3 {
  transition-delay: 0.6s;
}




/* <!-- -------------------Enterprise-section----------------- --> */







/* <!-- -------------------Trusted-section----------------- --> */

/* ============ THE GLASS BOX APPROACH (ORBITAL LAYOUT) ============ */

.glass-box-approach {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 30px 0 50px 0;
}

.orbit-visualization-container {
  position: relative;
  width: 100%;
  height: 650px;
  /* Further reduced to prevent touching header/button */
  margin: 150px auto 100px;
  /* Reduced vertical margins */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Center Core Styles */
.orbit-center {
  width: 240px;
  height: 240px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  position: relative;
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.25);
  border: 5px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(90deg, #22c1c3, #4ade80, #60a5fa);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.orbit-center:hover {
  transform: scale(1.05);
  box-shadow: 0 0 70px rgba(74, 222, 128, 0.45);
}

.core-label {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.core-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 10px;
}

.center-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.orbit-path-border {
  position: absolute;
  width: 600px;
  /* Reduced further to bring nodes very near to core */
  height: 600px;
  border: 1px dashed rgba(148, 163, 184, 0.3);
  border-radius: 50%;
  z-index: 5;
}

/* Rotation Animation */
.orbit-ring {
  position: absolute;
  width: 600px;
  /* Matches the new tighter path */
  height: 600px;
  z-index: 10;
  animation: orbitRotate 60s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Nodes Positioning */
.orbit-node {
  position: absolute;
  width: 320px;
  /* Slightly smaller to fit tighter orbital path */
  height: 320px;
  z-index: 20;
}

.node-1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.node-2 {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.node-3 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.node-4 {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.node-inner {
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 25px 15px;
  /* Compact padding for 320px size */
  border-radius: 50%;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: counterRotateNodes 60s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@keyframes counterRotateNodes {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

/* Simplified hover for nodes inside rotation */
.orbit-node:hover .node-inner {
  transform: translateY(-8px) scale(1.02);
}

/* Node Icons */
.node-icon-box {
  width: 48px;
  /* Slightly smaller for better fit */
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.icon-security {
  background: linear-gradient(135deg, #22c1c3 0%, #4ade80 100%);
}

.icon-safety {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.icon-transparency {
  background: linear-gradient(135deg, #4ade80 0%, #22c1c3 100%);
}

.icon-fairness {
  background: linear-gradient(135deg, #22c1c3 0%, #60a5fa 100%);
}

.node-inner h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.1;
}


.node-sub {
  font-size: 1rem;
  font-weight: 600;
  color: #1a734e;
  /* Match the teal color in screenshot */
  margin-bottom: 0;
  line-height: 1.3;
}

.node-detail {
  font-size: 0.8rem;
  /* Slightly smaller for tighter layout */
  line-height: 1.4;
  color: #475569;
  max-width: 200px;
  /* Tighter width to fit smaller circle curve */
  margin-bottom: 10px;
}

.node-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #1e293b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.node-badge.danger {
  background: #fef2f2;
  color: #991b1b;
}

/* Visibility Helpers */
.desktop-only {
  display: flex !important;
}

.responsive-only {
  display: none !important;
}

/* CTA Styles */
.modern-cta-box-center {
  display: flex;
  justify-content: center;
  margin-top: 140px;
  position: relative;
  z-index: 30;
}

/* Dots Navigation (Hidden on Desktop) */
.orbit-slider-dots {
  display: none;
}

.btn-modern-action {
  background: var(--primary-gradient);
  color: #ffffff !important;
  padding: 18px 48px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.btn-modern-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.6s;
}

.btn-modern-action:hover::before {
  left: 100%;
}

.btn-modern-action:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 15px 35px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

/* ============ NEURAL FADE SLIDER (RESPONSIVE) ============ */
@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .responsive-only {
    display: block !important;
  }

  /* SECTION HEADER ADJUSTMENTS */
  .section-header-centered {
    margin-bottom: 20px !important;
    padding: 0 15px;
  }

  .section-header-centered h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  /* SLIDER WRAPPER */
  .neural-fade-slider-wrapper {
    width: 100%;
    max-width: 600px;
    /* Constrain width for better card proportions */
    margin: 0 auto !important;
    position: relative;
    padding: 0 20px;
    z-index: 20;
    /* Ensure height fits content */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* SLIDER MAIN CONTAINER */
  .neural-fade-slider {
    position: relative;
    width: 100%;
    min-height: 420px !important;
    /* Reduced min-height slightly to fit better on standard mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
  }

  /* INDIVIDUAL SLIDE */
  .fade-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    /* Center absolutely + scale effect */
    width: 100%;
    max-width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;

    /* Animation configs */
    transition:
      opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
      transform 600ms cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s 600ms;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
    z-index: 1;

    /* Glass card styling */
    background: rgba(255, 255, 255, 0.75);
    /* Slightly more opaque for readability */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  /* ACTIVE SLIDE STATE */
  .fade-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    z-index: 10;
    transition:
      opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
      transform 600ms cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s 0s;
  }

  /* ICON/ILLUSTRATION */
  .slide-illustration {
    margin-bottom: 20px;
    transform: scale(1.1);
    /* Make icon slightly larger */
  }

  /* TYPOGRAPHY */
  .slide-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .slide-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
  }

  .slide-subheading {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
  }

  /* DOTS PAGINATION */
  .slider-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    /* Spacing below the slider card */
    position: relative;
    z-index: 25;
    padding: 10px 0;
    width: 100%;
  }

  /* Mobile Adjustments */
  @media (max-width: 480px) {
    .neural-fade-slider {
      min-height: 380px !important;
    }

    .fade-slide {
      padding: 25px 15px;
    }

    .slide-heading {
      font-size: 1.35rem;
    }
  }
}

.p-dot {
  width: 12px;
  height: 12px;
  background: rgba(203, 213, 225, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid transparent;
}

.p-dot:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

.p-dot.active {
  width: 35px;
  border-radius: 6px;
  background: var(--primary-color);
  box-shadow: 0 0 15px rgba(45, 90, 67, 0.3);
}


@media (max-width: 768px) {
  .neural-fade-slider-wrapper {
    padding: 0 20px;
  }

  .neural-fade-slider {
    min-height: 620px;
  }

  .fade-slide {
    padding: 40px 20px;
  }

  .slide-heading {
    font-size: 1.6rem;
  }

  .slide-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .neural-fade-slider {
    min-height: 650px;
  }

  .slide-heading {
    font-size: 1.4rem;
  }
}

@media (max-width: 580px) {
  .orbit-node {
    flex: 0 0 calc(100% - 40px);
    /* Fill most of the screen width */
    max-width: none;
  }

  .node-inner {
    padding: 35px 20px;
    min-height: 480px;
    /* Ensure consistent height for slider */
  }
}

/* <!-- -------------------Trusted-section----------------- --> */







/* ============================================================
   AI SOLUTIONS SECTION (USER PROVIDED)
============================================================ */
.ai-section {
  font-family: "Inter", sans-serif;
  background: #fff;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #111;
}

.ai-section .container {
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  min-height: 340px;
  /* Reduced from 380px */
  height: auto;
  align-items: stretch;
}

/* ... (skipping unchanged parts) ... */

.ai-section .ai-img {
  margin-top: 0;
  /* Reduced from 10px */
  margin-bottom: 0px;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
  flex-grow: 1;
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: transparent;
}

.ai-section .ai-img img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  max-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.ai-section .card:hover .ai-img img {
  transform: scale(1.08);
}

/* ... */
.ai-section .title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-top: 20px;
  /* Reduced from 30px */
  margin-bottom: 15px;
  /* Reduced from 25px */
  line-height: 1.3;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ... */
.ai-section .desc ul {
  padding: 0;
  margin-top: 10px;
  /* Reduced from 15px */
  list-style: none;
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.ai-section .card {
  position: relative;
  flex: 1;
  height: auto;
  min-height: 100%;
  /* Gradient Border Fix */
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #10b981 0%, #3b82f6 100%) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: flex 0.6s ease, transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: black;
}

.ai-section .card:hover {
  flex: 2;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
}

.ai-section .label {
  position: absolute;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 2rem;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  color: black;
}

.ai-section .card:hover .label {
  opacity: 0;
}

/* ... existing code ... */

/* ... existing code ... */

.ai-section .content {
  opacity: 0;
  transform: translateY(20px);
  text-align: left;
  padding: 40px 15px 0;
  /* Increased to center content */
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
}

/* ... existing code ... */

.ai-section .card:hover .content {
  opacity: 1;
  transform: translateY(0);
}

/* ... existing code ... */

.ai-section .title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-top: 20px;
  /* Reduced from 10px */
  margin-bottom: 5px;
  /* Reduced from 10px */
  line-height: 1.3;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ... existing code ... */

/* ... existing code ... */

.ai-section .desc {
  font-size: 0.95rem;
  text-align: center;
  color: #333;
  padding: 0 10px;
}

.ai-section .desc ul {
  padding: 0;
  margin-top: 15px;
  /* Kept large for separation */
  list-style: none;
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.ai-section .desc li {
  margin-bottom: 12px;
  /* Increased from 8px */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.ai-section .desc li::before {
  content: "•";
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}




/* ... existing code ... */




.ai-section .card:hover .ai-img img {
  transform: scale(1.08);
}

@media (max-width: 1024px) {

  /* CONTAINER: Stack cards vertically with good spacing */
  .ai-section .container {
    flex-direction: column;
    width: 90%;
    min-height: auto;
    height: auto;
    gap: 30px;
    padding-bottom: 40px;
  }

  /* CARD: Full width, auto height, no bottom padding to flush image */
  .ai-section .card {
    width: 100%;
    height: auto;
    min-height: auto;
    flex: none;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    /* Changed from 20px to 0 */
    background: linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, #10b981 0%, #3b82f6 100%) border-box;
    /* Static shadow for visibility */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  /* Disable hover expansion effects */
  .ai-section .card:hover {
    flex: none;
    transform: none;
    min-height: auto;
  }

  /* LABEL: Hide it completely */
  .ai-section .label {
    display: none !important;
  }

  /* CONTENT: Always visible */
  .ai-section .content {
    opacity: 1 !important;
    transform: none !important;
    padding: 30px 20px 0;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* TITLE: Remove hover-underline dependency */
  .ai-section .title {
    margin-top: 0;
    font-size: 1.5rem;
  }

  .ai-section .title::after {
    transform: scaleX(1) !important;
    /* Show underline */
    transform-origin: left;
    bottom: -6px;
  }

  /* LIST: Ensure proper spacing */
  .ai-section .desc ul {
    margin-top: 20px;
  }

  /* IMAGE: Ensure it's visible and scaled correctly */
  .ai-section .ai-img {
    margin-top: 20px;
    border-radius: 0 0 18px 18px;
    height: auto;
    min-height: 200px;
    width: 100%;
    /* Reset from calc(100% + 40px) */
    margin-left: 0;
    /* Reset from -20px */
    margin-right: 0;
    /* Reset from -20px */
  }

  .ai-section .ai-img img {
    max-height: 250px;
    object-fit: cover;
  }
}

/* Specific tweaks for very small screens */
@media (max-width: 480px) {
  .ai-section .container {
    width: 95%;
  }

  .ai-section .title {
    font-size: 1.3rem;
  }

  .ai-section .content {
    padding: 25px 15px 0;
  }

  .ai-section .ai-img {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
}




































/* =========================
   LIGHT PROCESS SECTION
========================= */
/* ============================================================
   PREMIUM AI PROCESS TIMELINE - STRIPE/OPENAI GRADE
============================================================ */
.ai-process-section {
  position: relative;
  padding: 30px 0 50px 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(59, 130, 246, 0.08), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(34, 197, 94, 0.08), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #ecfeff 100%);
  overflow: hidden;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.process-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#process-neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.ai-process-section .container-modern {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5px;
}

.process-main-heading {
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  /* Aligned with .main-heading-modern */
}


.timeline-visual-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  margin-bottom: 65px;
  display: flex;
  align-items: center;
}

.timeline-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#timeline-path {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.35));
  transition: stroke-dashoffset 0.1s linear;
}

.process-steps-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 5;
}

.process-step-item {
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Precise Wave Alignment - Steps match the SVG path peaks/valleys */
.process-step-item[data-step="1"] {
  transform: translateY(140px);
}

.process-step-item[data-step="2"] {
  transform: translateY(-110px);
}

.process-step-item[data-step="3"] {
  transform: translateY(140px);
}

.process-step-item[data-step="4"] {
  transform: translateY(-110px);
}

.process-step-item[data-step="5"] {
  transform: translateY(140px);
}

.process-step-item.visible[data-step="1"] {
  transform: translateY(140px);
}

.process-step-item.visible[data-step="2"] {
  transform: translateY(-110px);
}

.process-step-item.visible[data-step="3"] {
  transform: translateY(140px);
}

.process-step-item.visible[data-step="4"] {
  transform: translateY(-110px);
}

.process-step-item.visible[data-step="5"] {
  transform: translateY(140px);
}

.node-wrapper {
  margin-bottom: 24px;
}

.step-node {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 249, 255, 0.95));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #3b82f6;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 0 6px rgba(59, 130, 246, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(59, 130, 246, 0.15);
  position: relative;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-item:hover .step-node {
  transform: scale(1.15);
  box-shadow:
    0 0 0 8px rgba(34, 197, 94, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.1),
    0 0 25px rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 32px 24px;
  border-radius: 18px;
  text-align: center;
  width: 100%;
  max-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Premium Glow Border Effect */
.process-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step-item:hover .process-card {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.process-step-item:hover .process-card::before {
  opacity: 0.2;
}

.process-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.process-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.process-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.btn-process-methodology {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background: var(--primary-gradient);
  color: white !important;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-process-methodology::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.6s;
}

.btn-process-methodology:hover::before {
  left: 100%;
}

.btn-process-methodology:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.4), 0 18px 38px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .process-visual-wrapper {
    height: 420px;
  }

  .process-steps-container {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .ai-process-section {
    padding: 100px 0;
  }

  .timeline-visual-wrapper {
    height: auto;
    margin-bottom: 40px;
  }

  .timeline-svg {
    display: none;
  }

  .process-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .process-step-item {
    width: 100%;
    transform: none !important;
  }

  .process-card {
    max-width: 90%;
  }

  .process-step-item::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #22c55e, #3b82f6);
    opacity: 0.2;
    z-index: 1;
  }

  .process-step-item[data-step="5"]::after {
    display: none;
  }
}





















/* <!-- -------------------Tech-section----------------- --> */

/* -------------------Tech-section Redesign (Compact & Large Icons)----------------- */

.tech-credibility-section {
  background-color: #fff;
  padding: 30px 0 50px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}



.tech-ambient-glow {
  display: none;
}


.tech-container-modern {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}





.tech-main-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.tech-grid-col {
  flex: 1;
  text-align: center;
}

.tech-vertical-divider {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.08), transparent);
  align-self: center;
}

.tech-col-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.tech-icon-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tech-icon-box {
  width: 110px;
  height: 110px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  /* Balanced padding */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}


.tech-icon-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.tech-icon-box:hover {
  transform: translateY(-6px) scale(1.04);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.tech-icon-box:hover::after {
  opacity: 1;
}

.tech-icon-box img {
  max-width: 85%;
  /* Balanced size */
  max-height: 85%;
  /* Balanced size */
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tech-icon-box:hover img {
  filter: grayscale(0) contrast(1.2);
}

/* Specific adjustments */
.tech-icon-box.small-icon img {
  max-width: 60%;
  max-height: 60%;
}

/* Specific alignments for columns */
.col-2-icons,
.col-3-icons {
  display: flex;
  flex-direction: row;
  /* Force horizontal */
  flex-wrap: wrap;
  justify-content: center;
}

.tech-bottom-row-logos {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
}


.tech-icon-box.wide {
  width: 160px;
  height: 90px;
}

.tech-cta-centered {
  display: flex;
  justify-content: center;
}

.tech-pill-btn {
  background: var(--primary-gradient);
  color: white !important;
  padding: 16px 42px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tech-pill-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.6s;
}

.tech-pill-btn:hover::before {
  left: 100%;
}

.tech-pill-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 15px 35px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

@media (max-width: 1100px) {
  .tech-main-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .tech-vertical-divider {
    display: none;
  }

  .tech-grid-col {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .tech-icon-box {
    width: 90px;
    height: 90px;
    padding: 15px;
  }

  .tech-icon-box.wide {
    width: 130px;
    height: 75px;
  }

  .tech-section-title {
    margin-bottom: 30px;
  }
}

/* -------------------Tech-section Redesign End----------------- */







/* <!-- -------------------Usecase-section----------------- --> */


/* -------------------Premium Trust Industries Section (Compact)----------------- */

.trust-industries-section {
  position: relative;
  padding: 60px 0 40px;
  /* Reduced from 120px */
  overflow: hidden;
  background: #f8fbff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.trust-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0f2fe 0%, #d1fae5 50%, #f8fbff 100%);
  background-size: 400% 400%;
  animation: meshFlow 15s ease infinite;
  opacity: 0.6;
}

@keyframes meshFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  /* Reduced blur */
  opacity: 0.3;
  z-index: 2;
  animation: orbFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: -50px;
  left: 5%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #22c55e;
  bottom: -100px;
  right: 10%;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 60px) scale(1.05);
  }
}

.trust-industries-section .container-split {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  /* Reduced from 80px */
  position: relative;
  z-index: 10;
}

/* LEFT SIDE: Panels */
.trust-panels-container {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Reduced gap */
  position: relative;
}

.floating-panel {
  position: relative;
  width: 100%;
  max-width: 340px;
  /* Slightly narrower */
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 18px;
  /* Reduced padding */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  animation: panelVerticalFloat 5s ease-in-out infinite alternate;
  z-index: 5;
}

@keyframes panelVerticalFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.panel-healthcare {
  align-self: flex-start;
  animation-delay: 0s;
}

.panel-finance {
  align-self: flex-end;
  margin-right: -10px;
  animation-delay: -1.5s;
}

.panel-retail {
  align-self: flex-start;
  margin-left: 20px;
  animation-delay: -3s;
}

/* Ensure depth without messy overlap */
.trust-panels-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.floating-panel:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.healthcare-icon {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.finance-icon {
  background: rgba(234, 179, 8, 0.08);
  color: #ca8a04;
}

.retail-icon {
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
}

.panel-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.panel-highlight {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.panel-subtext {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 10px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 10px;
}

/* RIGHT SIDE: Content (Enhanced with Animations) */
.trust-content-container {
  flex: 0.9;
  padding-left: 20px;
  position: relative;
}

.trust-main-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  animation: textReveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.trust-main-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  border-radius: 10px;
  animation: barExtend 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barExtend {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 60px;
    opacity: 1;
  }
}

.trust-sub-heading {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 500px;
  opacity: 0;
  animation: fadeInDown 1s ease 0.3s forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-bullets-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.trust-bullets-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateX(-15px);
  animation: slideInRight 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Staggered Delay for List Items */
.trust-bullets-list li:nth-child(1) {
  animation-delay: 0.5s;
}

.trust-bullets-list li:nth-child(2) {
  animation-delay: 0.65s;
}

.trust-bullets-list li:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
  transition: all 0.3s ease;
}

.trust-bullets-list li:hover .bullet-dot {
  background: #3b82f6;
  transform: scale(1.5);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}



.trust-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--primary-gradient);
  color: white !important;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.trust-premium-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.6s;
}

.trust-premium-btn:hover::before {
  left: 100%;
}

.trust-premium-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.45), 0 20px 45px rgba(59, 130, 246, 0.35);
  filter: brightness(1.1);
}

@keyframes btnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Extra Decorative Elements (Filling Empty Space) */
.trust-deco-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 15%;
  animation: floatSlow 12s infinite alternate ease-in-out;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 35%;
  animation: floatSlow 15s infinite alternate-reverse ease-in-out;
  animation-delay: -5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
  animation: floatSlow 18s infinite alternate ease-in-out;
}

@keyframes floatSlow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(40px, -40px) rotate(360deg);
  }
}

.trust-float-icon {
  position: absolute;
  font-size: 24px;
  color: rgba(59, 130, 246, 0.15);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.1));
}

.icon-1 {
  top: 25%;
  left: 20%;
  animation: drift 20s infinite linear;
}

.icon-2 {
  bottom: 15%;
  right: 25%;
  animation: drift 25s infinite linear reverse;
}

.icon-3 {
  top: 60%;
  right: 10%;
  animation: drift 22s infinite linear;
  animation-delay: -10s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    transform: translate(100px, -100px) rotate(180deg);
    opacity: 0;
  }
}

/* Enhancing existing orbs with extra shimmer */
.glow-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: orbShimmer 4s infinite alternate ease-in-out;
}

@keyframes orbShimmer {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* RESPONSIVENESS (Optimization) */
@media (max-width: 1024px) {

  .trust-deco-shape,
  .trust-float-icon {
    display: none;
    /* Hide complex bg deco on mobile */
  }

  .trust-industries-section .container-split {
    flex-direction: column-reverse;
    /* Text on top, cards below */
    gap: 50px;
    padding: 0 20px;
    text-align: center;
  }

  .trust-content-container {
    width: 100%;
    padding-left: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .trust-main-heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .trust-main-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .trust-sub-heading {
    margin: 0 auto 30px;
  }

  .trust-bullets-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto 30px;
  }

  .trust-panels-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
  }

  .panel-healthcare,
  .panel-finance,
  .panel-retail {
    align-self: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
    width: 100%;
  }

  .floating-panel {
    animation: none;
    /* Disable float if distracting */
    transform: translateY(0) !important;
  }
}

@media (max-width: 480px) {
  .trust-main-heading {
    font-size: 1.8rem;
  }

  .panel-header h3 {
    font-size: 1rem;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, max-content));

  gap: 15px;
  justify-content: center;
}

/* CARD */
.info-card {
  max-width: 320px;
  width: 100%;
  background: var(--bg-card);
  margin-left: auto;
  margin-right: auto;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid var(--border-color);
}

/* ICON – IMAGE STYLE */
.info-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-color);
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

.info-card:hover .icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 var(--fg-400);
}

/* TITLE */
.card-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

/* BLUE LINE */
.card-highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-500);
  margin-bottom: 12px;
}

/* DESCRIPTION */
.card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* STATUS PILLS */
.status-pill {
  display: inline-block;
  padding: 10px 18px;
  /* margin-top: 20px; */
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

/* PILL VARIANTS */

.status-pill.info {
  background: var(--fg-700);
  color: var(--fg-100);
  transition: all 0.3s ease;
}

.status-pill.info:hover {
  background: var(--fg-600);
  color: var(--fg-50);
  transform: translateY(-2px);
}

/* HOVER EFFECT */
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.15);
}

/* CTA WRAPPER */
.trust-cta {
  margin-top: 70px;
  text-align: center;
}

/* CTA BUTTON */
.trust-btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  color: var(--fg-50);
  background: var(--primary-gradient);

  box-shadow: 0 14px 34px var(--primary-shadow);
  transition: 0.35s ease;
}

/* HOVER */
.trust-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 44px var(--primary-shadow);
}


/* <!-- -------------------Usecase-section----------------- --> */







/* -------------------Journey Section Redesign----------------- */

.journey-section {
  position: relative;
  padding: 120px 0;
  background: #f8fbff;
  overflow: hidden;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.container-modern {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}



.journey-grid-modern {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.journey-card-modern {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
}

.journey-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #60a5fa;
}

.card-icon-modern {
  width: 64px;
  height: 64px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #3b82f6;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.journey-card-modern:hover .card-icon-modern {
  background: #3b82f6;
  color: #ffffff;
}

.card-title-modern {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.card-desc-modern {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.5;
}

.journey-pill-btn {
  margin-top: auto;
  background: var(--primary-gradient);
  color: white !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.journey-pill-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transition: all 0.6s;
}

.journey-pill-btn:hover::before {
  left: 100%;
}

.journey-pill-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45), 0 15px 35px rgba(59, 130, 246, 0.35);
  filter: brightness(1.1);
}

@media (max-width: 992px) {
  .journey-grid-modern {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .journey-card-modern {
    width: 100%;
    max-width: 600px;
    /* Increased from 450px */
    padding: 30px 25px;
    /* Slightly more side padding */
  }

  .card-title-modern {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .journey-card-modern {
    max-width: 100%;
  }

  .main-heading-modern {
    font-size: 2rem;
  }
}

/* -------------------Journey Section Redesign End----------------- */




/* -------------------Safety Guarantee Redesign (Dashboard Style)----------------- */

.safety-guarantee-modern {
  position: relative;
  padding: 80px 0 60px;
  background-color: #f8fafc;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
}


.safety-neural-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

.container-safety {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.safety-dashboard-wrapper {
  position: relative;
  height: 820px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}


/* Background Aura */
.safety-dashboard-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


/* SVG Connection Lines */
.safety-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.connection-path {
  fill: none;
  stroke: #cbd5e1;
  stroke-width: 1;
  stroke-dasharray: 4, 4;
  opacity: 0.6;
}


/* Central Shield */
.safety-central-shield {
  position: relative;
  z-index: 10;
  width: 280px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.shield-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(59, 130, 246, 0.4);
  overflow: hidden;
}



@keyframes shieldPulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

.shield-content {
  position: absolute;
  top: 50.5%;
  /* Visual adjustment for polygon bottom-heaviness */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.shield-content i {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
  display: block;
}

.shield-text {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center !important;
  display: block;
  margin: 0;
  padding: 0;
}


/* Guarantee Nodes */
.safety-node {
  position: absolute;
  width: 280px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  z-index: 15;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
}




.safety-node:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.1);
}

/* Correct positions for accurate formation */
.node-left {
  top: 60px;
  left: 50px;
}

.node-right {
  top: 60px;
  right: 50px;
}

.node-bottom {
  bottom: 15px;
  left: calc(50% - 140px);
  /* Shifted 140px to the left from center */
  transform: translateX(-50%);
}




.node-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: 0 auto 15px;
  background: #0f172a;
  color: #fff;
}



/* Node Contents Style */
.safety-node h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}


.safety-node p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}



/* CTA Button */
.safety-cta-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 20;
}

.safety-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  background: var(--primary-gradient);
  color: white !important;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.safety-premium-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transition: all 0.6s;
}

.safety-premium-btn:hover::before {
  left: 100%;
}

.safety-premium-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.45), 0 15px 40px rgba(59, 130, 246, 0.35);
  filter: brightness(1.1);
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .safety-dashboard-wrapper {
    height: auto;
    padding: 30px 15px;
    flex-direction: column;
    align-items: center;
    /* Force horizontal centering on mobile */
    gap: 20px;
    border-radius: 24px;
  }

  .safety-connections {
    display: none;
  }

  .safety-node {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 380px;
  }

  .safety-central-shield {
    order: -1;
    margin-bottom: 20px;
    width: 220px;
    height: 260px;
  }
}

/* -------------------Safety Guarantee Redesign End----------------- */



.fade-item {
  opacity: 1;
  transform: translateY(30px);
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 2s ease;
}


.safety-guarantee {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* INITIAL STATE */
.safety-guarantee {
  opacity: 0.3;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

/* CURSOR AANE PAR */
.safety-guarantee:hover {
  opacity: 1;
  transform: translateY(0);
}



/* INITIAL STATE */
.guarantee-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* WHEN CURSOR ENTERS SECTION */
.safety-guarantee:hover .guarantee-item {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGERED DELAY */
.safety-guarantee:hover .guarantee-item:nth-child(1) {
  transition-delay: 0.1s;
}

.safety-guarantee:hover .guarantee-item:nth-child(2) {
  transition-delay: 0.3s;
}

.safety-guarantee:hover .guarantee-item:nth-child(3) {
  transition-delay: 0.5s;
}


/* INITIAL STATE — sab hidden */
.safety-title,
.guarantee-item,
.safety-link {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* HOVER ON SECTION — show all */
.safety-guarantee:hover .safety-title,
.safety-guarantee:hover .guarantee-item,
.safety-guarantee:hover .safety-link {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGERED DELAYS */
.safety-guarantee:hover .safety-title {
  transition-delay: 0.1s;
}

.safety-guarantee:hover .guarantee-item:nth-child(1) {
  transition-delay: 0.3s;
}

.safety-guarantee:hover .guarantee-item:nth-child(2) {
  transition-delay: 0.5s;
}

.safety-guarantee:hover .guarantee-item:nth-child(3) {
  transition-delay: 0.7s;
}

.safety-guarantee:hover .safety-link {
  transition-delay: 0.9s;
}


/* <!-- -------------------safety-guarantee-section----------------- --> */







/* ============================================================
   PREMIUM SUBSCRIBE SECTION - LIGHT THEME
============================================================ */
.subscribe-section {
  position: relative;
  padding: 30px 0 50px 0;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Neural Background Sub Section */
.sub-neural-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

#sub-neural-canvas {
  width: 100%;
  height: 100%;
  display: block;
}


.subscribe-section .container {
  position: relative;
  z-index: 10;
}

.sub-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}




.sub-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 40px;
}


/* FORM - PREMIUM GLASSMORPHISM */
.sub-form {
  max-width: 600px;
  margin: 0 auto;
}

.sub-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 8px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-input-group:focus-within {
  transform: translateY(-2px);
  border-color: #4f7bff;
  box-shadow: 0 15px 40px rgba(79, 123, 255, 0.15);
}

.sub-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 32px;
  font-size: 1.05rem;
  color: #0f172a;
  outline: none;
  width: 100%;
}

.btn-subscribe {
  padding: 16px 44px;
  background: var(--primary-gradient);
  color: white !important;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transition: all 0.6s;
}

.btn-subscribe:hover::before {
  left: 100%;
}

.btn-subscribe:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45), 0 15px 35px rgba(59, 130, 246, 0.35);
  filter: brightness(1.1);
}


@keyframes buttonPulse {
  0% {
    box-shadow: 0 8px 20px rgba(79, 123, 255, 0.2);
  }

  50% {
    box-shadow: 0 8px 30px rgba(79, 123, 255, 0.5);
  }

  100% {
    box-shadow: 0 8px 20px rgba(79, 123, 255, 0.2);
  }
}

@media (max-width: 640px) {
  .sub-input-group {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 16px;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .sub-form input {
    background: white;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .btn-subscribe {
    width: 100%;
    padding: 20px;
  }
}













/* --------------------Footer-------------------- */


.footer {
  background:
    radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f1f7f4 100%);
  color: var(--text-secondary);
  padding: 20px 20px 40px;
  /* Added 40px bottom padding */
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.footer::before {
  content: 'AVERIT';
  position: absolute;
  top: 55%;
  /* Slightly lowered for better balance */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10rem, 26vw, 20rem);
  /* Reduced max size from 22rem to 20rem */
  font-weight: 950;
  /* Increased opacity for a bolder but still subtle watermark */
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: 0.12em;
  /* Reduced from 0.15em to ensure it fits */
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.05));
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  z-index: 5;
}

.footer-col.brand h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.footer-col.brand p {
  max-width: 350px;
  line-height: 1.7;
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--primary-color);
}

.footer-col p {
  color: var(--text-primary);
  opacity: 0.9;
  line-height: 1.8;
  font-size: 15px;
  margin-top: 0;
}

/* Center Column (Sitemaps) */
.footer-col:nth-child(2) {
  justify-self: center;
}

/* Right Column (Connect) */
.footer-col:nth-child(3) {
  justify-self: flex-end;
  text-align: left;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.8;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-col ul li a::before {
  content: '→';
  font-size: 12px;
  opacity: 0;
  margin-left: -15px;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  margin-left: 0;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icons a:hover {
  background: var(--primary-gradient);
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px var(--primary-shadow);
}

.footer-bottom {
  margin-top: 10px;
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-primary);
  opacity: 0.7;
}


.contact-list {
  list-style: none;
  margin-bottom: 15px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-primary);
  opacity: 0.85;
  margin-bottom: 15px;
}

.contact-list i {
  font-size: 16px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  margin-top: 2px;
}


/* COMPLIANCE BADGES */
.compliance-badges {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.compliance-badges span {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--text-primary);
  opacity: 0.75;
  background: rgba(0, 0, 0, 0.02);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.compliance-badges i {
  margin-right: 6px;
  font-size: 14px;
  color: var(--primary-color);
}



/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 24px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col.brand {
    text-align: center;
  }

  .contact-list li {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .compliance-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* --------------------Footer-------------------- */




/* =========================================================
   DARK THEME OVERRIDES FOR ALL SECTIONS
========================================================= */

/* Hero Section - Dark Theme */
/* Removed redundant theme overrides as base classes are now variable-driven */


/* =========================================================
   PAIN POINT SECTION (NEW)
========================================================= */

.card-stat-modern {
  font-size: 1.5rem;
}


/* =========================================================
   ULTRA-NARROW RESPONSIVENESS (250px - 180px)
========================================================= */

@media (max-width: 600px) {
  :root {
    --section-padding: 60px;
  }
}

@media (max-width: 300px) {

  /* ... */
  :root {
    --section-padding: 40px;
  }

  /* ... */
  .container,
  .hero-container-modern,
  .container-modern,
  .footer-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  h1 {
    font-size: 1.8rem !important;
  }

  h2 {
    font-size: 1.4rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  p {
    font-size: 0.9rem !important;
  }

  /* Header / Nav */
  .header .container {
    padding: 0 10px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  /* Hero Section */
  .premium-tech-hero {
    padding-top: 80px;
  }

  .hero-title-main {
    font-size: 1.8rem !important;
  }

  .hero-para-modern {
    font-size: 0.9rem !important;
    margin-bottom: 24px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 16px !important;
    font-size: 14px !important;
  }

  /* Pain Point Section */
  .card-stat-modern {
    font-size: 1.4rem !important;
  }

  .modern-risk-card {
    padding: 24px 15px !important;
  }

  .btn-modern-download {
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
  }

  /* Glass Box Approach */
  .orbit-ring {
    padding: 0 10px !important;
  }

  .node-inner {
    padding: 25px 15px !important;
  }

  .node-inner h4 {
    font-size: 0.95rem !important;
  }

  .node-sub {
    font-size: 0.8rem !important;
  }

  .node-detail {
    font-size: 0.7rem !important;
  }

  .orbit-center {
    width: 140px !important;
    height: 140px !important;
  }

  .core-label {
    font-size: 1.5rem !important;
  }

  .core-text {
    font-size: 1rem !important;
  }

  .btn-modern-action {
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }

  /* Footer */
  .footer-col h2 {
    font-size: 20px !important;
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 220px) {

  /* Extreme fixes for 180px */
  .hero-title-main {
    font-size: 1.5rem !important;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-modern-download,
  .btn-modern-action {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  .container-modern,
  .hero-container-modern {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ============ UNIFIED BUTTON SYSTEM (GLOBAL FIX) ============ */

/* Base Button Styles */
.btn,
.btn-demo,
.primary-btn,
.secondary-btn,
.btn-hero-primary,
.btn-modern-action,
.btn-process-methodology,
.trust-premium-btn,
.journey-pill-btn,
.tech-pill-btn,
.btn-modern-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: none;
  line-height: 1.2;
}

/* PRIMARY BUTTONS (Gradient + Shine) */
.btn,
.btn-demo,
.primary-btn,
.btn-hero-primary,
.btn-modern-download,
.btn-modern-action,
.btn-process-methodology,
.trust-premium-btn,
.journey-pill-btn {
  background: var(--primary-gradient);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3), 0 10px 25px rgba(59, 130, 246, 0.2);
}

/* Hover State - Lift & Glow */
.btn:hover,
.btn-demo:hover,
.primary-btn:hover,
.btn-hero-primary:hover,
.btn-modern-download:hover,
.btn-modern-action:hover,
.btn-process-methodology:hover,
.trust-premium-btn:hover,
.journey-pill-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 15px 35px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

/* Shine Animation */
.btn::before,
.btn-demo::before,
.primary-btn::before,
.btn-hero-primary::before,
.btn-modern-download::before,
.btn-modern-action::before,
.btn-process-methodology::before,
.trust-premium-btn::before,
.journey-pill-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s;
}

.btn:hover::before,
.btn-demo:hover::before,
.primary-btn:hover::before,
.btn-hero-primary:hover::before,
.btn-modern-download:hover::before,
.btn-modern-action:hover::before,
.btn-process-methodology:hover::before,
.trust-premium-btn:hover::before,
.journey-pill-btn:hover::before {
  left: 100%;
}

/* SECONDARY BUTTONS (White/Glass + Border) */
.secondary-btn,
.tech-pill-btn {
  background: #ffffff;
  color: var(--primary-color) !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.secondary-btn:hover,
.tech-pill-btn:hover {
  background: #ffffff;
  border-color: var(--primary-color) !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
  transform: translateY(-3px);
  color: var(--primary-color) !important;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {

  .btn,
  .btn-demo,
  .primary-btn,
  .secondary-btn,
  .btn-hero-primary,
  .btn-modern-action,
  .btn-process-methodology,
  .trust-premium-btn,
  .journey-pill-btn,
  .tech-pill-btn,
  .btn-modern-download {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    /* Full width on mobile for better touch targets */
    max-width: 320px;
    /* Limit width */
    margin: 10px auto;
    /* Centering */
    display: flex;
  }
}