/* =========================
   DESIGN SYSTEM
   ========================= */
:root {
  --primary: #1E63C6;
  --dark: #0b3d91;
  --purple: #7C3AED;

  --green: #10B981;
  --orange: #F59E0B;
  --pink: #EC4899;

  --bg: #F5F7FB;
  --white: #ffffff;
  --text: #111827;
  --muted: #6B7280;

  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

ul,
ol {
  list-style: none;
}

.showcase-list {
  line-height: 40px;
}

/* =========================
   GLOBAL
   ========================= */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
}

/* =========================
   NAVBAR (FINAL POLISH)
   ========================= */

.premium-nav {
  position: sticky;
  top: 20px;
  z-index: 1000;
}

/* container layout */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);

  padding: 12px 30px;
  border-radius: 60px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* LEFT */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 122px;
}

.brand-text {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
}

/* CENTER */
.nav-center {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* hover underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

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

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

/* RIGHT CTA */
.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* RIGHT SECTION */
.nav-right {
  display: flex;
  gap: 10px;
}

/* LOGIN (secondary button) */
.btn-login {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: var(--white);
  background: var(--text);
  transition: 0.3s;
}

.btn-login:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

/* REQUEST DEMO (primary CTA) */
.btn-nav {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* =========================
   HERO
   ========================= */
/* HERO BASE */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1e4fa3, #1c3d8f);
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

/* KEEP CONTENT ABOVE ICONS */
.hero .container {
  position: relative;
  z-index: 2;
}

/* FLOATING ICON WRAPPER */
.hero-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* COMMON ICON STYLE */
.hero-icons .icon {
  position: absolute;
  width: 42px;
  height: 42px;
  opacity: 0.15;
  stroke-width: 1.5;
  animation: float 6s ease-in-out infinite;
}

/* INDIVIDUAL POSITIONS */
.icon-1 {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.icon-2 {
  top: 25%;
  left: 75%;
  animation-delay: 1s;
}

.icon-3 {
  top: 70%;
  left: 15%;
  animation-delay: 2s;
}

.icon-4 {
  top: 60%;
  left: 80%;
  animation-delay: 3s;
}

.icon-5 {
  top: 40%;
  left: 50%;
  animation-delay: 1.5s;
}

.icon-6 {
  top: 80%;
  left: 60%;
  animation-delay: 2.5s;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.section {
  padding: 120px 0;
}

.section-tight {
  padding: 80px 0;
}

/* =========================
   SECTION BACKGROUNDS
   ========================= */
.section-alt {
  background: #ffffff;
}

.section-soft {
  background: #f8fafc;
}

/* =========================
   LOGO SCROLL
   ========================= */
.logos-section {
  overflow: hidden;
  background: #ffffff;
  padding: 40px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 120px;
  margin: 0 30px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   DASHBOARD SECTION
   ========================= */
.dashboard-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.dashboard-text {
  color: var(--muted);
  margin-bottom: 20px;
}

.dashboard-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.dashboard-points li {
  margin-bottom: 8px;
  color: var(--text);
}

/* =========================
   SHOWCASE IMAGE IMPROVE
   ========================= */
.showcase-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* =========================
   BETTER SECTION FLOW
   ========================= */
.section {
  padding: 120px 0;
}

.section-soft {
  padding: 120px 0;
}

/* =========================
   CTA ENHANCEMENT
   ========================= */
.cta::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.section-soft {
  background: #f8fafc;
}

/* =========================
   MODULES SECTION (PREMIUM)
   ========================= */
.modules {
  background: linear-gradient(180deg, #f5f7fb, #eef2ff);
}

/* heading */
.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  margin-top: 10px;
}

/* base card */
.feature-card {
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* hover */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* ICON */
.feature-card i {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  stroke-width: 2;
}

/* TEXT */
.feature-card h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ================= COLORS (REAL FIX) ================= */

/* BLUE */
.card-blue {
  background: linear-gradient(135deg, #eef4ff, #e0ecff);
}

.card-blue i {
  color: var(--primary);
}

/* GREEN */
.card-green {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.card-green i {
  color: var(--green);
}

/* ORANGE */
.card-orange {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.card-orange i {
  color: var(--orange);
}

/* subtle glow effect */
.feature-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.showcase-img {
  margin-top: 30px;
  max-width: 900px;
}

.case-study {
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  padding: 120px 20px;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

/* =========================
   BUTTONS
   ========================= */
.btn-main {
  background: var(--purple);
  color: var(--white);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  margin-right: 10px;
  transition: 0.3s;
}

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

.btn-outline-light {
  border-radius: 30px;
  padding: 12px 28px;
}

.btn-cta {
  background: #fff;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
}

/* =========================
   TRUST BAR
   ========================= */
/* =========================
   TRUST BAR (PREMIUM)
   ========================= */

/* wrapper (handles overlap) */
.trust-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

/* main bar */
.trust-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  padding: 28px 30px;
  border-radius: 60px;

  background: white;
  backdrop-filter: blur(12px);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: -40px;
}

/* individual items */
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 16px;
}

/* icon */
.trust-icon {
  color: var(--green);
  font-weight: bold;
  font-size: 16px;
}

/* subtle divider */
.trust-item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.1);
  margin-left: 15px;
}

/* remove divider gap issue */
.trust-item {
  padding-right: 15px;
}

/* hover micro interaction */
.trust-item:hover {
  transform: translateY(-2px);
  transition: 0.2s;
}

/* =========================
   SECTION
   ========================= */
.section {
  padding: 90px 0;
}

.section h2 {
  font-weight: 600;
}

/* =========================
   FEATURE CARDS
   ========================= */
.feature-card {
  padding: 35px;
  border-radius: var(--radius-lg);
  background: #fff;
  transition: 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

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

/* ICON COLORS (IMPORTANT) */
.feature-card:nth-child(1) i {
  color: var(--primary);
}

.feature-card:nth-child(2) i {
  color: var(--green);
}

.feature-card:nth-child(3) i {
  color: var(--orange);
}

.feature-card:nth-child(4) i {
  color: var(--purple);
}

.feature-card:nth-child(5) i {
  color: var(--pink);
}

.feature-card:nth-child(6) i {
  color: var(--primary);
}

.feature-card i {
  display: block;
  margin-bottom: 12px;
  width: 32px;
  height: 32px;
}

/* =========================
   SHOWCASE
   ========================= */
.showcase-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 20px;
}

/* =========================
   TESTIMONIALS (PREMIUM)
   ========================= */
.testimonials {
  background: linear-gradient(180deg, #f5f7fb, #eef2ff);
  position: relative;
}

/* subtle gradient glow */
.testimonials::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(124, 58, 237, 0.1);
  /* purple glow */
  border-radius: 50%;
  top: 50px;
  left: -100px;
}

.testimonials::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.1);
  /* green glow */
  border-radius: 50%;
  bottom: 50px;
  right: -100px;
}

/* heading */
.section-sub {
  color: var(--muted);
  margin-top: 10px;
}

/* card */
.testimonial-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* hover */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* gradient top border */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--purple));
}

/* quote icon */
.testimonial-icon {
  font-size: 40px;
  color: var(--primary);
  /* opacity: 0.2; */
  margin-bottom: 10px;
}

/* text */
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* user */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-user span {
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   CASE STUDY
   ========================= */
.case-study {
  background: #fff;
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 700px;
  margin: auto;
}

/* =========================
   CTA
   ========================= */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.cta p {
  opacity: 0.85;
}

.urgency {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* =========================
   FOOTER
   ========================= */
/* =========================
   FOOTER (ENTERPRISE)
   ========================= */
.footer {
  background: linear-gradient(135deg, #0b3d91, #1E63C6);
  color: #fff;
  padding: 60px 0 20px;
}

/* brand */
.footer-brand {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-text {
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.6;
}

/* titles */
.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

/* links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
}

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

/* contact */
.footer-contact {
  margin: 5px 0;
  opacity: 0.9;
}

/* social */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

/* bottom */
.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  opacity: 0.8;
}

/* =========================
   WHATSAPP FLOAT
   ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


.how-it-works {
  background: linear-gradient(180deg, #ffffff, #f5f7fb);
}

.step-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  margin-bottom: 15px;
}

/* alternate section spacing */
.alt-showcase {
  background: linear-gradient(180deg, #f5f7fb, #ffffff);
}



/* LAYOUT */
.login-wrapper {
  display: flex;
  min-height: 100vh;
}

/* LEFT SIDE */
.login-left {
  width: 50%;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
}

/* glow */
.login-left::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.login-left-content {
  max-width: 400px;
}

.login-left h1 {
  font-size: 42px;
  font-weight: 700;
}

.login-left p {
  opacity: 0.9;
  margin: 15px 0 25px;
}

.login-left ul {
  list-style: none;
  padding: 0;
}

.login-left li {
  margin-bottom: 10px;
}

/* RIGHT SIDE */
.login-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* CARD */
.login-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* FLOATING INPUT */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  background: transparent;
  /* IMPORTANT */
}

/* LABEL FIX */
.form-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: 0.25s ease;
  background: transparent;
  /* REMOVE WHITE PATCH */
}

/* FLOAT EFFECT */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: var(--primary);
  background: #fff;
  /* only when floating */
  padding: 0 6px;
}

.form-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  background: transparent;
  /* IMPORTANT */
}

/* LABEL FIX */
.form-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: 0.25s ease;
  background: transparent;
  /* REMOVE WHITE PATCH */
}

/* FLOAT EFFECT */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: var(--primary);
  background: #fff;
  /* only when floating */
  padding: 0 6px;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 99, 198, 0.1);
}

.form-group input:focus+label,
.form-group input:valid+label {
  top: -8px;
  font-size: 12px;
  color: var(--primary);
}

/* BUTTON */
.btn-login-main {
  background: linear-gradient(135deg, var(--primary), var(--purple));
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-login-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* LINKS */
.link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 992px) {

  .login-left {
    display: none;
  }

  .login-right {
    width: 100%;
  }

}