/* ==============================================================
   FONT IMPORTS
   ============================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300..900;1,14..32,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* ==============================================================
      ROOT & THEME VARIABLES  (colors, spacing, etc.)
      (unchanged from your setup; just keep these)
      ============================================================== */
:root {
  /* Fonts — will be set by the active FONT THEME block below */
  --font-heading: system-ui, sans-serif;
  --font-body: system-ui, sans-serif;
  --fs-base: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.4s ease-in-out;

  /* Light Theme Colors */
  --color-bg-light: #f4f7f9;
  --color-surface-light: #ffffff;
  --color-text-light: #1c1c1c;
  --color-heading-light: #0a0a0a;
  --color-border-light: #e0e0e0;
  --color-primary-light: #0077cc;
  --color-primary-hover-light: #0055aa;
  --color-gradient-start-light: #00aaff;
  --color-gradient-end-light: #0077cc;

  /* Dark Theme Colors (Default) */
  --color-bg-dark: #0d1117;
  --color-surface-dark: #161b22;
  --color-text-dark: #c9d1d9;
  --color-heading-dark: #ffffff;
  --color-border-dark: #30363d;
  --color-primary-dark: #58a6ff;
  --color-primary-hover-dark: #388bfd;
  --color-gradient-start-dark: #58a6ff;
  --color-gradient-end-dark: #388bfd;
}


/* === FONT THEME A — Tech / Modern (Space Grotesk + Inter) — ACTIVE === */

/* :root {
     --font-heading: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
     --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
   } */



:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}


/* :root{
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  } */


/* ==============================================================
      BASE TYPOGRAPHY HOOKS (works with all 3 themes)
      ============================================================== */
html {
  font-size: var(--fs-base);
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 .5rem 0;
}

/* Hero headline punch */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* UI text and small labels */
.nav-menu a,
.btn,
.tag,
.product-content {
  font-family: var(--font-body);
  font-weight: 500;
}

/* Numbers look crisp for pricing/specs */
.price,
.specs {
  font-variant-numeric: tabular-nums;
}

/* apply */
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
  /* use 700 for headings */
  margin: 0 0 .5rem 0;
}

/* Hero headline tuning */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  /* heavy for impact */
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* UI text and small labels */
.nav-menu a,
.btn,
.tag,
.product-content {
  font-family: var(--font-body);
  font-weight: 500;
  /* medium weight for buttons/menu */
}

/* small/caption */
small,
.subtitle {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Eviltron Modal ===== */
.et-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.et-modal.is-open {
  display: block;
}

.et-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(4px);
}

.et-modal__dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 980px;
  width: 90%;
  max-height: 90vh;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
  z-index: 2001;
}

.et-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--heading);
  font-size: 24px;
  cursor: pointer;
}

.et-modal__body {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 0;
  max-height: 80vh;
  overflow-y: auto;
}

.et-modal__media {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.et-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.et-modal__content {
  padding: 26px;
}

.et-tag {
  color: var(--primary);
  font-weight: 600;
  margin: 6px 0 10px;
}

.et-desc {
  opacity: .9;
  margin-bottom: 12px;
}

.et-price {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 10px 0 16px;
}

.et-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0 18px;
}

.et-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.et-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.et-field input,
.et-field select {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
}

.et-hint {
  opacity: .7;
  display: block;
  margin-top: 10px;
}

@media (max-width: 860px) {
  .et-modal__dialog {
    margin: 3vh 12px;
  }

  .et-modal__body {
    grid-template-columns: 1fr;
  }

  .et-modal__media {
    display: none;
  }

  .et-grid {
    grid-template-columns: 1fr;
  }
}

/* Apply variables based on body class */
body {
  --bg: var(--color-bg-dark);
  --surface: var(--color-surface-dark);
  --text: var(--color-text-dark);
  --heading: var(--color-heading-dark);
  --border: var(--color-border-dark);
  --primary: var(--color-primary-dark);
  --primary-hover: var(--color-primary-hover-dark);
  --gradient-start: var(--color-gradient-start-dark);
  --gradient-end: var(--color-gradient-end-dark);
}

body.is-style-light {
  --bg: var(--color-bg-light);
  --surface: var(--color-surface-light);
  --text: var(--color-text-light);
  --heading: var(--color-heading-light);
  --border: var(--color-border-light);
  --primary: var(--color-primary-light);
  --primary-hover: var(--color-primary-hover-light);
  --gradient-start: var(--color-gradient-start-light);
  --gradient-end: var(--color-gradient-end-light);
}

/*================================================
* BASE & UTILITIES
= *===============================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  /* margin: 0 10px;
  padding: 0 500px; */
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.3;
}

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

section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px auto;
  color: var(--text);
  opacity: 0.8;
}

/*================================================
* BUTTONS
= *===============================================*/
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.btn--primary {
  background-image: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 150, 255, 0.2);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 150, 255, 0.4);
}

.btn--outline {
  border-color: var(--border);
  color: var(--heading);
  background: transparent;
}

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

/*================================================
* HEADER & NAVIGATION
= *===============================================*/
.header {
  background-color: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  /* position: sticky; */
  backdrop-filter: blur(8px);
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

/* .header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
} */
/* When scrolled, give it a dark blur effect */
/* .header.scrolled {
  background-color: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(8px);
} */
/* .header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: none;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
} */
/* When at top (no scroll), make transparent */
/* .header.top {
  background: transparent;
  backdrop-filter: none;
} */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand h2 {
  font-size: 1.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--heading);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ////////// Theme Toggle ...... */
/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.theme-toggle svg {
  display: none;
}

body.is-style-dark .moon-icon {
  display: block;
}

body.is-style-light .sun-icon {
  display: block;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
}

/*================================================
* HERO SECTION
= *===============================================*/
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  /* Remove background image line */
  /* background: url('a1.png') no-repeat center center/cover; */
  overflow: hidden;
  /* ensures video stays inside bounds */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  /* allows clicking elements over video */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg) 5%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* .hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background: url('a1.png') no-repeat center center/cover;
} */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg) 5%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #fff;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/*================================================
* ABOUT & PRODUCTS SECTION CARDS
= *===============================================*/
.about-grid,
.products-grid {
  display: grid;
  gap: 35px;
}

/* .about-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.products-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } */
.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.about-card,
.product-card {
  background-color: var(--surface);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-image {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
}

.product-content {
  padding: 25px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.tag {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.description {
  margin-bottom: 20px;
}

/* .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
} */

.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.price-original {
  text-decoration: line-through;
  color: var(--text);
  opacity: 0.6;
  font-size: 1rem;
}

.price-final {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading);
}

.price-discount {
  background-color: #ef4444;
  /* Red for discount */
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.product-card .btn {
  width: 100%;
  text-align: center;
}

/*================================================
* TESTIMONIALS & CTA
= *===============================================*/
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--surface);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.testimonial-author {
  margin-top: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-style: normal;
}

.testimonial-author span {
  opacity: 0.8;
}

.cta {
  position: relative;
  text-align: center;
  padding: 100px 0;
  border-radius: 15px;
  overflow: hidden;
  background: url('../images/a3.png') no-repeat center center/cover;
}

/*================================================
* FAQ SECTION
= *===============================================*/
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface);
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--heading);
  padding: 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.faq-answer p {
  padding: 0 20px 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/*================================================
* FOOTER
= *===============================================*/
.footer {
  background-color: var(--surface);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input {
  flex-grow: 1;
  min-width: 0;
  /* Prevent overflow */
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.newsletter-form .btn {
  padding: 12px 20px;
  white-space: nowrap;
  font-size: 0.9rem;
  flex-shrink: 0;
  /* Prevent button from shrinking */
}

/*================================================
* SCROLL ANIMATIONS
= *===============================================*/
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* IoT Innovators Section Styling */
.iot-innovators {
  padding: 5px 0;
  text-align: center;
  /* background-color: var(--bg); */
  color: var(--text);
}

.iot-innovators .section-title {
  margin-bottom: 10px;
}

.iot-innovators .section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text);
}

.innovator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.innovator-card {
  padding: 30px;
}

.innovator-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.innovator-card p {
  color: var(--text);
  line-height: 1.6;
  opacity: 0.8;
}

/* Logo & Brand Name */
.nav-brand {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  /* Tighter spacing */
}

.nav-brand .logo {
  height: 50px;
  /* Defines the size of your logo */
  width: auto;
  transition: filter 0.3s ease;
}

.nav-brand h2 {
  font-size: 1.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--heading);
  margin: 0;
}

/* ////////// icons  ...... */
.social-icons {
  display: flex;
  gap: 32px;
  margin-right: 15px;
  align-items: center;
}

.social-icons a img.icon-img {
  width: 25px;
  /* adjust size */
  height: 25px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a img.icon-img:hover {
  transform: scale(1.3);
  /* zoom effect */
  opacity: 0.8;
  /* slight fade */
}

/*================================================
* RESPONSIVE DESIGN
= *===============================================*/
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 85px;
    left: 0;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 25px;
    height: 21px;
  }

  .nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--heading);
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ================================================
ENHANCED MODAL IMAGE SHOWCASE STYLING
================================================ */
/* Modal Media Container - Enhanced Showcase */
.et-modal__media {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
  min-height: 450px;
}

/* Product Image - Showcase Style with Border & Effects */
.et-modal__media img {
  width: 85%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  padding: 20px;
  background: var(--surface);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for image */
.et-modal__media img:hover {
  transform: scale(1.02);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Alternative Style 1: Gradient Border Showcase */
.et-modal__media.style-gradient img {
  border: none;
  padding: 4px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.et-modal__media.style-gradient img::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--surface);
  border-radius: 14px;
}

/* Alternative Style 2: Elevated Card Style */
.et-modal__media.style-elevated img {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Alternative Style 3: Clean Minimal with Accent Border */
.et-modal__media.style-accent img {
  padding: 25px;
  background: var(--surface);
  border: 3px solid var(--primary);
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(88, 166, 255, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Decorative Corner Badges (Optional) */
.et-modal__media::before {
  content: '🏆';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  opacity: 0.3;
  z-index: 1;
}

/* Background Pattern (Optional Enhancement) */
.et-modal__media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(88, 166, 255, 0.03) 10px,
      rgba(88, 166, 255, 0.03) 20px);
  pointer-events: none;
  z-index: 0;
}

.et-modal__media img {
  position: relative;
  z-index: 2;
}

/* Light Mode Adjustments */
body.is-style-light .et-modal__media img {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid #e0e0e0;
}

body.is-style-light .et-modal__media img:hover {
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive Adjustments */
@media (max-width: 860px) {
  .et-modal__media {
    padding: 30px 20px;
    min-height: 300px;
  }

  .et-modal__media img {
    width: 70%;
    max-width: 280px;
  }

}

@media (max-width: 480px) {
  .et-modal__media {
    padding: 20px 15px;
    min-height: 250px;
  }

  .et-modal__media img {
    width: 80%;
  }

}



















/* Improved lighting background for Eviltron
   - Replaces circular blobs with elongated, slanted light streaks
   - Adds small sharp highlight points and soft ambient gradients
   - Works purely in CSS (no image assets required)
*/

:root {
  /* keep existing vars */
  --bg-dark-1: #07111a;
  --bg-dark-2: #0b1520;
  --bg-dark-3: #0d1620;
  --accent-blue: rgba(60, 150, 240, 0.16);
  --accent-blue-strong: rgba(60, 150, 240, 0.45);
}

/* Ensure the page content sits above background effects */
html,
body {
  height: 100%;
}

body {
  position: relative;
  /* create stacking context for pseudo elements */
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 60%, var(--bg-dark-3) 100%);
  color: var(--text);
}

/* Left slanted soft contour (elongated, non-circular) */
body::before {
  content: "";
  position: fixed;
  left: -12%;
  top: 6%;
  width: 72vw;
  height: 80vh;
  pointer-events: none;
  z-index: 0;
  transform: skewY(-12deg) scaleX(1.05);
  background:
    /* soft dark band */
    radial-gradient(1200px 420px at 6% 45%, rgba(6, 18, 28, 0.55) 0%, rgba(6, 18, 28, 0.40) 20%, rgba(6, 18, 28, 0.06) 48%, transparent 60%),
    /* subtle blue sheen */
    radial-gradient(700px 240px at 18% 58%, rgba(40, 90, 140, 0.08) 0%, rgba(40, 90, 140, 0.02) 40%, transparent 65%);
  filter: blur(30px) saturate(105%);
}

/* Right slanted beam + crisp light flare (the primary highlight) */
body::after {
  content: "";
  position: fixed;
  right: -6%;
  bottom: 6%;
  width: 48vw;
  height: 62vh;
  pointer-events: none;
  z-index: 0;
  transform: skewX(16deg) translateY(4%);
  background:
    /* elongated triangular beam */
    linear-gradient(120deg, rgba(7, 20, 30, 0.0) 0%, rgba(8, 22, 36, 0.22) 28%, rgba(12, 34, 58, 0.45) 56%, rgba(8, 18, 30, 0.0) 86%),
    /* soft elongated glow */
    radial-gradient(420px 220px at 76% 74%, rgba(28, 80, 140, 0.36) 0%, rgba(18, 54, 96, 0.18) 18%, transparent 55%),
    /* small sharp bright point */
    radial-gradient(40px 20px at 86% 82%, rgba(170, 220, 255, 0.95) 0%, rgba(80, 160, 240, 0.65) 25%, rgba(20, 70, 140, 0.08) 50%, transparent 65%);
  mix-blend-mode: screen;
  /* brighten underlying tones */
  filter: blur(18px) contrast(110%);
}

/* Add a very subtle diagonal streak across center for the folded look */
.main-fold {
  position: fixed;
  left: 0;
  right: 0;
  top: 20vh;
  bottom: 20vh;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.01) 34%, rgba(0, 0, 0, 0.08) 50%, rgba(255, 255, 255, 0.00) 62%);
  transform: skewX(-8deg);
  opacity: 0.06;
  mix-blend-mode: overlay;
  filter: blur(8px);
}

/* Ensure site content is above these effects */
.header,
main,
footer,
.et-modal,
.container {
  position: relative;
  z-index: 2;
}

/* Replace previous .features background usage (disable image-based backgrounds) */
.features {
  background: transparent;
  /* effects are produced by body pseudo elements */
  color: #fff;
  padding: 80px 0;
}

.features::before {
  display: none;
}

/* CTA: softened, keeps a small spot under cards but not circular blob */
.cta {
  background: linear-gradient(180deg, rgba(6, 14, 22, 0.22), rgba(6, 14, 22, 0.28));
  position: relative;
  z-index: 2;
}

/* Slight local highlight under the rightmost cards (non-circular) */
.products-grid::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 8%;
  width: 22%;
  height: 40%;
  pointer-events: none;
  background:
    radial-gradient(260px 160px at 72% 60%, rgba(44, 110, 200, 0.28) 0%, rgba(30, 80, 150, 0.14) 28%, transparent 62%),
    linear-gradient(110deg, rgba(0, 0, 0, 0.0) 0%, rgba(5, 10, 18, 0.42) 58%, transparent 100%);
  transform: skewX(10deg);
  filter: blur(20px);
  z-index: 1;
}

/* small responsive tweaks so the effect scales nicely */
@media (max-width: 1024px) {
  body::before {
    width: 110vw;
    left: -20%;
    filter: blur(36px);
  }

  body::after {
    width: 72vw;
    height: 62vh;
    filter: blur(22px);
  }

  .products-grid::after {
    right: 2%;
    width: 32%;
    height: 36%;
    filter: blur(28px);
  }
}

@media (max-width: 640px) {
  body::before {
    display: none;
  }

  body::after {
    width: 120vw;
    right: -36%;
    height: 38vh;
    transform: skewX(6deg) translateY(6%);
    filter: blur(28px);
  }

  .products-grid::after {
    display: none;
  }
}

/* Optional helper: allow toggling the stronger highlight with a class */
body.has-strong-spot::after {
  filter: blur(12px) contrast(120%);
}

/* End of improved lighting CSS */




/* Style for your icon logo */
.nav-brand .logo-icon {
  height: 45px;
  width: auto;
  transition: filter 0.3s ease;
  margin-bottom: 5px;
  /* Adjusted for 32px text alignment */
}

/* Style for your text logo */
.nav-brand .logo-text {
  height: 32px;
  width: auto;
  transition: filter 0.3s ease;
}


/* ===== Rounded Rectangle Transparent Header ===== */
.header {
  position: fixed;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 2000px;

  padding: 14px 28px;

  background: rgba(13, 17, 23, 0.18);
  /* transparent */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  z-index: 2000;

  display: flex;
  align-items: center;
}

/* Remove old bottom border */
.header {
  border-bottom: none !important;
}

/* Keep nav aligned */
.nav {
  width: 100%;
}






/* Typewriter effect */
.typewriter {
  display: inline-block;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 3.0s steps(35) forwards, blink 0.7s infinite;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}





/*================================================
* FEATURES SECTION
= *===============================================*/
/* .features-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.features-list li {
  padding: 15px 0 15px 35px;
  position: relative;
}

.features-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
} */
.features {
  position: relative;
  background-image: url('../images/a2.png');
  /* replace with your actual image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* gives nice parallax-like effect */
  color: #fff;
  /* make text visible over image */
  padding: 80px 0;
  z-index: 1;
}

/* Optional dark overlay for better contrast */
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* adjust opacity */
  z-index: -1;
}

/* Keep your existing list styling */
.features-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.features-list li {
  padding: 15px 0 15px 35px;
  position: relative;
}

.features-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}


/* .cta-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(13, 17, 23, 0.7);
} */
.cta {
  position: relative;
  padding: 150px 10px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  overflow: hidden;
  /* ✨ Add your generated background image here */
  background: url('../images/test1.png') no-repeat center center/cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 17, 23, 0.6);
  border-radius: 40px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn--primary {
  background-color: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn--primary:hover {
  background-color: #7c3aed;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.cta-content p {
  max-width: 500px;
  margin: 0 auto 30px;
  opacity: 0.9;
}












/* ==============================================================
   CINEMATIC HEADER (Float over video, no box)
   ============================================================== */
.header {
  position: fixed;
  /* Locks header to top of screen */
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  /* Spacing for the logo/menu */
  z-index: 1000;
  /* Ensures it stays on top of video */

  /* Transparent gradient - makes text readable but keeps video visible */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);

  /* Remove borders and shadows that look like "boxes" */
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  /* No blur initially for maximum clarity */

  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

/* This class will be added by JavaScript when you scroll down */
.header.scrolled {
  background: rgba(13, 17, 23, 0.85);
  /* Dark background when scrolling */
  backdrop-filter: blur(12px);
  /* Blur effect when scrolling */
  padding: 15px 0;
  /* Shrinks slightly when scrolling */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* ==============================================================
   FULL SCREEN HERO
   ============================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Forces full screen height */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  /* crucial: removes any gap at the top */
  padding-top: 0;
  /* crucial: lets video touch the top edge */
}

/* Ensure the video covers absolutely everything */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures no black bars */
  z-index: 0;
}


/* ==============================================================
   CINEMATIC HEADER (Float over video, full width)
   ============================================================== */
/* Remove the old rounded-rectangle/fixed positioning that was causing the issue */
.header {
  position: fixed;
  /* Locks header to top of screen */
  top: 0;
  left: 0;
  transform: none;
  /* Remove translateX(-50%) */
  width: 100%;
  max-width: none;
  /* Allow full width */

  padding: 25px 0;
  /* Spacing for the logo/menu */
  z-index: 2000;
  /* Ensures it stays on top of video and other content */

  /* Transparent gradient - makes text readable but keeps video visible */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);

  /* Remove borders and shadows that look like "boxes" */
  border-radius: 0;
  border: none;
  border-bottom: none !important;
  /* Ensure no residual border */
  box-shadow: none;
  backdrop-filter: none;
  /* No blur initially for maximum clarity */

  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

/* This class will be added by JavaScript (or you can add it manually for testing) */
.header.scrolled {
  background: rgba(13, 17, 23, 0.85);
  /* Dark background when scrolling */
  backdrop-filter: blur(12px);
  /* Blur effect when scrolling */
  padding: 15px 0;
  /* Shrinks slightly when scrolling */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Keep nav aligned within the container */
.nav {
  width: 100%;
}



/* Hide horizontal overflow during slide */
.testimonials {
  overflow: hidden;
}

/* Use the grid as a horizontal track */
.testimonials-grid {
  display: flex;
  /* instead of CSS grid */
  gap: 30px;
  /* same spacing as before */
  transition: transform 0.6s ease-in-out;
}




/*================================================
* TESTIMONIALS CAROUSEL - SHOW 3, SLIDE 1
=*===============================================*/
.testimonials {
  overflow: hidden;
  /* Hide cards that slide out of view */
  padding: 100px 0;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* Don't allow wrapping */
  flex-wrap: nowrap;
}

.testimonial-card {
  /* Force each card to be exactly 1/3 of container width minus gaps */
  min-width: calc((100% - 60px) / 3);
  /* 60px = 2 gaps of 30px between 3 cards */
  max-width: calc((100% - 60px) / 3);
  flex-shrink: 0;
  /* Prevent cards from shrinking */

  background-color: var(--surface);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-sizing: border-box;
}

.testimonial-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  margin-top: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-style: normal;
  color: var(--heading);
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc((100% - 30px) / 2);
    /* 2 cards on tablet */
    max-width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
    /* 1 card on mobile */
    max-width: 100%;
  }

  .testimonials-grid {
    gap: 20px;
  }
}


/*================================================
* VIDEO LOADING ANIMATION
=*===============================================*/
.video-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.video-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(88, 166, 255, 0.2);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.video-loader span {
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0.8;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}


/*================================================
* BACK TO TOP BUTTON
=*===============================================*/
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.3);
  z-index: 1500;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(88, 166, 255, 0.5);
}

.back-to-top:active {
  transform: translateY(-2px);
}


/*================================================
* ENHANCED FEATURES LIST WITH ICONS
=*===============================================*/
.features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0 18px 0;
}

.features-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.features-list li:hover svg {
  transform: scale(1.2);
}

.features-list li::before {
  display: none;
}


/*================================================
* ENHANCED BUTTON GRADIENTS & GLOW
=*===============================================*/
.btn--primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(88, 166, 255, 0.3);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  box-shadow: 0 6px 30px rgba(88, 166, 255, 0.5);
  transform: translateY(-3px);
}


/*================================================
* MICRO-ANIMATIONS & ENHANCED HOVER EFFECTS
=*===============================================*/
/* Card entrance animations */
.product-card,
.about-card,
.innovator-card,
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

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

/* Product image zoom on hover */
.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-image {
  transition: transform 0.5s ease;
}

/* Smooth link hover underline */
.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* FAQ accordion animation enhancement */
.faq-item {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: var(--primary);
}

/* Testimonial card subtle animation */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


/*================================================
* MOBILE HERO SECTION FIXES
=*===============================================*/
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: 1.2;
  }

  /* Fix typewriter for mobile */
  .typewriter {
    white-space: normal;
    width: auto !important;
    max-width: 100%;
    border-right: none;
    animation: none;
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.2rem);
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .features-list {
    padding: 0 15px;
  }

  .features-list li {
    font-size: 1rem;
  }
}


/*================================================
* ENHANCED NEWSLETTER & FORM STYLES
=*===============================================*/
.newsletter-form input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

.et-field input:focus,
.et-field select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

/* Newsletter form responsive stack */
@media (max-width: 768px) {
  .newsletter-form {
    flex-wrap: wrap;
  }

  .newsletter-form .btn {
    width: 100%;
    margin-top: 10px;
  }
}


/*================================================
* SMOOTH PAGE SECTION TRANSITIONS
=*===============================================*/
section {
  animation: fadeInUp 0.6s ease-out;
}

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

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

/* Staggered reveal for grid items */
.products-grid .product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.products-grid .product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.products-grid .product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.products-grid .product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.products-grid .product-card:nth-child(5) {
  animation-delay: 0.5s;
}


/*================================================
* TRUST BADGES
=*===============================================*/
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-badges .badge:hover {
  background: rgba(88, 166, 255, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.trust-badges .badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 12px;
  }

  .trust-badges .badge {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}


/*================================================
* COMPATIBLE WITH SECTION
=*===============================================*/
.compatible-with {
  padding: 50px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(88, 166, 255, 0.05) 50%, var(--bg) 100%);
}

.compatible-label {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.compatible-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.compatible-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.compatible-item:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.compatible-item:hover svg {
  color: var(--primary);
}

.compatible-item svg {
  color: var(--text);
  transition: color 0.3s ease;
}

.compatible-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .compatible-logos {
    gap: 30px;
  }

  .compatible-item svg {
    width: 32px;
    height: 32px;
  }
}


/*================================================
* WHATSAPP FLOATING BUTTON
=*===============================================*/
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* Dynamic movement to avoid footer overlap */
.whatsapp-float.move-up,
.back-to-top.move-up {
  transform: translateY(-107px);
  /* Increased shift for more space */
}

@media (max-width: 768px) {

  .whatsapp-float.move-up,
  .back-to-top.move-up {
    transform: translateY(-107px);
    /* consistent shift on mobile */
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .back-to-top {
    bottom: 20px;
  }
}


/*================================================
* ENHANCED THEME TOGGLE
=*===============================================*/
.theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text);
  margin-right: 10px;
}

.theme-toggle:hover {
  background: rgba(88, 166, 255, 0.2);
  border-color: var(--primary);
}

.theme-toggle svg {
  display: none;
  width: 20px;
  height: 20px;
}

body.is-style-dark .theme-toggle .moon-icon {
  display: block;
}

body.is-style-light .theme-toggle .sun-icon {
  display: block;
}

/* Light mode adjustments */
body.is-style-light .trust-badges .badge {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text);
}

body.is-style-light .compatible-with {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0, 119, 204, 0.05) 50%, var(--bg) 100%);
}


/*================================================
* PARALLAX SCROLLING EFFECTS
=*===============================================*/
.hero {
  background-attachment: fixed;
}

.hero .background-video {
  transform: translateZ(0);
  will-change: transform;
}

/* Parallax for CTA section */
.cta {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* Parallax for features section */
.features {
  background-attachment: fixed;
  background-position: center;
}

/* Subtle parallax on about cards - move slightly on scroll */
.about-card,
.product-card,
.innovator-card {
  transform: translateZ(0);
  will-change: transform;
}

/* Smooth scroll behavior enhancement */
html {
  scroll-behavior: smooth;
}

/* Performance optimization for parallax */
@media (prefers-reduced-motion: reduce) {

  .hero,
  .cta,
  .features {
    background-attachment: scroll;
  }

  .whatsapp-float {
    animation: none;
  }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {

  .hero,
  .cta,
  .features {
    background-attachment: scroll;
  }
}

/* Added Features Background */
#features {
/* Added evilll Background */
  background: url('../images/nightmode.png') no-repeat center center/cover;
   
  position: relative;
  /* Ensure text is readable */
  color: #ffffff;
}

#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

#features .container {
  position: relative;
  z-index: 1;
}