/* ============================================
   GLOBAL CSS — Logo-Matched Theme + Dark Mode
   Logo Colors: Royal Blue var(--color-primary) | Gold #EAA21F | Green #27AE60
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---- LIGHT MODE (Default) ---- */
:root {
  /* Brand Colors — from Logo */
  --color-primary: #1A237E;       /* Dark Navy Blue */
  --color-secondary: #FF8C00;     /* Orange */
  --color-accent: #00A651;        /* Green */

  /* UI Colors */
  --color-background: #F4F8FF;
  --color-surface: #FFFFFF;
  --color-surface-2: #EEF3FC;
  --color-text-primary: #0D1B3E;
  --color-text-secondary: #4E6080;
  --color-text-light: #FFFFFF;
  --color-border: #DDE6F5;
  --color-success: #00A651;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1A237E 0%, #0D1B8E 55%, #00AAFF 100%);
  --gradient-brand: linear-gradient(135deg, #1A237E 0%, #FF8C00 100%);
  --gradient-features-bg: linear-gradient(160deg, #0D1B8E 0%, #1A237E 60%, #0D1B8E 100%);

  /* Typography */
  --font-family: 'Inter', 'Poppins', sans-serif;
  --hero-title: clamp(2.2rem, 5vw, 3.8rem);
  --section-title: clamp(1.6rem, 3vw, 2.2rem);
  --font-body: 1rem;
  --font-small: 0.875rem;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --container-padding: 0 20px;

  /* Border Radius */
  --border-radius-card: 16px;
  --border-radius-button: 8px;
  --border-radius-pill: 50px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(26, 35, 126, 0.08);
  --shadow-hover: 0 8px 40px rgba(26, 35, 126, 0.18);
  --shadow-button: 0 4px 15px rgba(255, 140, 0, 0.35);

  /* Transitions */
  --transition-default: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Navbar */
  --navbar-bg: rgba(255, 255, 255, 0.92);
  --navbar-shadow: 0 2px 20px rgba(26, 35, 126, 0.08);
}

/* ---- DARK MODE ---- */
[data-theme="dark"] {
  --color-primary: #00AAFF;       /* Lighter blue for dark bg */
  --color-secondary: #FF8C00;     /* Orange */
  --color-accent: #00A651;        /* Green */

  --color-background: #0A1628;
  --color-surface: #111E35;
  --color-surface-2: #162240;
  --color-text-primary: #E8F0FF;
  --color-text-secondary: #7A97CC;
  --color-text-light: #FFFFFF;
  --color-border: rgba(0, 170, 255, 0.15);
  --color-success: #00A651;

  --gradient-hero: linear-gradient(135deg, #0A1E3D 0%, #0D1B8E 55%, #1A237E 100%);
  --gradient-brand: linear-gradient(135deg, #00AAFF 0%, #FF8C00 100%);
  --gradient-features-bg: linear-gradient(160deg, #050E1C 0%, #091625 60%, #050E1C 100%);

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 40px rgba(0, 170, 255, 0.2);
  --shadow-button: 0 4px 15px rgba(255, 140, 0, 0.3);

  --navbar-bg: rgba(10, 22, 40, 0.95);
  --navbar-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ============ Global Reset ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ============ Utility Classes ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding);
}

.sectionLabel {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.sectionTitle {
  font-family: 'Poppins', sans-serif;
  font-size: var(--section-title);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.sectionTitleLight {
  color: var(--color-text-light);
}

/* ============ Animations ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.gradientBg {
  background: var(--gradient-brand);
}

.darkBg {
  background-color: var(--color-background);
}

/* ============ Global Responsive ============ */
@media (max-width: 968px) {
  :root {
    --section-padding: 60px 0;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 40px 0;
    --container-padding: 0 24px;
    --hero-title: clamp(1.4rem, 8vw, 2rem);
  }
}

@media (max-width: 380px) {
  :root {
    --container-padding: 0 20px;
  }
}

/* ============================================
   NAVBAR — Fixed Top + Mobile Side Drawer
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 10px 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--navbar-shadow);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.12);
}

[data-theme="dark"] .navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1;
}

.logoIcon {
  height: 44px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.logoImg {
  height: 100%;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transform: scale(1.7);
  transform-origin: left center;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navLink {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}

.navLink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navLink:hover::after,
.navLink.active::after {
  width: 100%;
}

.navLink:hover {
  color: var(--color-primary);
}

[data-theme="dark"] .navLink:hover {
  color: var(--color-secondary);
}

.themeToggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}

.themeToggle:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: scale(1.08);
}

.sunIcon  { color: #EAA21F; }
.moonIcon { color: #4A90D9; }

.authButtons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.loginBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(26, 35, 126, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  gap: 8px;
}

.loginBtn:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.35);
}

.registerBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  background: transparent;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  border: 1.5px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: var(--font-family);
  text-decoration: none;
  gap: 8px;
}

.registerBtn:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.15);
}

.mobileControls {
  display: none;
  align-items: center;
  gap: 10px;
}

.themeToggleMobile {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.mobileMenuBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A237E;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 7px 9px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobileMenuBtn:active {
  transform: scale(0.93);
  background: var(--color-primary);
}

/* ============================================
   OVERLAY BACKDROP
   ============================================ */
.drawerOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1199;
  transition: background 0.35s ease;
  pointer-events: none;
}

.drawerOverlay.overlayOpen {
  background: rgba(0, 0, 0, 0.5);
  pointer-events: all;
  display: block;
}

/* ============================================
   SIDE DRAWER
   ============================================ */
.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-surface);
  z-index: 1200;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.drawerOpen {
  transform: translateX(0);
  display: flex;
}

.drawerHeader {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  flex-shrink: 0;
}

.drawerClose {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.drawerClose:hover,
.drawerClose:active {
  background: var(--color-border);
  transform: rotate(90deg);
}

.drawerNav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

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

.drawerLink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.drawerLink:hover,
.drawerLink:active {
  background: var(--color-surface-2);
  color: var(--color-primary);
  border-left-color: var(--color-secondary);
}

.drawerLink.drawerLinkActive {
  background: var(--color-surface-2);
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  font-weight: 600;
}

.drawerLinkIcon {
  font-size: 1rem;
  color: var(--color-text-primary);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.drawerActions {
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex-shrink: 0;
  background: var(--color-surface);
}

.drawerRegisterBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 10px;
  background: transparent;
  color: #1A237E;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  border: 1.5px solid #1A237E;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-family);
  width: 100%;
}

.drawerRegisterBtn:hover,
.drawerRegisterBtn:active {
  background: #1A237E;
  color: #ffffff;
}

.drawerLoginBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 10px;
  background: #1A237E;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: 100%;
  box-shadow: 0 3px 12px rgba(26, 35, 126, 0.3);
}

.drawerLoginBtn:hover,
.drawerLoginBtn:active {
  background: var(--color-primary);
  box-shadow: 0 4px 16px rgba(26, 35, 126, 0.45);
}

.drawerBtnIcon {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE NAVBAR BREAKPOINTS
   ============================================ */
@media (max-width: 968px) {
  .desktopNav {
    display: none;
  }

  .mobileControls {
    display: flex;
  }

  .drawerOverlay {
    display: block;
  }

  .drawer {
    display: flex;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 10px 0;
  }

  .logoImg {
    height: 36px;
    max-width: 150px;
  }

  .mobileMenuBtn {
    font-size: 1rem;
    padding: 6px 8px;
  }

  .drawer {
    width: 260px;
  }
}

@media (max-width: 380px) {
  .logoImg {
    height: 32px;
    max-width: 130px;
  }

  .drawer {
    width: 240px;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px); /* Adjust for header height */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 85px 0 45px;
  background: linear-gradient(-45deg, #0A1435, #1A3A8F, #08112F, #173680);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  transition: background 0.3s ease;
  z-index: 1;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bgGradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bgGradient::before {
  content: '';
  position: absolute;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: -25%;
  right: -10%;
  animation: blobMove1 14s ease-in-out infinite alternate;
  filter: blur(40px);
}

.bgGradient::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -20%;
  left: -10%;
  animation: blobMove2 18s ease-in-out infinite alternate;
  filter: blur(50px);
}

.bgGrid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  z-index: 1;
  pointer-events: none;
}

.heroInner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.heroSplit {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 220px);
}

.heroLeft {
  flex: 1 1 50%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  animation: fadeInLeft 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

.heroTitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  text-align: left;
}

.heroGradientText {
  background: linear-gradient(-45deg, #FBBF24, #F59E0B, #FFD700, #F97316);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  animation: gradientText 6s ease infinite;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.heroTagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  color: #E0E7FF;
  line-height: 1.65;
  margin: 0 0 32px;
  font-weight: 500;
  text-align: left;
}

.buttonGroup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.primaryBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.primaryBtn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.primaryBtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
  z-index: 2;
}

.primaryBtn span, .primaryBtn i {
  position: relative;
  z-index: 3;
}

.primaryBtn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.5);
}

.primaryBtn:hover::before {
  opacity: 1;
}

.primaryBtn:active { transform: translateY(0) scale(0.98); }

.primaryBtn:hover i { transform: translateX(3px); }

.secondaryBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.secondaryBtn:hover {
  border-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.mobileBtnText {
  display: none;
}

.mobileArrow {
  margin-left: 6px;
}

.playIconDesktop {
  font-size: 0.75rem;
  color: #FFFFFF;
}

.statsRow {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 14px 24px;
  width: fit-content;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  animation: floatBadge 5s ease-in-out infinite reverse;
}

.statItem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
}

.statItem:first-child { padding-left: 0; }
.statItem:last-child { padding-right: 0; }

.statVal {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.statLbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #93C5FD;
  margin-top: 4px;
  white-space: nowrap;
}

.statDivider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.heroRight {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 520px;
  animation: fadeInRight 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.phonePair {
  position: relative;
  width: 380px;
  height: 460px;
}

.phonePair::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.phoneFrame {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.phoneBack {
  width: 165px;
  height: 310px;
  border: 5px solid #1e293b;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  left: 0;
  bottom: 15px;
  z-index: 8;
  opacity: 0.9;
  transform: rotate(-4deg) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.4s ease;
}
.phoneBack:hover {
  transform: rotate(-2deg) scale(0.98) translateY(-8px);
  opacity: 1;
  box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

.phoneBack .phoneScreen {
  background: linear-gradient(180deg, #F8FBFF 0%, #E2E8F0 100%);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

.phoneFront {
  width: 195px;
  height: 400px;
  border: 7px solid #0f172a;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(15,23,42,0.18);
  right: 0;
  bottom: 15px;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.phoneFront:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 75px rgba(15,23,42,0.25);
}

.phoneNotch {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 18px;
  background: #0f172a;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 20;
}

.phoneBack .phoneNotch {
  background: #1e293b;
}

.statusBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -12px;
  padding: 0 6px;
  margin-bottom: 4px;
  z-index: 10;
  position: relative;
}

.statusTime {
  font-size: 0.45rem;
  font-weight: 800;
  color: #0A1628;
}

.statusIcons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.statusIcon {
  font-size: 0.45rem;
}

.signalAnim {
  color: #0A1628;
  animation: pulseSignal 2s infinite alternate;
}

.wifiAnim {
  color: #0A1628;
  animation: pulseWifi 3s infinite;
}

.batteryAnim {
  color: #10B981;
}

@keyframes pulseSignal {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

@keyframes pulseWifi {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.phoneScreen {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 9px 9px;
  background: #F8FBFF;
  height: 100%;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: 24px;
  transform: translateZ(0);
}

.phoneHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.phoneWelcome {
  font-size: 0.48rem;
  color: #64748B;
  font-weight: 600;
  display: block;
}

.phoneUsername {
  font-size: 0.68rem;
  font-weight: 800;
  color: #0A1628;
  margin: 1px 0 0;
}

.phoneAvatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A237E, var(--color-primary));
  color: #fff;
  font-size: 0.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.miniTransList {
  height: 275px;
  overflow: hidden;
  margin-top: 2px;
  position: relative;
}

.miniTransList::before,
.miniTransList::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}
.miniTransList::before {
  top: 0;
  background: linear-gradient(to bottom, #F8FBFF, transparent);
}
.miniTransList::after {
  bottom: 0;
  background: linear-gradient(to top, #E2E8F0, transparent);
}

.miniTransTrack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

@keyframes slideScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.miniTransItem {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #EEF2FF;
  padding: 5px 6px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.miniIconBg {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.miniTransInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.miniTransName {
  font-size: 0.55rem;
  font-weight: 700;
  color: #0A1628;
  line-height: 1.1;
}

.miniTransSub {
  font-size: 0.4rem;
  color: #10B981;
  font-weight: 600;
}

.miniTransAmt {
  font-size: 0.55rem;
  font-weight: 800;
  white-space: nowrap;
  color: #10B981;
}

.walletCard {
  background: linear-gradient(135deg, #1A3A8F 0%, #1A237E 100%);
  border-radius: 10px;
  padding: 9px 10px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  box-shadow: 0 6px 18px rgba(26, 58, 143, 0.25);
}

.walletCard::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -20px;
  right: -20px;
}

.walletCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  animation: shineCard 3s infinite;
  z-index: 1;
}

@keyframes shineCard {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

.walletTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.walletLabel {
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  opacity: 0.85;
}

.walletChip {
  width: 14px;
  height: 10px;
  background: #F59E0B;
  border-radius: 2px;
}

.walletLimit {
  font-size: 0.52rem;
  opacity: 0.7;
  display: block;
  margin: 4px 0 3px;
  letter-spacing: 0.3px;
}

.walletBottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.walletBalLabel {
  font-size: 0.42rem;
  opacity: 0.7;
  display: block;
}

.walletBal {
  font-size: 0.72rem;
  font-weight: 800;
  display: block;
  line-height: 1.15;
}

.walletStatus {
  font-size: 0.45rem;
  font-weight: 700;
  color: #6EE7B7;
}

.servicesHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: #0A1628;
}

.seeAll {
  color: #1A237E;
  font-size: 0.48rem;
  cursor: pointer;
  font-weight: 700;
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.serviceItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.serviceCircle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.serviceImg {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.serviceLabel {
  font-size: 0.4rem;
  font-weight: 650;
  color: #64748B;
}

.recentRow {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #EEF2FF;
  padding: 5px 7px;
  border-radius: 8px;
}

.recentIcon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(16,185,129,0.12);
  color: #10B981;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recentName {
  flex: 1;
  font-size: 0.5rem;
  font-weight: 700;
  color: #0A1628;
}

.recentAmt {
  font-size: 0.5rem;
  font-weight: 800;
  color: #10B981;
}

.homeBar {
  width: 45px;
  height: 3px;
  background: #CBD5E1;
  border-radius: 2px;
  margin: auto auto 0;
}

/* ─────────────────────────────────────────
   KEYFRAME ANIMATIONS
   ───────────────────────────────────────── */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatPhoneFront {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes floatPhoneBack {
  0%, 100% { transform: rotate(-4deg) scale(0.95) translateY(0); }
  50%       { transform: rotate(-4deg) scale(0.95) translateY(-8px); }
}

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

@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-40px, 30px) scale(1.08); }
  66%       { transform: translate(30px, -20px) scale(0.95); }
}

@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(35px, -25px) scale(1.06); }
  66%       { transform: translate(-25px, 35px) scale(0.97); }
}

@keyframes shimmer {
  0%        { left: -100%; }
  60%, 100% { left: 140%; }
}

/* ─────────────────────────────────────────
   RESPONSIVE HERO
   ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .heroSplit {
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .hero { padding: 80px 0 40px; }

  .heroSplit {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .heroLeft {
    align-items: center;
    max-width: 100%;
  }

  .heroTitle {
    text-align: center;
  }

  .heroTagline {
    text-align: center;
  }

  .buttonGroup { 
    justify-content: center; 
    flex-wrap: nowrap; 
    flex-direction: row; 
    width: 100%;
    gap: 10px;
  }

  .primaryBtn, .secondaryBtn {
    padding: 12px 14px;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
  }

  .desktopBtnText, .playIconDesktop {
    display: none;
  }

  .mobileBtnText {
    display: flex;
    align-items: center;
  }

  .heroRight {
    min-height: 420px;
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .phonePair {
    width: 310px;
    height: 400px;
  }

  .phoneBack { width: 135px; height: 260px; }
  .phoneFront { width: 160px; height: 335px; }
}

/* =========================================
   SERVICE TICKER
   ========================================= */
.tickerContainer {
  width: 100%;
  background: #ffffff;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  z-index: 10;
}

[data-theme="dark"] .tickerContainer {
  background: #0B1120;
  border-bottom: 1px solid #1e293b;
}

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

.tickerContainer::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 10%, transparent);
}

.tickerContainer::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 10%, transparent);
}

[data-theme="dark"] .tickerContainer::before {
  background: linear-gradient(to right, #0B1120 10%, transparent);
}
[data-theme="dark"] .tickerContainer::after {
  background: linear-gradient(to left, #0B1120 10%, transparent);
}

.tickerTrack {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTicker 35s linear infinite;
}

.tickerTrack:hover {
  animation-play-state: paused;
}

.tickerCard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-theme="dark"] .tickerCard {
  background: #111827;
  border-color: #1f2937;
}

.tickerCard:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .tickerCard:hover {
  border-color: #374151;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.iconBox {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.serviceName {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

[data-theme="dark"] .serviceName {
  color: #f8fafc;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-33.333% - 8px)); }
}

@media (max-width: 768px) {
  .tickerContainer::before,
  .tickerContainer::after {
    width: 60px;
  }
  .tickerCard {
    padding: 8px 20px 8px 8px;
    gap: 10px;
  }
  .iconBox {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  .serviceName {
    font-size: 0.85rem;
  }
}

/* =========================================
   PARTNERS SECTION
   ========================================= */
.partnersSection {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

[data-theme="dark"] .partnersSection {
  background: #0B1120;
  border-top-color: #1e293b;
}

.partnersWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.partnersWrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.headerBox {
  text-align: center;
  margin-bottom: 24px;
}

.partnersSection .title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

[data-theme="dark"] .partnersSection .title {
  color: #94a3b8;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
  border-radius: 4px;
}

.logoGrid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.logoBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logoImg {
  max-width: 100px;
  max-height: 35px;
  object-fit: contain;
}

[data-theme="dark"] .logoImg {
  filter: brightness(1.2);
}

@media (max-width: 768px) {
  .logoGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    justify-items: center;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
  .logoImg {
    max-width: 95px;
    max-height: 32px;
  }
  .partnersSection .title {
    font-size: 1.1rem;
  }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.aboutSection {
  padding: 80px 0;
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}

.aboutContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.leftContent {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.leftContent.visible {
  opacity: 1;
  transform: translateX(0);
}

.subHeading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.paragraph {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

[data-theme="dark"] .paragraph {
  color: #94a3b8;
}

.knowMoreBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.5px;
}

.knowMoreBtn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 35px rgba(29, 78, 216, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.rightContent {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  position: relative;
  z-index: 1;
}

.rightContent.visible {
  opacity: 1;
  transform: translateX(0);
}

.imageWrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  z-index: 1;
}

.imageBackdrop {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(29, 78, 216, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  z-index: -1;
  transform: translate(-10%, -10%);
}

.aboutImage {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aboutImage:hover {
  transform: translateY(-10px) scale(1.02);
}

.statsInlineCard {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: block;
  max-width: max-content;
}

[data-theme="dark"] .statsInlineCard {
  background: rgba(11, 17, 32, 0.6);
  border-color: rgba(31, 41, 55, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.smallStatsGrid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

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

.smallStatNumber {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

[data-theme="dark"] .smallStatNumber {
  color: #f8fafc;
}

.smallStatLabel {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[data-theme="dark"] .smallStatLabel {
  color: #94a3b8;
}

@media (max-width: 968px) {
  .aboutContent {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .knowMoreBtn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .smallStatsGrid {
    justify-content: center;
    gap: 16px;
  }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.servicesSection {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

[data-theme="dark"] .servicesSection {
  background: #0B1120;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sectionHeader.visible {
  opacity: 1;
  transform: translateY(0);
}

.carouselContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 420px;
}

.carouselBtn {
  background: var(--color-surface);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carouselBtn:first-of-type {
  left: 0;
}

.carouselBtn:last-of-type {
  right: 0;
}

.carouselBtn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .carouselBtn {
  background: #1f2937;
  border-color: #374151;
  color: #f8fafc;
}

.cardsWrapper {
  position: relative;
  width: 340px;
  height: 100%;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.serviceCard {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 320px;
  height: 340px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

[data-theme="dark"] .serviceCard {
  background: #111827;
  border-color: rgba(31, 41, 55, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cardCenter {
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 10;
  opacity: 1;
}

.cardLeft {
  transform: translateX(-110%) scale(0.85) translateZ(-100px);
  z-index: 5;
  opacity: 0.85;
}

.cardRight {
  transform: translateX(110%) scale(0.85) translateZ(-100px);
  z-index: 5;
  opacity: 0.85;
}

.cardHiddenLeft {
  transform: translateX(-200%) scale(0.7) translateZ(-200px);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.cardHiddenRight {
  transform: translateX(200%) scale(0.7) translateZ(-200px);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.iconWrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

.serviceCard:hover .iconWrapper {
  transform: scale(1.1) rotate(5deg);
}

.serviceTitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

[data-theme="dark"] .serviceTitle {
  color: #f8fafc;
}

.serviceDescription {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

[data-theme="dark"] .serviceDescription {
  color: #94a3b8;
}

.readMoreLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A237E;
  text-decoration: none;
  transition: all 0.3s ease;
}

[data-theme="dark"] .readMoreLink {
  color: #60A5FA;
}

.readMoreLink:hover {
  gap: 12px;
  color: #F59E0B;
}

@media (max-width: 968px) {
  .cardLeft { transform: translateX(-80%) scale(0.8); opacity: 0.85; }
  .cardRight { transform: translateX(80%) scale(0.8); opacity: 0.85; }
}

@media (max-width: 600px) {
  .carouselBtn { width: 40px; height: 40px; }
  .carouselBtn:first-of-type { left: -10px; }
  .carouselBtn:last-of-type { right: -10px; }
  .cardsWrapper { width: 280px; }
  .serviceCard { width: 280px; padding: 24px 20px; height: 320px; }
  .cardLeft { transform: translateX(-60%) scale(0.7); opacity: 0.5; }
  .cardRight { transform: translateX(60%) scale(0.7); opacity: 0.5; }
  .iconWrapper { width: 44px; height: 44px; font-size: 1.2rem; }
  .serviceTitle { font-size: 1.1rem; }
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.featuresSection {
  padding: 80px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .featuresSection {
  background: #0B1120;
}

.bgOrb1 {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bgOrb2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sectionSubtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

[data-theme="dark"] .sectionSubtitle {
  color: #94a3b8;
}

.animateOnScroll {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slideInUp {
  transform: translateY(40px);
}

.slideInLeft {
  transform: translateX(-80px);
}

.slideInRight {
  transform: translateX(80px);
}

.animateOnScroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.featuresList {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
  z-index: 1;
}

.featureRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.rowReverse {
  flex-direction: row-reverse;
}

.textSide {
  flex: 1;
  max-width: 500px;
}

.featureBadge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.featureTitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

[data-theme="dark"] .featureTitle {
  color: #f8fafc;
}

.featureDescription {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

[data-theme="dark"] .featureDescription {
  color: #94a3b8;
}

.imageSide {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imageWrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.featureImg {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: floatImg 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

.imageGlow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

[data-theme="dark"] .imageGlow {
  opacity: 0.35;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.35; }
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 968px) {
  .featuresList {
    gap: 80px;
  }
  .featureRow, .rowReverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .textSide {
    max-width: 100%;
  }
  .featureBadge {
    margin: 0 auto 24px;
  }
  .featureTitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .featuresSection {
    padding: 60px 0;
  }
  .featuresList {
    gap: 60px;
  }
  .featureTitle {
    font-size: 1.5rem;
  }
  .featureDescription {
    font-size: 1rem;
  }
  .imageWrapper {
    max-width: 300px;
  }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.whyChooseSection {
  padding: var(--section-padding);
  background: var(--color-background);
}

.whyChooseContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.paragraph {
  font-size: var(--font-body);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 24px 0;
}

.whyChooseSection .registerBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.5px;
}

.whyChooseSection .registerBtn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 35px rgba(16, 185, 129, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.whyChooseCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.visionCard,
.missionCard {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

[data-theme="dark"] .visionCard,
[data-theme="dark"] .missionCard {
  background: #111827;
  border-color: rgba(31, 41, 55, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.visionCard:hover,
.missionCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .visionCard:hover,
[data-theme="dark"] .missionCard:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cardIcon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cardTitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.cardText {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .whyChooseContent {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .whyChooseSection .registerBtn {
    margin-left: auto;
    margin-right: auto;
  }

  .whyChooseCards {
    max-width: 600px;
    margin: 0 auto;
  }
}

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

  .visionCard,
  .missionCard {
    padding: 24px 16px;
  }

  .cardTitle {
    font-size: 1.05rem;
  }

  .cardText {
    font-size: 0.8rem;
  }

  .cardIcon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 380px) {
  .whyChooseCards {
    grid-template-columns: 1fr;
  }

  .paragraph {
    font-size: 0.875rem;
  }
}

/* ============================================
   FOOTER — Desktop Grid + Mobile Accordion
   ============================================ */
.footer {
  background: linear-gradient(135deg, #0D1B5E 0%, #1A237E 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #060B26 0%, #0A1640 100%);
}

.footer::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.footer > div {
  position: relative;
  z-index: 1;
}

.desktopFooter {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileFooter {
  display: none;
}

.brandColumn {
  max-width: 340px;
}

.footerLogo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.footerLogoImg {
  height: 75px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.brandDescription {
  font-size: var(--font-small);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.socialLinks {
  display: flex;
  gap: 12px;
}

.socialIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: var(--transition-default);
  text-decoration: none;
}

.socialIcon:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.linksColumn,
.contactColumn {
  padding-top: 8px;
}

.columnTitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.linksList,
.contactList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.linksList li,
.contactList li {
  margin-bottom: 14px;
}

.footerLink,
.contactLink {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-small);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-default);
}

.footerLink:hover {
  color: #ffffff;
  padding-left: 5px;
}

.contactLink:hover {
  color: #ffffff;
}

.contactIcon {
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.bottomBar {
  padding: 24px 0;
  text-align: center;
}

.copyright {
  font-size: var(--font-small);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@media (max-width: 968px) {
  .desktopFooter {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .brandColumn {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 0;
  }

  .desktopFooter {
    display: none;
  }

  .mobileFooter {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .bottomBar {
    display: none;
  }

  .mobileDivider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    flex-shrink: 0;
  }

  .mobileBrand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 24px;
  }

  .mobileLogoLink {
    display: inline-block;
    margin-bottom: 14px;
    text-decoration: none;
  }

  .mobileLogoImg {
    height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .mobileCompanyName {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .mobileDescription {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 300px;
  }

  .mobileSocial {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .mobileSocialBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .mobileSocialBtn:hover,
  .mobileSocialBtn:active {
    color: #ffffff;
    transform: scale(1.1);
  }

  .mobileAccordion {
    width: 100%;
  }

  .accordionHeader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
  }

  .accordionHeader:active {
    background: rgba(255, 255, 255, 0.04);
  }

  .chevron {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .chevronOpen {
    transform: rotate(180deg);
    color: #ffffff;
  }

  .accordionBody {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                padding 0.3s ease;
    opacity: 0;
    padding: 0 20px;
  }

  .accordionBody.accordionOpen {
    max-height: 300px;
    opacity: 1;
    padding: 4px 20px 16px;
  }

  .accordionLink {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .accordionLink:last-child {
    border-bottom: none;
  }

  .accordionLink:hover,
  .accordionLink:active {
    color: #ffffff;
    padding-left: 6px;
  }

  .accordionContactItem {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease;
    word-break: break-all;
  }

  .accordionContactItem:last-child {
    border-bottom: none;
  }

  .accordionContactItem:hover {
    color: #ffffff;
  }

  .accordionContactIcon {
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .mobileBottomBar {
    padding: 18px 20px;
    text-align: center;
  }

  .mobileCopyright {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .mobileLogoImg {
    height: 38px;
  }

  .mobileCompanyName {
    font-size: 0.8rem;
  }

  .mobileSocialBtn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .accordionHeader {
    padding: 16px 16px;
    font-size: 0.9rem;
  }

  .accordionBody {
    padding: 0 16px;
  }

  .accordionBody.accordionOpen {
    padding: 4px 16px 14px;
  }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsappFloat {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: softPulse 2.5s infinite;
}

.whatsappFloat.scrolled {
  bottom: 90px;
}

.whatsappFloat:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsappIcon {
  font-size: 28px;
}

.whatsappTooltip {
  position: absolute;
  right: 65px;
  background: #ffffff;
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsappFloat:hover .whatsappTooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes softPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsappFloat {
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  
  .whatsappFloat.scrolled {
    bottom: 80px;
  }
  
  .whatsappIcon {
    font-size: 24px;
  }
  
  .whatsappTooltip {
    display: none;
  }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scrollBtn {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #27AE60;
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(39, 174, 96, 0.5);
  opacity: 0;
  transform: translateY(16px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease,
              background 0.2s ease, box-shadow 0.2s ease;
}

.scrollBtn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.scrollBtn:hover {
  background: #1e8449;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.6);
}

.scrollBtn:active {
  transform: translateY(0) scale(0.95);
  box-shadow: 0 3px 10px rgba(39, 174, 96, 0.4);
}

@media (max-width: 380px) {
  .scrollBtn {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    bottom: 20px;
    right: 16px;
  }
}
