/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 55%);
  color: #e5e7eb;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header / navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding: 12px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #cbd5f5;
  font-size: 0.95rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Hero section */
.hero {
  padding: 60px 5vw 30px;
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.05rem;
  color: #cbd5f5;
  margin-bottom: 24px;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #38bdf8;
  color: #020617;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(56, 189, 248, 0.5);
  opacity: 0.95;
}

/* Main content cards */
.content {
  padding: 0 5vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 20px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.card h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
}

.card a {
  color: #60a5fa;
}

/* Footer */
.site-footer {
  margin-top: auto;
  text-align: center;
  padding: 16px 0;
  font-size: 0.85rem;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 23, 42, 0.95);
}
/* Extra nav styling for CTA link */
.nav-cta {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.nav-cta:hover {
  background: rgba(148, 163, 184, 0.08);
}

/* Hero buttons on home page */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;   /* pushes buttons below header text */
}

.btn-secondary {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #38bdf8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #e5e7eb;
  background: transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
  background: rgba(15, 23, 42, 0.9);
  opacity: 0.95;
}

/* App page tweaks */
.app-hero {
  padding-top: 80px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.store-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.95);
  opacity: 0.95;
}

.store-btn.ios {
  border-color: #ffffff;
}

.store-btn.android {
  border-color: #22c55e;
}

.small-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* ----- HERO BANNER WITH IMAGE ----- */
/* ----- HERO BANNER WITH IMAGE ----- */
.hero-banner {
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  padding: 180px 5vw 160px; /* height of the hero area */
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Darkening overlay for readability */
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.60)
    ),
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.35) 10%,
      rgba(0, 0, 0, 0.75) 100%
    );

  backdrop-filter: blur(1.5px);
  z-index: 1;
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
}

.hero-banner h1,
.hero-banner p {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
}

.hero-banner h1,
.hero-banner p {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Stronger darkening for readability */
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.55)
    ),
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.85) 100%
    );

  backdrop-filter: blur(1.5px); /* slight blur for smoothness */
  z-index: 1;
}
.hero-banner .hero-content {
  position: relative;
  z-index: 2; /* on top of the overlay */
}

.hero-banner h1,
.hero-banner p {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}
/* ----- VIDEO PAGE STYLES ----- */

.video-header {
  text-align: center;
  padding: 60px 5vw 20px;
}

.video-header h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.video-header p {
  color: #cbd5f5;
  font-size: 1.1rem;
}

.video-grid {
  padding: 0 5vw 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: rgba(15, 23, 42, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: none;
}

.video-card h3 {
  margin-top: 12px;
  text-align: center;
}
/* ----- VIDEO PAGE STYLES ----- */

.video-hero {
  padding: 60px 5vw 30px;
}

.video-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 30px;
  align-items: center;
}

@media (max-width: 900px) {
  .video-hero-inner {
    grid-template-columns: 1fr;
  }
}

.video-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.video-hero-text p {
  font-size: 1.05rem;
  color: #cbd5f5;
}

.video-hero-player iframe {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
  .video-hero-player iframe {
    height: 220px;
  }
}

.video-section {
  padding: 20px 5vw 60px;
}

.video-section h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 16px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.video-card iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: none;
}

.video-card h3 {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.video-card p {
  font-size: 0.9rem;
  color: #d1d5db;
}
/* ---------- VIDEO PAGE ---------- */

.video-hero {
  text-align: center;
  padding: 60px 5vw 40px;
}

.video-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.video-hero p {
  color: #cbd5f5;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.featured-video iframe {
  width: 85%;
  max-width: 900px;
  height: 420px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.video-section {
  padding: 20px 5vw 60px;
}

.video-section h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.9rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.video-card iframe {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  border: none;
}

.video-card h3 {
  margin-top: 10px;
  font-size: 1.05rem;
}
/* ---------- VIRTUAL ASSISTANT ---------- */

.assistant-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  font-family: inherit;
}

.assistant-toggle {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: #38bdf8;
  color: #020617;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.assistant-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.6);
  opacity: 0.95;
}

.assistant-panel {
  width: 320px;
  max-height: 420px;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  display: none; /* hidden by default */
  flex-direction: column;
  overflow: hidden;
}

/* Warbee Assistant Panel */
/* Warbee Assistant Panel */
/* Warbee Assistant Panel */
.assistant-panel {
  position: fixed;
  bottom: 85px;              /* sits above bee + bubble */
  right: -450px;             /* completely hidden off-screen */
  width: 420px;
  height: 900px;
  background: #0f172a;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 999999;

  opacity: 0;                /* invisible until opened */
  transition:
    right 0.35s ease-out,
    opacity 0.2s ease-out;
}

.assistant-panel.open {
  right: 50px;               /* fully visible position */
  opacity: 1;
}




/* When open */
.assistant-panel.open {
  transform: scale(1);
}


/* When open */
.assistant-panel.open {
  transform: scale(1);
}



.assistant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.95rem;
}

/* Force blue circular close button */
.assistant-close {
  position: absolute !important;
  top: 10px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #4aa3ff;       /* Blue background */
  color: white !important;    /* White X */
  border-radius: 50%;         /* Circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  z-index: 999999;
}

.assistant-close:hover {
  background: #78bdff;        /* Lighter blue on hover */
  transform: scale(1.15);
}



.assistant-messages {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: #0f172a;
  max-height: calc(100% - 130px);  /* Adjust dynamically */
}



.assistant-message {
  margin-bottom: 8px;
  max-width: 90%;
}

.assistant-message.bot {
  color: #e5e7eb;
}

.assistant-message.user {
  color: #ffffff;
  text-align: right;
}

.assistant-bubble {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 12px;
}

.assistant-message.bot .assistant-bubble {
  background: rgba(30, 64, 175, 0.9);
}

.assistant-message.user .assistant-bubble {
  background: rgba(56, 189, 248, 0.9);
}

.assistant-input-row {
  display: flex;
  padding: 12px;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.assistant-input-row input {
  flex: 1;
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  outline: none;
}

.assistant-input-row button {
  margin-left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 1rem;
  background: #2563eb;
  color: white;
  border: none;
  cursor: pointer;
}


.assistant-input-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.assistant-input-row input:focus {
  outline: none;
  border-color: #38bdf8;
}

.assistant-input-row button {
  border-radius: 999px;
  border: none;
  padding: 6px 14px;
  background: #38bdf8;
  color: #020617;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}
/* ---------- BACK BUTTON ON INNER PAGES ---------- */

.page-back {
  padding: 70px 5vw 10px; /* space below the header */
}

.back-button {
  display: inline-block;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.back-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.95);
  opacity: 0.95;
}
/* === Helper Bee Assistant Button === */

.helper-bee {
    position: fixed;
    bottom: 40px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
}

.helper-bee img {
    width: 160px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Speech bubble */
.speech-bubble {
    margin-top: -20px;
    padding: 12px 22px;
    background: #ffffff;
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
}

/* Tail of the bubble */
.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ffffff;
}

.speech-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}
/* === Helper Bee Assistant Button === */

.helper-bee {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;      /* bubble above, bee below */
  align-items: center;
  z-index: 9999;
}

.helper-bee img {
  width: 160px;
  height: auto;
  animation: float 3s ease-in-out infinite;
  cursor: pointer; /* makes bee clickable */
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Speech bubble */
.speech-bubble {
  margin-bottom: -8px;
  padding: 12px 22px;
  background: #ffffff;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;

  /* NEW - make bubble float with bee */
  animation: float 3s ease-in-out infinite;
}


/* Tail of the bubble */
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ffffff;
}

.speech-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}
/* ---------- ABOUT CARD POPUP ---------- */

.about-card {
    position: relative;
}

/* ---------- ABOUT CARD POPUP (LEFT SIDE) ---------- */

.about-card {
    position: relative;
}

.about-popup {
    position: absolute;
    top: 50%;
    right: 115%;
    transform: translateY(-50%);
    width: 310px;                          /* bigger popup */
    padding: 20px;                         /* bigger padding */
    background: rgba(0, 0, 0, 0.9);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;                       /* bigger text */
    line-height: 1.5;                      /* better spacing */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    text-align: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .3s ease;
}

.about-popup::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 10px;                    /* bigger arrow */
    border-style: solid;
    border-color: transparent transparent transparent rgba(0,0,0,0.9);
}


/* Little arrow pointing RIGHT (towards the card) */
.about-popup::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;                        /* arrow on right side */
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0,0,0,0.85);
}

/* Show popup on hover */
.about-card:hover .about-popup {
    opacity: 1;
}


/* small arrow */
.about-popup::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.85) transparent transparent transparent;
}

/* SHOW ON HOVER */
.about-card:hover .about-popup {
    opacity: 1;
}
.info-card {
    background: rgba(0, 0, 0, 0.35);         /* same card style */
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35); /* soft glow */
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.07);
    transition: 0.2s ease;
}

.info-card:hover {
    background: rgba(0, 0, 0, 0.45);         /* small hover effect */
    transform: translateY(-3px);
}
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.store-btn img {
    height: 55px;           /* button size */
    width: auto;
    transition: transform .2s ease, filter .2s ease;
}

.store-btn img:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}
/* Header Logo */
/* Bigger / Longer Warbee Logo */
/* Longer but same height Warbee Logo */
/* Stretch Warbee logo: same height, longer width */
.logo img {
    height: 70px;          /* keep this the same */
    width: 180px;          /* force it to be longer */
    object-fit: contain;   /* keep the whole logo visible */
    display: block;
}



.logo {
    display: flex;
    align-items: center;
    padding-left: 15px;    /* optional spacing */
}


.logo {
    display: flex;
    align-items: center;
}

/* Optional: hover effect */
.logo img:hover {
    transform: scale(1.05);
    transition: 0.2s ease;
}
