@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --secondary: #64748b;
  --accent: #d1e4ff;
  --panel: rgba(255, 255, 255, 0.9);
  --pill: #d2a7ff;
  --text: #0f172a;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-soft: #e2e8f0;
  --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  background-color: #fff;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

section[id] {
  scroll-margin-top: 90px;
}

/* ============= Navbar ============ */
.manu_bar {
  background-color: #0f172a47;
  color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 8px 16px !important;
  font-size: 0.8rem;
  transition: 1s all ease;
}

.manu_bar.active {
  color: #ffffff !important;
}

.manu_bar:hover {
  transform: scale(1.1);
  color: rgb(255, 255, 255);
  box-shadow: inset 0 -50px 0px rgb(0, 119, 255);
}

.manu_bar_login {
  background-color: #ffffff;
  color: rgb(66, 66, 66);
  border-radius: 20px;
  padding: 8px 16px !important;
  font-size: 0.8rem;
  border: 0;
}

.bg_mobile_header {
  background-color: transparent !important;
  backdrop-filter: none;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.bg_mobile_header.scrolled {
  background-color: rgba(15, 23, 42, 0.45) !important;
  backdrop-filter: blur(10px);
}

.middle_navbar {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  left: -350px;
}

@media screen and (max-width: 800px) {
  .middle_navbar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: column;
    position: relative;
    left: 0px;
  }
}

/* ============== Hero ============= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 4vw, 4rem);
  background-image: url('../landing/img/logistics-means-transport-together-with-technological-futuristic-holograms.avif');
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #ffffff 100%);
  z-index: 0;
}


.announcement {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #7070708f;
  border: 1px solid #ffffff1a;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 35px rgba(11, 15, 35, 0.5);
  color: white;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .announcement {
    margin-top: 30px;
  }

  .announcement span {
    font-size: 0.7rem;
  }
}

.icon_blink {
  color: #ffffff;
  font-size: 2rem;
  animation: blink 1.5s infinite;
  font-weight: 800 !important;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.prompt-card {
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 30px;
  padding: 1.5rem;
  box-shadow: 0 40px 60px rgba(7, 14, 38, 0.4);
  color: #0a0c1f;
}

.prompt-card .idea {
  width: 100%;
  height: 30px;
  border: none;
  resize: none;
  font-size: 1.1rem;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: #0a0c1f;
  transition: width 0.4s ease;
}

.prompt-card .idea:focus {
  width: 520px;
}

@media screen and (max-width: 786px) {
  .prompt-card .idea:focus {
    width: 100%;
  }
}

.idea::placeholder {
  color: #a1a1a1;
}

.prompt-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

.badges {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.badged {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #4d4d4d3d;
  font-size: 0.8rem;
  color: #686868;
  text-decoration: none;
}

.badge-dropdown {
  display: none;
}

.badge-menu {
  display: none;
}

.badge-menu.show {
  display: flex;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    position: relative;
  }

  .badge-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: #4d4d4d3d;
    border: none;
    font-size: 0.8rem;
    color: #686868;
    cursor: pointer;
  }

  .badge-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 160px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.5rem;
    flex-direction: column;
    z-index: 99;
  }

  .badge-menu span {
    padding: 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #ddd;
    cursor: pointer;
  }

  .badge-menu span:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

.prompt-card .arrow {
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #a3a3a3;
  cursor: pointer;
  font-size: 1.25rem;
}

.integrations {
  margin-top: 2rem;
  background: #09163054;
  border-radius: 28px;
  padding: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  box-shadow: 0 25px 45px rgba(5, 8, 27, 0.65);
}

.integrations h4 {
  margin: 0rem 0.5rem 0.8rem 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.logo-chip {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-chip:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #0000001b;
}

@media screen and (max-width: 768px) {
  .logo-row {
    gap: 0.5rem;
  }

  .logo-chip {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .prompt-card {
    padding: 1.5rem;
  }

  .prompt-actions {
    flex-direction: row;
    gap: 1rem;
    align-items: stretch;
  }
}

/* ============== Companies ============= */
.company-marquee {
  overflow: hidden;
  width: 100%;
}

.company-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: company-scroll 35s linear infinite;
}

.company-marquee:hover .company-track {
  animation-play-state: paused;
}

@keyframes company-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-60%);
  }
}

.company-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: #fff;
  /* border: 1px solid rgba(15, 23, 42, 0.08); */
  /* box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08); */
}

.company-chip img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.company-chip span {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ============== About ============= */
.bg_img {
  position: relative;
  background-image: url('/public/landing/assets/bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.bg_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.bg_img > * {
  position: relative;
  z-index: 2;
}

/* ============== General Sections ============= */
.section-subtitle {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6b7280;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.section-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.module-card {
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.module-card:hover {
  transform: translateY(-10px);
  cursor: pointer;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.15);
}

.module-banner {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.module-badge {
  display: inline-flex;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #1d4ed8;
  text-transform: uppercase;
}

.bg_card_icon {
  background-color: var(--accent);
}

.stats-card {
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  min-height: 150px;
}

.stats-card .badge {
  font-size: 0.65rem;
  padding: 0.35rem 0.75rem;
}

.chart-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.chart-wrap {
  width: 100%;
  height: 360px;
  padding: 0 1.5rem 1.5rem;
}

@media (max-width: 768px) {
  .module-banner {
    height: 180px;
  }
}

/* ============== EximaxX Feature Cards ============= */
.eximaxx-whyus-section {
  padding: 100px 0;
  background: #f3fdff;
}

.eximaxx-whyus-header span {
  color: #22c55e;
  font-weight: 600;
  font-size: 14px;
}

.eximaxx-whyus-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #0f172a;
}

.eximaxx-whyus-header p {
  max-width: 520px;
  margin: 0 auto;
  color: #64748b;
  font-size: 15px;
}

.eximaxx-whyus-card {
  background: #d5eeff8a;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  margin-top: 40px;
  border: 1px solid #9eddff7d;
}

.eximaxx-whyus-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.eximaxx-whyus-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.eximaxx-whyus-card a {
  font-size: 14px;
  color: #0486ff;
  font-weight: 500;
  text-decoration: none;
}

.eximaxx-whyus-mobile img {
  max-width: 300px;
  width: 100%;
  border: 5px solid #4062b4f3;
  margin-top: 40px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .eximaxx-whyus-mobile {
    margin: 30px 0;
  }

  .eximaxx-whyus-header h2 {
    font-size: 28px;
  }
}

/* ============== Tabs / Steps ============= */
.module-tabs {
  gap: 12px;
}

.module-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #f8f9fa;
  color: #000;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
}

.module-tab:hover {
  background: #eaf1ff;
  color: #000;
}

.module-tab.active {
  background: #2563eb;
  color: #fff;
}

.tab-icon {
  display: flex;
  align-items: center;
}

.video-card {
  background: #000;
}

.platform-video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

/* ============== Categories ============= */
.bg_categories {
  background-color: #fffdf3;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #555;
}

.category-label {
  font-size: 0.85rem;
  color: #333;
  text-align: center;
  max-width: 120px;
}

.text_size {
  font-size: 0.9rem;
}

/* ============== Subscribe / Footer ============= */
.subscribe-gradient {
  background: linear-gradient(135deg, #0c4a6e, #3b82f6, #9333ea);
}

.footer-links a {
  color: #475569;
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #2563eb;
}

/* ============== Testimonials ============= */
.testimonial-section {
  padding: 100px 0;
  background: url('/public/landing/assets/bg.png') center/cover no-repeat;
  background-color: #0a1e3c;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 30, 60, 0.6), rgba(10, 30, 60, 0.8));
}

.testimonial-section > * {
  position: relative;
  z-index: 2;
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.testimonial-marquee.reverse .testimonial-track {
  animation: scroll-right 40s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.testimonial-card {
  width: 320px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card .icon {
  font-size: 22px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

.testimonial-footer {
  margin-top: 16px;
}

.testimonial-footer span {
  display: block;
  font-size: 13px;
  opacity: 0.7;
}

/* ============== Back to top ============= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: none;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(0);
}
