/* ================================
   FLOATING TRANSPARENT HEADER
================================ */

.transparent-header {
  position: absolute;
  top: 24px;
  width: 100%;
  z-index: 999;
}

/* CENTER THE PILL */
.header-content {
  justify-content: center;
}

/* PILL CONTAINER */
.nav-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 60px;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

/* LOGO */
.nav-logo img {
  height: 40px;
  width: auto;
}

/* NAV LINKS */
.main-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 6px;
  transition: all 0.3s ease;
  position: relative;
}

/* ACTIVE + HOVER */
.main-nav ul li a:hover {
  color: #f37335;
}

/* ACTIVE UNDERLINE */
.main-nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #f37335;
  border-radius: 2px;
  font-size: 14px;
}

/* DROPDOWN */
.has-submenu {
  position: relative;
}

.has-submenu ul {
  position: absolute;
  top: 42px;
  left: 0;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 230px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.has-submenu:hover ul {
  display: block;
}

.has-submenu ul li a {
  color: #fff;
  padding: 10px 18px;
  display: block;
  font-size: 13px;
}

.has-submenu ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f37335;
  color: #fff;
}

/* CTA BUTTON */
/* ================================
   NEXTSAAS STYLE CTA BUTTON
================================ */

/* ================================
   NEXTSAAS STYLE CTA WITH ARROW
================================ */

.btn-login-header {
  background: rgba(255, 255, 255, 0.95);
  color: #222 !important;
  padding: 10px 24px 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Arrow */
.btn-login-header .cta-arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Hover: NO background change */
.btn-login-header:hover {
  background: #ffffff; /* force same */
  color: #111 !important;         /* force same */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}



/* =========================================
   STICKY HEADER + NAV PILL (FINAL)
========================================= */

/* Header wrapper */
.transparent-header {
  position: fixed;              /* STICKY */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  pointer-events: none;         /* allow hero interactions */
}

/* Enable interactions only for pill */
.nav-pill {
  pointer-events: auto;
}

/* Center pill */
.header-content {
  display: flex;
  justify-content: center;
  padding: 14px 0;
  background: transparent !important;
}

/* Default pill (hero state) */
.nav-pill {
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 60px;
  transition: 
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
  z-index: 9999;
}

/* Kill Shelly overlays */
.nav-pill::before,
.nav-pill::after {
  display: none !important;
}

/* SCROLLED STATE */
.nav-pill.scrolled {
  background-color: rgba(12, 12, 12, 0.96) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  transform: translateY(-2px); /* subtle lift */
}

/* Text readability */
.nav-pill.scrolled a,
.nav-pill.scrolled span,
.nav-pill.scrolled i {
  color: #ffffff !important;
}

/* Active + hover orange */
.nav-pill.scrolled .main-nav ul li a:hover,
.nav-pill.scrolled .main-nav ul li a.active {
  color: #ff8a1d !important;
}

/* CTA stays white */
.nav-pill.scrolled .btn-login-header {
  background: #ffffff !important;
  color: #111 !important;
}

/* Logo clarity */
.nav-pill.scrolled .nav-logo img {
  filter: brightness(1.1) contrast(1.1);
}

/* ================================
   DOT ARROW TOGGLE (HTML-BASED)
================================ */

/* Common arrow styles */
.cta-dot-arrow {
  width: 18px;
  height: auto;
  margin-left: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Default: show light arrow */
.arrow-light {
  display: inline-block;
}

.arrow-dark {
  display: none;
}

/* When nav is scrolled (dark mode) */
.nav-pill.scrolled .arrow-light {
  display: none;
}

.nav-pill.scrolled .arrow-dark {
  display: inline-block;
}

/* Hover animation */
.btn-login-header:hover .cta-dot-arrow {
  transform: translateX(4px);
}

/* ===========================
   GLOBAL SECTION HEADINGS
=========================== */

.ss-section-header {
  margin-bottom: 3rem;
}

.ss-section-header.center {
  text-align: center;
}

.ss-section-header.center .ss-eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- EYEBROW ---------- */

.ss-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;

  white-space: nowrap;
  flex-wrap: nowrap;

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #2563eb;
  margin-bottom: 14px;
}

/* LONG DECORATIVE LINE */
.ss-eyebrow::before {
  content: "";
  display: block;

  width: 48px;           /* 👈 longer line like screenshot */
  height: 3px;

  background: linear-gradient(
    90deg,
    #22c55e,
    #2563eb
  );

  border-radius: 3px;
  flex-shrink: 0;
}

/* ---------- HEADING ---------- */

.ss-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: #111827;
}

.ss-heading span {
  color: #2563eb;
}

/* ---------- SUBHEADING ---------- */

.ss-subheading {
  margin-top: 14px;
  max-width: 720px;

  font-size: 1.05rem;
  line-height: 1.6;
  color: #6b7280;
  align-items: end;
}

/* Centered variant */
.ss-section-header.center .ss-subheading {
  margin-left: auto;
  margin-right: auto;
  align-items: end;
}


