/* ======================================
   AIVIO - AI Startup Template
   Version: 1.0.0
   ====================================== */

/* Lili support widget — hidden sitewide for now (kept in DOM for later use).
   Remove this block to restore visibility. */
.lili-launcher,
.lili-panel { display: none !important; }

/* ======= Cookie Consent Banner (shared across all pages) ======= */
.lt-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.lt-cookie-banner.is-visible {
  animation: ltCookieIn 0.32s ease forwards;
  pointer-events: auto;
}
@keyframes ltCookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lt-cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18), 0 8px 16px rgba(15, 23, 42, 0.08);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.lt-cookie-copy { flex: 1; min-width: 0; }
.lt-cookie-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.lt-cookie-copy strong i { color: #6366f1; font-size: 17px; }
.lt-cookie-copy p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
}
.lt-cookie-copy p strong { display: inline; color: #0f172a; font-weight: 600; }
.lt-cookie-copy a { color: #4338ca; text-decoration: underline; }
.lt-cookie-copy a:hover { color: #3730a3; }

.lt-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.lt-cookie-btn {
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.lt-cookie-btn--ghost {
  background: #fff;
  color: #334155;
  border-color: #cbd5e1;
}
.lt-cookie-btn--ghost:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: translateY(-1px);
}
.lt-cookie-btn--primary {
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}
.lt-cookie-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.36);
}
.lt-cookie-btn:active { transform: translateY(0); }

@media (max-width: 767.98px) {
  .lt-cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .lt-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 14px;
  }
  .lt-cookie-actions { justify-content: stretch; }
  .lt-cookie-actions .lt-cookie-btn { flex: 1; text-align: center; padding: 11px 14px; }
  .lt-cookie-copy p { font-size: 13px; }
}

/* ======= Scroll to Top Button (shared across all pages) ======= */
.lt-scroll-top {
  position: fixed;
  right: 28px;
  bottom: 104px; /* stacked above the Lili launcher on pages that have it */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
  z-index: 1050;
}

/* On pages without Lili launcher, keep original bottom spacing */
body:not(.has-lili) .lt-scroll-top { bottom: 28px; }

.lt-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lt-scroll-top:hover,
.lt-scroll-top:focus {
  background: linear-gradient(135deg, #4f46e5, #1d4ed8);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.38);
  color: #fff;
  outline: none;
  transform: translateY(-3px);
}

.lt-scroll-top:active {
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .lt-scroll-top {
    right: 16px;
    bottom: 86px;
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  body:not(.has-lili) .lt-scroll-top { bottom: 16px; }
}


/* ======= Lili AI Support Chat Widget (index.php only) ======= */
.lili-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #2563eb 100%);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.38),
              0 0 0 0 rgba(99, 102, 241, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1051;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: liliPulse 2.4s ease-in-out infinite;
}
.lili-launcher:hover,
.lili-launcher:focus {
  outline: none;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(79, 70, 229, 0.48);
}
.lili-launcher:active { transform: translateY(-1px) scale(1.02); }
.lili-launcher img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 1px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05);
}
@keyframes liliPulse {
  0%   { box-shadow: 0 12px 28px rgba(79, 70, 229, 0.38), 0 0 0 0 rgba(99, 102, 241, 0.45); }
  70%  { box-shadow: 0 12px 28px rgba(79, 70, 229, 0.38), 0 0 0 18px rgba(99, 102, 241, 0); }
  100% { box-shadow: 0 12px 28px rgba(79, 70, 229, 0.38), 0 0 0 0 rgba(99, 102, 241, 0); }
}
.lili-panel {
  position: fixed;
  right: 24px;
  bottom: 104px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.22), 0 10px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1052;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.lili-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lili-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, #0F172B 0%, #1C398E 55%, #4D179A 100%);
}
.lili-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.lili-avatar img { width: 40px; height: 40px; object-fit: contain; }
.lili-title { flex: 1; min-width: 0; line-height: 1.2; }
.lili-title strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.lili-title small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #cbd5e1;
  margin-top: 2px;
}
.lili-title small::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}
.lili-close {
  background: transparent;
  border: 0;
  color: #cbd5e1;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.lili-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

.lili-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
}
.lili-body::-webkit-scrollbar { width: 6px; }
.lili-body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

.lili-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  animation: liliMsgIn 0.25s ease;
}
@keyframes liliMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lili-msg.from-lili {
  align-self: flex-start;
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-top-left-radius: 4px;
}
.lili-msg.from-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #fff;
  border-top-right-radius: 4px;
}
.lili-msg a { color: inherit; text-decoration: underline; }

.lili-typing {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 12px 14px;
  display: inline-flex;
  gap: 4px;
}
.lili-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #94a3b8;
  animation: liliTypeBounce 1.2s ease-in-out infinite;
}
.lili-typing span:nth-child(2) { animation-delay: 0.15s; }
.lili-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes liliTypeBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

.lili-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 4px 4px;
}
.lili-quick button {
  font-size: 12.5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #c7d2fe;
  color: #4338ca;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.lili-quick button:hover {
  background: #eef2ff;
  transform: translateY(-1px);
}

.lili-footer {
  border-top: 1px solid #e2e8f0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
}
.lili-input {
  flex: 1;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  font-family: inherit;
  color: #0f172a;
}
.lili-input:focus {
  border-color: #6366f1;
  background: #fff;
}
.lili-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.lili-send:hover { transform: translateY(-1px); }
.lili-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.lili-foot-note {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  padding: 0 12px 10px;
  background: #fff;
}

/* ---- Gate (pre-chat form) ---- */
.lili-gate {
  flex: 1;
  overflow-y: auto;
  padding: 18px 18px 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lili-gate-intro {
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 4px;
}
.lili-gate-intro strong { color: #0f172a; }
.lili-field { display: flex; flex-direction: column; gap: 4px; }
.lili-field label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.01em;
}
.lili-field label .req { color: #dc2626; margin-left: 2px; }
.lili-field input {
  font-family: inherit;
  font-size: 14px;
  padding: 9px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lili-field input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.lili-field input.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}
.lili-captcha-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.lili-captcha-q {
  flex: 1;
  background: #fff;
  border: 1px dashed #c7d2fe;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #4338ca;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  user-select: none;
}
.lili-captcha-q button {
  background: transparent;
  border: 0;
  color: #6366f1;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.lili-captcha-q button:hover { background: #eef2ff; color: #4338ca; }
.lili-captcha-row input {
  width: 72px;
  flex: 0 0 72px;
  text-align: center;
  font-weight: 600;
}
.lili-gate-error {
  font-size: 12px;
  color: #dc2626;
  margin: 0;
  min-height: 16px;
}
.lili-gate-submit {
  margin-top: 4px;
  width: 100%;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}
.lili-gate-submit:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(37, 99, 235, 0.32); }
.lili-gate-submit:active { transform: translateY(0); }
.lili-gate-submit[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.lili-gate-privacy {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 2px 0 0;
}
.lili-gate-privacy a { color: #4338ca; text-decoration: underline; }

/* Hide body/footer while gate is active; hide gate once unlocked */
.lili-panel[data-state="gate"] .lili-body,
.lili-panel[data-state="gate"] .lili-footer,
.lili-panel[data-state="gate"] .lili-foot-note { display: none; }
.lili-panel[data-state="chat"] .lili-gate { display: none; }

@media (max-width: 575.98px) {
  .lili-launcher {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .lili-launcher img { width: 48px; height: 48px; padding: 1px; }
  .lili-panel {
    right: 12px;
    left: 12px;
    bottom: 86px;
    width: auto;
    max-width: none;
    height: calc(100vh - 110px);
    max-height: 560px;
  }
}


/* ======= Base Styles ======= */
:root {
  --primary-color: #6c5ce7;
  --primary-light: #a29bfe;
  --primary-dark: #4834d4;
  --secondary-color: #0abde3;
  --tertiary-color: #ff6b6b;
  --dark-color: #2d3436;
  --light-color: #f5f6fa;
  --gray-color: #636e72;
  --text-color: #2d3436;
  --body-bg: #ffffff;

  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);

  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;

  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s ease;
}

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--body-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0rem;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ======= Utility Classes ======= */
.section-padding {
  padding: 20px 0;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title-sm {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  display: inline-block;
  background: var(--primary-light);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
}

section[id] {
  scroll-margin-top: 10px;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.link-arrow {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.link-arrow i {
  transition: var(--transition);
  margin-left: 5px;
}

.link-arrow:hover i {
  transform: translateX(5px);
}

/* ======= Buttons ======= */
.btn {
  padding: 12px 24px;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.125rem;
}

.btn-rounded {
  border-radius: 50px;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
  transform: translateY(-3px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ======= Navigation ======= */
.navbar {
  transition: var(--transition);
  padding: 10px 0;
  background-color: #ffffff;
}

/* --- Navbar Dropdown Enhancement --- */
.navbar .dropdown-menu {
   border: 1px solid rgba(15, 23, 42, 0.08);
   border-radius: 18px;
   padding: 10px;
   min-width: 280px;
   margin-top: 14px;
   background: rgba(255, 255, 255, 0.98);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
   overflow: hidden;
   position: absolute;
}


.navbar.navbar-scrolled {
  padding: 10px 0;
  background-color: #fff;
  box-shadow: var(--box-shadow);
}

.navbar-brand {
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-nav .nav-link {
  font-size: 13px !important;
  font-weight: 500;
  color: var(--dark-color);
  padding: 8px 15px;
  position: relative;
}

#mainNavbar .navbar-nav .nav-link {
  font-size: 13px !important;
  font-weight: 500 !important;
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
  width: 30px;
}

.navbar-toggler {
  padding: 0;
  border: none;
  color: var(--primary-color);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ======= Hero Section ======= */
.hero-section {
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--gray-color);
}

.hero-buttons {
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(110% + 1.3px);
  height: 110px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

/* ======= Clients Section ======= */
.clients-section {
  background-color: #f8f9fc;
}

.client-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition);
}

.client-logo:hover {
  opacity: 1;
}

.client-logo img {
  max-height: 100px;
}

/* ======= Services Section ======= */
.services-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.service-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* ======= Features Section ======= */
.features-section {
  padding: 20px 0;
}

.features-image {
  position: relative;
  padding: 20px;
}

.features-content {
  padding: 20px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 20px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* ======= Solutions Section ======= */
.solutions-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.solution-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.solution-image {
  height: 220px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.solution-card:hover .solution-image img {
  transform: scale(1.1);
}

.solution-content {
  padding: 25px;
  text-align: center;
}

.solution-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.solution-content p {
  margin-bottom: 20px;
}

/* ======= Use Cases Section ======= */
.use-cases-section {
  padding: 20px 0;
}

.case-study-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.case-study-image {
  height: 100%;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: 20px;
}

.case-study-category {
  display: inline-block;
  background: var(--primary-light);
  color: #fff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.case-study-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* ======= Data Visualization Section ======= */
.data-visualization-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.visualization-container {
  padding: 20px;
}

.visualization-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.visualization-card h3 {
  margin-bottom: 20px;
  text-align: center;
}

.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* ======= Testimonials Section ======= */
.testimonials-section {
  padding: 20px 0;
}

.testimonial-item {
  padding: 30px;
}

.testimonial-content {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-info h4 {
  margin-bottom: 5px;
  font-size: 1.125rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--gray-color);
}

/* ======= Pricing Section ======= */
.pricing-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.pricing-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-color);
}

.pricing-features {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-features li i {
  color: var(--primary-color);
  margin-right: 8px;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 5px 40px;
  font-size: 0.875rem;
  font-weight: 500;
  transform: rotate(45deg);
}

/* ======= Blog Section ======= */
.blog-section {
  padding: 20px 0;
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.blog-image {
  height: auto;
  overflow: hidden;
}

.blog-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.blog-hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.blog-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.blog-image img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  transition: var(--transition);
  border-radius: 20px;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content span {
  color: #0f172a;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.875rem;
  color: var(--gray-color);
}

.blog-meta span {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.blog-meta span i {
  margin-right: 5px;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* ======= Contact Section ======= */
.contact-section {
  padding: 20px 0;
  background-color: #f8f9fc;
}

.contact-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 0;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: #fff;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 50px;
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid #ddd;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

textarea.form-control {
  height: 180px;
  resize: none;
}

/* ======= Footer ======= */
.footer {
  background: #0b1b33;
  color: #fff;
  padding: 70px 0 25px;
  overflow: hidden;
}

.footer-top-row {
  row-gap: 24px;
}

.footerlogo,
.footer-links {
  height: 100%;
  text-align: justify;
}


.footer .footerlogo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  margin-top: -30px;
  display: block;
  filter: brightness(0) invert(1);
}

.footerlogo p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 420px;
}

.footer-links h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-company-menu {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 28px;
  row-gap: 0;
  justify-content: start;
}

.footer-company-menu > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  min-width: 40px; /* keeps size stable */
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 15px 0;
  color: #cbd5e1;
  font-size: 14px;
}

/* ======= Tablet ======= */
@media (max-width: 991.98px) {
  .footer {
    padding: 55px 0 20px;
  }
}

.footer-cert-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-cert-inline img {
  width: 90px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-cert-text p,
.footer-cert-text span {
  margin: 0;
}

.footer-cert-text p {
  color: #fff;
  font-weight: 400;
}

.footer-cert-text span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ======= Mobile ======= */

@media (max-width: 767.98px) {
  .footer {
    text-align: left;
    padding: 50px 0 20px;
  }

  .footer .footerlogo img {
    max-width: 180px;
  }

  .footer-company-menu {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .footer-social {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .footer-bottom {
    text-align: left;
    align-items: flex-start !important;
  }
}

@media (max-width: 575.98px) {
  .footer .footerlogo img {
    max-width: 160px;
  }

  .footer-links h5 {
    font-size: 17px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* ======= Media Queries ======= */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: var(--box-shadow);
  }

  .hero-section {
    padding: 150px 0 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 130px 0 80px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .pricing-card.featured {
    transform: none;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .footer-section {
    padding-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 50px 0;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://source.unsplash.com/random/1600x900/?contact,technology') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.contact-container {
  padding: 80px 0;
}

.contact-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 0;
  height: auto;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: #f5f7fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6cf7;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  margin-bottom: 5px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e1e5ee;
  padding: 10px 15px;
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 150px;
}

.form-success {
  display: none;
  padding: 15px;
  margin-bottom: 20px;
  background: #e6f7ee;
  color: #28a745;
  border-radius: 5px;
}

.office-hours {
  background: #f9fbfe;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}

.office-hours h5 {
  margin-bottom: 15px;
}

.office-hours ul {
  list-style: none;
  padding: 0;
}

.office-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.office-hours li:last-child {
  border-bottom: none;
}

.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contact-info-item {
    flex-direction: column;
  }

  .contact-info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Additional styles for About page */
.about-hero {
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://source.unsplash.com/random/1600x900/?ai,technology') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.mission-vision-section {
  padding: 100px 0;
  background-color: #f9fbfe;
}

.mv-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 30px;
  margin: auto;
}

.team-section {
  padding: 100px 0;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.team-info {
  padding: 25px;
}

.team-social {
  margin-top: 15px;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f7fe;
  border-radius: 50%;
  color: #4a6cf7;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #4a6cf7;
  color: white;
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  color: white;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 18px;
  opacity: 0.9;
}

.values-section {
  padding: 100px 0;
  background-color: #f9fbfe;
}

.value-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 40px;
  color: #4a6cf7;
  margin-bottom: 20px;
}

/* Terms Page Specific Styles */
.terms-hero {
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  margin-top: 5%;
  padding: 60px;
  color: white;
  text-align: center;
}

.terms-container {
  padding: 60px 0;
}

.terms-content {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  padding: 50px;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  color: #4a6cf7;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.terms-section h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.terms-section p,
.terms-section ul {
  margin-bottom: 15px;
  line-height: 1.7;
}

.terms-section ul {
  padding-left: 20px;
}

.highlight-box {
  background: #f9fbfe;
  border-left: 4px solid #4a6cf7;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 30px;
  }
}

/* Blog Detail Specific Styles */
.blog-hero {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://source.unsplash.com/random/1600x900/?ai,technology,future') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.blog-container {
  padding: 60px 0;
}

.blog-content {
  max-width: 100%;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 40px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  color: #6c757d;
}

.blog-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 30px;
}

.blog-image {
  border-radius: 10px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: auto;
  max-height: 340px;
  display: block;
}

.blog-image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 10px;
}

.blog-body {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #343a40;
}

.blog-body h2 {
  font-size: 1.8rem;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #212529;
}

.blog-body h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #212529;
}

.blog-body p {
  margin-bottom: 25px;
}

.blog-body ul,
.blog-body ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.blog-body li {
  margin-bottom: 10px;
}

.highlight-box {
  background: #f9fbfe;
  border-left: 4px solid #4a6cf7;
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 5px 5px 0;
}

.quote-box {
  border-left: 4px solid #6e8efb;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #495057;
}

.quote-author {
  font-weight: 600;
  margin-top: 10px;
  font-style: normal;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}

.tag {
  background: #f1f3f5;
  color: #495057;
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #4a6cf7;
  color: white;
  text-decoration: none;
}

.author-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 60px 0;
  display: flex;
  align-items: center;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #6c757d;
  margin-bottom: 15px;
}

.author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f7fe;
  border-radius: 50%;
  color: #4a6cf7;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: #4a6cf7;
  color: white;
}

.related-posts {
  padding: 60px 0;
  background: #f9fbfe;
}

.related-post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.related-post-card:hover {
  transform: translateY(-10px);
}

.related-post-image {
  height: 340px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  padding: 20px;
}

.related-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.related-post-meta {
  color: #6c757d;
  font-size: 0.9rem;
}

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

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preloader::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ai-loader {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
}

.hex-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexRotate 8s linear infinite;
}

.hex-ring:nth-child(2) {
  width: 150px;
  height: 150px;
  border-color: rgba(255, 255, 255, 0.3);
  animation-duration: 6s;
  animation-direction: reverse;
}

.hex-ring:nth-child(3) {
  width: 180px;
  height: 180px;
  border-color: rgba(255, 255, 255, 0.2);
  animation-duration: 10s;
}

@keyframes hexRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.circuit-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.5),
    #3b82f6,
    rgba(59, 130, 246, 0.5),
    transparent
  );
  filter: drop-shadow(0 0 6px #3b82f6);
}

.circuit-line:nth-child(4) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  animation: lineGlow 2s infinite;
}

.circuit-line:nth-child(5) {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  animation: lineGlow 2s infinite 0.5s;
}

@keyframes lineGlow {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 3px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: corePulse 2s ease-in-out infinite;
  box-shadow:
    0 0 20px rgba(59, 130, 246, 0.5),
    inset 0 0 20px rgba(59, 130, 246, 0.2);
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 20px rgba(59, 130, 246, 0.5),
      inset 0 0 20px rgba(59, 130, 246, 0.2);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
      0 0 40px rgba(59, 130, 246, 0.8),
      inset 0 0 30px rgba(59, 130, 246, 0.4);
  }
}

.ai-middle-ring {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: middleRingPulse 2s ease-in-out infinite 0.3s;
}

@keyframes middleRingPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.ai-inner-core {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  filter: drop-shadow(0 0 15px #3b82f6);
  animation: innerCorePulse 1.5s ease-in-out infinite;
  position: relative;
}

@keyframes innerCorePulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px #3b82f6);
  }

  50% {
    transform: scale(1.2);
    filter: drop-shadow(0 0 25px #3b82f6) drop-shadow(0 0 35px #8b5cf6);
  }
}

.orbit-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 10px #3b82f6;
}

.orbit-particle:nth-child(6) {
  top: 50%;
  left: 50%;
  animation: orbit1 3s linear infinite;
}

.orbit-particle:nth-child(7) {
  top: 50%;
  left: 50%;
  animation: orbit2 3s linear infinite;
}

.orbit-particle:nth-child(8) {
  top: 50%;
  left: 50%;
  animation: orbit3 3s linear infinite;
}

@keyframes orbit1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(60px) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg) translateX(60px) rotate(-120deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(480deg) translateX(60px) rotate(-480deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg) translateX(60px) rotate(-240deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(600deg) translateX(60px) rotate(-600deg);
  }
}

.loading-text {
  color: #e2e8f0;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%,
  100% {
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
  }

  50% {
    opacity: 1;
    text-shadow: 0 2px 20px rgba(59, 130, 246, 0.8);
  }
}

.loading-dots {
  display: inline-block;
  width: 30px;
  text-align: left;
}

.loading-dots::after {
  content: '...';
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
  0% { content: '.'; }
  33% { content: '..'; }
  66% { content: '...'; }
  100% { content: '.'; }
}

.progress-container {
  width: 300px;
  height: 4px;
  background: rgba(226, 232, 240, 0.2);
  border-radius: 10px;
  margin: 25px auto 0;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: progressMove 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

@keyframes progressMove {
  0% {
    width: 0%;
    background-position: 0% 50%;
  }

  50% {
    width: 70%;
    background-position: 100% 50%;
  }

  100% {
    width: 100%;
    background-position: 0% 50%;
  }
}

.percentage {
  color: rgba(226, 232, 240, 0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

@keyframes circuitPulse {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.mission-vision-section h3 {
  text-align: center;
  margin-top: 15px;
}

/* Blog Listing */
.blog-listing {
  padding: 80px 0;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  background: white;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #777;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.blog-card-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

.blog-card-title a:hover {
  color: var(--primary-color);
}

.blog-card-excerpt {
  margin-bottom: 20px;
  color: #666;
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Sidebar */
.sidebar-widget {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.widget-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-form input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.2);
  outline: none;
}

.search-form button {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.search-form button:hover {
  transform: translateY(-50%) scale(1.05);
}

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

.categories-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

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

.categories-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.categories-list a:hover {
  color: var(--primary-color);
}

.categories-list span {
  background: #f5f5f5;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.recent-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

.recent-post-content a:hover {
  color: var(--primary-color);
}

.recent-post-meta {
  font-size: 0.8rem;
  color: #777;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  background: #f5f5f5;
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.tags-cloud a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

/* Pagination */
.pagination {
  margin-top: 50px;
  justify-content: center;
}

.page-link {
  margin: 0 5px;
  border-radius: 50% !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.page-link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
  color: white;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
}

/* Careers Page Specific Styles */
.careers-hero {
  background: linear-gradient(135deg, #0a2463 0%, #3a86ff 100%);
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.gradient-email {
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease;
}

.gradient-email:hover {
  background: linear-gradient(90deg, #00c6ff, #8b5cf6, #ff4ecd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.job-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

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

.job-tag {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

.culture-section {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.culture-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.culture-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3a86ff 0%, #0a2463 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.benefits-section {
  padding: 100px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #f0f5ff;
  color: #3a86ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
}

.application-process {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 30px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: #3a86ff;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #3a86ff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .process-step:not(:last-child)::after {
    display: none;
  }

  .careers-hero {
    padding: 130px 0 80px;
  }
}

.team-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.team-info {
  padding: 25px;
}

.team-social {
  margin-top: 15px;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f5ff;
  color: var(--primary);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.department-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.values-section {
  padding: 100px 0;
}

.value-card {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.cta-section {
  background: linear-gradient(135deg, #0a2463 0%, #3a86ff 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.team-hero {
  background: linear-gradient(135deg, #0a2463 0%, #3a86ff 100%);
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2Utb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNIDAgMCBMIDYwIDYwIE0gNjAgMCBMIDAgNjAiLz48L2c+PC9zdmc+') repeat;
  opacity: 0.1;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Additional CSS for new sections */
.features-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card h4 {
  text-align: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 28px;
  color: white !important;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.feature-card p {
  margin: auto;
}

.testimonial-content p {
  color: var(--text-color);
}

.testimonials-section {
  padding: 100px 0;
  background-color: #0f172a;
  color: white;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin: 15px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 450px;
}

.testimonial-content {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-info p {
  margin: 0;
  opacity: 0.8;
  font-size: 14px;
}

.rating {
  color: #ffc107;
  margin-top: 5px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.contact-info-content p {
  margin-bottom: 0px;
}

.contact-info-content .mb-3 {
  margin-bottom: 0px;
}

#contactForm .form-group {
  margin-bottom: 0px !important;
}

.blog-detail {
  max-width: 540px !important;
  margin: auto;
}

/* Additional styles specific to ML page */
.ml-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}

.ml-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.ml-process {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ml-use-cases {
  padding: 100px 0;
}

.use-case-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.use-case-img {
  height: 250px;
  overflow: hidden;
}

.use-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-img img {
  transform: scale(1.1);
}

.ml-technologies {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.tech-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tech-logo img {
  max-height: 100%;
  max-width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.tech-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.ml-call-to-action {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #667eea;
  text-decoration: none;
}

.nlp-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}

.nlp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.nlp-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.nlp-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #f093fb, #f5576c);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.nlp-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.application-img {
  height: 250px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.nlp-technologies {
  padding: 100px 0;
}

.nlp-call-to-action {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #f5576c;
  text-decoration: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
  margin: auto;
  margin-bottom: 20px;
}

.benefit-content {
  flex: 1;
}

.nlp-hero .img-fluid {
  border-radius: 50px;
}

/* Additional styles specific to CV page */
.cv-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 150px 0 50px;
  position: relative;
  overflow: hidden;
}

.cv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.cv-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.cv-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #4facfe, #00f2fe);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.cv-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.application-img {
  height: 200px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.cv-technologies {
  padding: 100px 0;
}

.cv-call-to-action {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #4facfe;
  text-decoration: none;
}

.demo-showcase {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cvicon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Additional styles specific to Data Analytics page */
.da-hero {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.da-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.da-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.da-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #43e97b, #38f9d7);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.da-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.application-img {
  height: 200px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.da-technologies {
  padding: 100px 0;
}

.da-call-to-action {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #43e97b;
  text-decoration: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.demo-showcase {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.insight-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.insight-icon {
  font-size: 40px;
  color: #4781e6;
  margin-bottom: 20px;
}

/* Additional styles specific to Predictive Modeling page */
.pm-hero {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.pm-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.pm-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.pm-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #ff9a9e, #fecfef);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.pm-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.application-img {
  height: 200px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.pm-technologies {
  padding: 100px 0;
}

.pm-call-to-action {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #ff9a9e;
  text-decoration: none;
}

.demo-showcase {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.model-type-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.model-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.model-icon {
  font-size: 40px;
  color: #ff9a9e;
  margin-bottom: 20px;
}

.accuracy-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
}

/* Additional styles specific to AI Security page */
.security-hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.security-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="white" opacity="0.1"></path></svg>');
  background-size: cover;
  background-position: center;
}

.security-capabilities {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.capability-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 50%;
  font-size: 32px;
  margin-bottom: 25px;
}

.security-workflow {
  padding: 100px 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #1e3c72, #2a5298);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.security-applications {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.application-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.application-img {
  height: 290px;
  overflow: hidden;
}

.application-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-card:hover .application-img img {
  transform: scale(1.1);
}

.security-technologies {
  padding: 100px 0;
}

.security-call-to-action {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.breadcrumb {
  background-color: transparent;
  padding: 15px 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #1e3c72;
  text-decoration: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.demo-showcase {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin: 50px 0;
}

.demo-item {
  text-align: center;
  padding: 30px;
}

.demo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.demo-stats {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.threat-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border-left: 4px solid #1e3c72;
}

.threat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.threat-icon {
  font-size: 40px;
  color: #1e3c72;
  margin-bottom: 20px;
}

.severity-badge {
  display: inline-block;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 15px;
}

.severity-high {
  background: #dc3545;
}

.severity-medium {
  background: #ffc107;
  color: #212529;
}

.severity-low {
  background: #28a745;
}

.security-layers {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
}

.layer-item {
  text-align: center;
  padding: 30px 20px;
}

.layer-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.layer-number {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.benefit-item h4,
.benefit-item p {
  text-align: center;
}

.aicard .benefit-icon {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.swiper-slide {
  width: 33%;
}

.pm-hero .img-fluid {
  border-radius: 50px;
}

.pmcard .benefit-icon {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.step-numberml {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
}

.feature-card p {
  text-align: center;
}

.submitbtn {
  margin-top: 25px;
}

#testimonials .testimonial-card {
  min-height: 320px;
}

@media (max-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 760px;
  }
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #dcdcdc, transparent);
  margin: 20px 0;
}

.values-section {
  background-color: #fafbfc;
  border-radius: 16px;
}

.value-card {
  transition: all 0.3s ease;
}

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

.team-section {
  background: #ffffff;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-content {
  padding: 20px;
}

.team-content h4,
.team-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6c63ff;
  margin-bottom: 8px;
}

.team-content p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.leadership-card .team-img {
  height: 260px;
}

@media (min-width: 1200px) {
  .team-col-5 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.team-card__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.team-card--compact .team-card__media {
  padding: 10px 10px 0;
}

.team-card--compact .team-card__media img {
  height: 200px;
  border-radius: 12px;
}

.team-card--compact .team-card__body {
  padding: 12px 12px 14px;
}

.team-card--compact .team-card__name {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.team-card--compact .team-card__role {
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.team-card--compact .team-card__meta {
  font-size: 0.82rem;
  line-height: 1.25;
}

/* =========================
   Services Tabs - Unified Theme
   ========================= */
.services-tabs .nav-link {
  color: #2a2a2a;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-weight: 600;
  transition: all .2s ease;
}

.services-tabs .nav-link:hover {
  border-color: rgba(108,99,255,.35);
  background: rgba(108,99,255,.06);
}

.services-tabs .nav-link.active,
.services-tabs .show > .nav-link {
  background: #6c63ff;
  border-color: #6c63ff;
  color: #fff;
}

.services-tabs .nav-link i {
  color: inherit;
}

.services-subtabs {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.services-subtabs .nav-link {
  color: rgba(0,0,0,.70);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .6rem .9rem;
  font-weight: 600;
  transition: all .2s ease;
}

.services-subtabs .nav-link:hover {
  color: #2a2a2a;
  background: rgba(108,99,255,.06);
  border-radius: 10px;
}

.services-subtabs .nav-link.active {
  color: #6c63ff;
  border-bottom-color: #6c63ff;
  background: transparent;
}

.services-tabs {
  gap: 16px;
}

.services-tabs .nav-item {
  margin: 0;
}

.typed-text {
  white-space: pre-wrap;
}

.typed-cursor {
  display: inline-block;
  margin-left: 2px;
  width: 0.55ch;
  animation: blink 0.9s infinite;
  transform: translateY(1px);
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .typed-cursor {
    animation: none;
  }
}

/* ===== Hero Right — Scene Engine + Voice Pulse ===== */

.hero-img {
  position: relative;
}

/* ─── Voice pulse waveform background ─── */
.lt-voice-pulse {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.lt-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Right panel container ─── */
.lt-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 420px;
  z-index: 2;
  animation: ltHeroFadeUp 1s ease both;
}

/* ─── AI Particles ─── */
.lt-particles {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.lt-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
}

.lt-particle:nth-child(1) { background:#6366f1; top:10%; left:5%; animation:lt-float-particle 6s 0s ease-in-out infinite; }
.lt-particle:nth-child(2) { background:#10b981; top:30%; right:8%; animation:lt-float-particle 7s 1s ease-in-out infinite; }
.lt-particle:nth-child(3) { background:#818cf8; bottom:25%; left:12%; animation:lt-float-particle 5s 2s ease-in-out infinite; }
.lt-particle:nth-child(4) { background:#34d399; top:60%; right:15%; animation:lt-float-particle 8s 0.5s ease-in-out infinite; }
.lt-particle:nth-child(5) { background:#a78bfa; top:80%; left:40%; animation:lt-float-particle 6s 3s ease-in-out infinite; }
.lt-particle:nth-child(6) { background:#6366f1; top:5%; right:35%; width:3px; height:3px; animation:lt-float-particle 9s 1.5s ease-in-out infinite; }

@keyframes lt-float-particle {
  0%   { opacity:0; transform:translateY(0) scale(0.5); }
  15%  { opacity:0.6; }
  50%  { opacity:0.3; transform:translateY(-30px) scale(1.2); }
  85%  { opacity:0.6; }
  100% { opacity:0; transform:translateY(0) scale(0.5); }
}

/* ─── Neural lines ─── */
.lt-neural-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.lt-neural-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15), transparent);
  animation: lt-neural-sweep 4s ease-in-out infinite;
}

.lt-neural-line:nth-child(1) { top:20%; left:0; width:60%; animation-delay:0s; }
.lt-neural-line:nth-child(2) { top:50%; left:20%; width:80%; animation-delay:1.5s; }
.lt-neural-line:nth-child(3) { top:75%; left:10%; width:50%; animation-delay:3s; }

@keyframes lt-neural-sweep {
  0%   { opacity:0; transform:scaleX(0); transform-origin:left; }
  30%  { opacity:1; transform:scaleX(1); transform-origin:left; }
  70%  { opacity:1; transform:scaleX(1); transform-origin:right; }
  100% { opacity:0; transform:scaleX(0); transform-origin:right; }
}

/* ─── Scene crossfade layers ─── */
.lt-scene-layer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 2;
}

.lt-scene-layer.lt-scene-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 3;
  position: relative;
}

/* ─── Floating pills ─── */
.lt-pill {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 0.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 14px 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  animation: lt-fadeup .8s ease both;
}

.lt-pill-top {
  top: -12px;
  right: -12px;
  animation: lt-fadeup .8s ease both, lt-pill-hover 3s 1.5s ease-in-out infinite;
}

.lt-pill-bot {
  bottom: -24px;
  left: -12px;
  animation: lt-fadeup .8s ease both, lt-pill-hover 3.5s 2s ease-in-out infinite;
}

.lt-pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  color: #fff;
}

.lt-pill-icon.green  { background: #10b981; }
.lt-pill-icon.purple { background: linear-gradient(135deg, #6366f1, #a78bfa); }
.lt-pill-icon.orange { background: #f59e0b; }

.lt-pill-micro {
  font-size: 10px;
  color: #94a3b8;
  line-height: 1.1;
}

.lt-pill-val {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}

@keyframes lt-pill-hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes lt-fadeup {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ─── Cards ─── */

@media (max-width: 991.98px) {
  #ltHeroRight .lt-card[data-role="chat"] {
    min-height: 170px;  /* adjust based on the tallest chat content */
  }
}

.lt-card {
  background: rgba(255,255,255,0.92);
  border: 0.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 18px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  animation: lt-fadeup .9s ease both;
  position: relative;
  overflow: hidden;
}

.lt-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(99,102,241,0.04) 40%, rgba(99,102,241,0.08) 50%, rgba(99,102,241,0.04) 60%, transparent 100%);
  animation: lt-scan 4s 1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lt-scan { 0% { left:-100%; } 100% { left:100%; } }

.lt-card-glow {
  animation: lt-fadeup .9s ease both, lt-glow-pulse 4s 1.5s ease-in-out infinite;
}

@keyframes lt-glow-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
  50% { box-shadow: 0 4px 24px rgba(99,102,241,0.1), 0 2px 12px rgba(0,0,0,0.04); }
}

/* ─── Dashboard ─── */
.lt-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.lt-dash-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #64748b;
}

.lt-rt-badge {
  background: rgba(16,185,129,0.1);
  border: 0.5px solid rgba(16,185,129,0.3);
  color: #059669;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 9px 2px 18px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.lt-rt-badge::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  animation: lt-realtime-blink 1.5s ease-in-out infinite;
}

@keyframes lt-realtime-blink { 0%, 100% { opacity:1; } 50% { opacity:0.2; } }

.lt-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.lt-mbox {
  background: #ffffff;
  border: 0.5px solid #e2e8f0;
  border-radius: 9px;
  padding: 10px 12px;
}

.lt-mbox-anim {
  opacity: 0;
  transform: scale(0.9);
  animation: lt-mbox-pop 0.4s ease forwards;
}

@keyframes lt-mbox-pop { to { opacity:1; transform:scale(1); } }

.lt-mlabel {
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
}

.lt-mval {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.lt-mval.v-purple { color: #6366f1; }
.lt-mval.v-teal   { color: #059669; }

.lt-mdelta {
  font-size: 10px;
  margin-top: 3px;
}

.lt-mdelta.up   { color: #059669; }
.lt-mdelta.down { color: #ef4444; }
/* Semantic overrides: `good` forces green even when arrow points down
   (e.g. declining loss ratio, cycle time, TAT); `bad` forces red even on up. */
.lt-mdelta.good { color: #059669; }
.lt-mdelta.bad  { color: #ef4444; }

.lt-msuffix {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 400;
  margin-left: 1px;
}

/* ─── Chart ─── */
.lt-chart {
  height: 58px;
}

.lt-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Bottom row ─── */
.lt-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ─── Chat ─── */
.lt-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.lt-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}

.lt-agent {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
}

.lt-online {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  margin-left: auto;
  position: relative;
}

.lt-online::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 50%;
  border: 1.5px solid #10b981;
  animation: lt-online-ping 2s ease-out infinite;
}

@keyframes lt-online-ping {
  0%   { transform:scale(1); opacity:0.6; }
  100% { transform:scale(2.5); opacity:0; }
}

.lt-msgs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lt-msg {
  font-size: 11.5px;
  line-height: 1.5;
  border-radius: 8px;
  padding: 7px 10px;
  max-width: 95%;
}

.lt-msg.ai {
  background: rgba(99,102,241,0.08);
  color: #334155;
  border-bottom-left-radius: 2px;
}

.lt-msg.user {
  background: #f1f5f9;
  color: #64748b;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}

.lt-msg-hidden {
  opacity: 0;
  transform: translateY(8px);
}

.lt-msg-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lt-typing-active::after {
  content: '\258C';
  color: #6366f1;
  animation: lt-blink-cursor 0.6s step-end infinite;
  margin-left: 1px;
}

@keyframes lt-blink-cursor { 0%, 100% { opacity:1; } 50% { opacity:0; } }

.lt-typing {
  display: inline-flex;
  gap: 3px;
  padding: 7px 12px;
  background: rgba(99,102,241,0.08);
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  align-self: flex-start;
  transition: opacity 0.25s ease, max-height 0.25s ease;
}

.lt-typing-hidden {
  opacity: 0;
  max-height: 0;
  padding: 0 12px;
  overflow: hidden;
}

.lt-typing-visible {
  opacity: 1;
  max-height: 40px;
  padding: 7px 12px;
}

.lt-typing-dot {
  width: 5px;
  height: 5px;
  background: #94a3b8;
  border-radius: 50%;
  animation: lt-typing-bounce 1.2s ease-in-out infinite;
}

.lt-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.lt-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes lt-typing-bounce {
  0%, 60%, 100% { transform:translateY(0); opacity:0.4; }
  30% { transform:translateY(-4px); opacity:1; }
}

/* ─── Calendar ─── */
.lt-cal-label {
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}

.lt-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 10px;
}

.lt-cal-dh {
  font-size: 8.5px;
  color: #94a3b8;
  text-align: center;
  padding: 2px 0;
}

.lt-cal-d {
  font-size: 9.5px;
  color: #64748b;
  text-align: center;
  padding: 3px 1px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.lt-cal-blank {
  visibility: hidden;
}

.lt-cal-sweep {
  animation: lt-day-sweep 0.5s ease forwards;
}

@keyframes lt-day-sweep {
  0%  { background:transparent; }
  40% { background:rgba(99,102,241,0.1); transform:scale(1.15); }
  100%{ background:transparent; transform:scale(1); }
}

.lt-cal-d.today {
  background: #6366f1;
  color: #fff;
  font-weight: 600;
  animation: lt-day-select 0.4s ease forwards;
}

@keyframes lt-day-select {
  0%  { transform:scale(0.6); opacity:0; }
  60% { transform:scale(1.2); }
  100%{ transform:scale(1); opacity:1; }
}

/* ─── Appointment ─── */
.lt-appt {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.06);
  border: 0.5px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  padding: 7px 10px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lt-appt-hidden {
  opacity: 0;
  transform: translateX(-12px);
}

.lt-appt-show {
  opacity: 1;
  transform: translateX(0);
}

.lt-appt-icon {
  width: 22px;
  height: 22px;
  background: rgba(16,185,129,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.lt-appt-name {
  font-size: 11px;
  color: #334155;
  font-weight: 500;
  line-height: 1.2;
}

.lt-appt-time {
  font-size: 9.5px;
  color: #94a3b8;
}

.lt-appt-ok {
  margin-left: auto;
  font-size: 10px;
  color: #059669;
  font-weight: 500;
  white-space: nowrap;
}

/* ─── Hero fade-up ─── */
@keyframes ltHeroFadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
  /* Hard clip — nothing inside the hero column can bleed into adjacent sections */
  .hero-img {
    overflow: hidden;
  }

  .lt-voice-pulse {
    left: 0;
    right: 0;
  }

  .lt-particles {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .lt-right {
    margin-top: 30px;
    /* Fixed height locks the container — animation content can never push the page.
       overflow:hidden clips at the boundary so nothing bleeds into the next section.
       text-align:left overrides the .hero { text-align:center } rule in stylenew.css
       that would otherwise centre the chat messages inside the cards. */
    height: 500px;
    min-height: unset !important;
    overflow: hidden;
    text-align: left;
  }

  /* Active scene stays position:relative (its desktop default) so the normal
     flex layout of .lt-right positions it correctly. The fixed height + overflow:hidden
     on .lt-right is what prevents any page shift — no need to force absolute. */

  .lt-bottom {
    grid-template-columns: 1fr 1fr;
  }

  /* Decorative pills use position:absolute and extend outside .lt-right —
     hide them on mobile to avoid visual artefacts at the clipping boundary */
  .lt-pill {
    display: none;
  }
}

@media (max-width: 575.98px) {
  /* Keep 2-column bottom on small phones too. Stacking to 1 column makes the
     total scene height ~650 px which overflows the container badly. */
  .lt-right {
    height: 500px;
  }

  .lt-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .lt-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .lt-mbox {
    padding: 6px 8px;
  }

  .lt-mval {
    font-size: 13px;
  }

  .lt-mlabel {
    font-size: 8px;
  }

  .lt-mdelta {
    font-size: 9px;
  }

  .lt-msg {
    font-size: 10.5px;
    padding: 5px 8px;
  }

  .lt-cal-d {
    font-size: 8.5px;
    padding: 2px 0;
  }

  .lt-cal-dh {
    font-size: 7.5px;
  }

  .lt-card {
    padding: 14px 14px 10px;
  }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .lt-right,
  .lt-card,
  .lt-card-glow,
  .lt-pill,
  .lt-pill-top,
  .lt-pill-bot,
  .lt-particle,
  .lt-neural-line,
  .lt-mbox-anim,
  .lt-typing-dot,
  .lt-cal-sweep,
  .lt-cal-d.today {
    animation: none !important;
    transition: none !important;
  }
}

