/*
Theme Name: Rishi Jha
Theme URI: https://rishikeshjha.com/
Author: Milan
Author URI: https://milan-bastola.com.np/
Description: Custom dark/light Elementor-ready theme for a business / sales consultant portfolio.
Version: 1.0.0
Text Domain: rj-consultant
*/

/* ===========================
   DESIGN TOKENS
   =========================== */

/* Default (DARK) */
:root {
  /* Brand colors */
  --rj-primary: #fbbf24;
  --rj-primary-soft: rgba(251, 191, 36, 0.12);
  --rj-primary-hover: #f59e0b;

  --rj-secondary: #38bdf8;
  --rj-secondary-soft: rgba(56, 189, 248, 0.14);

  /* Backgrounds */
  --rj-bg: #050816;
  --rj-bg-alt: #0b1020;
  --rj-surface: #111827;
  --rj-surface-alt: #020617;

  /* Borders */
  --rj-border-subtle: #1f2933;
  --rj-border-strong: #4b5563;

  /* Typography colors */
  --rj-text: #f9fafb;
  --rj-text-muted: #9ca3af;
  --rj-text-soft: #6b7280;
  --rj-text-on-primary: #111827;

  /* State colors */
  --rj-success: #22c55e;
  --rj-danger: #f97373;
  --rj-warning: #facc15;
  --rj-info: #38bdf8;

  /* Radii */
  --rj-radius-sm: 6px;
  --rj-radius-md: 12px;
  --rj-radius-lg: 18px;
  --rj-radius-pill: 999px;

  /* Shadows */
  --rj-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --rj-shadow-subtle: 0 8px 22px rgba(0, 0, 0, 0.45);

  /* Transitions */
  --rj-transition-fast: 160ms ease-out;
  --rj-transition-med: 220ms ease-out;
  --rj-transition-slow: 320ms ease-out;

  /* Typography system */
  --rj-font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rj-font-heading: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --rj-font-size-xs: 0.75rem;
  --rj-font-size-sm: 0.875rem;
  --rj-font-size-base: 1rem;
  --rj-font-size-lg: 1.125rem;
  --rj-font-size-xl: 1.5rem;
  --rj-font-size-2xl: 1.875rem;
  --rj-font-size-3xl: 2.25rem;
  --rj-font-size-4xl: 3rem;

  --rj-header-h: 50px;
}

/* LIGHT MODE OVERRIDES */
:root[data-theme="light"] {
  --rj-bg: #f3f4f6;
  --rj-bg-alt: #ffffff;
  --rj-surface: #ffffff;
  --rj-surface-alt: #e5e7eb;

  --rj-border-subtle: #e5e7eb;
  --rj-border-strong: #9ca3af;

  --rj-text: #111827;
  --rj-text-muted: #4b5563;
  --rj-text-soft: #6b7280;
  --rj-text-on-primary: #030712;
}

:root[data-theme="light"] .rj-site-header {
  background-color: #ffffff;
}

/* ===========================
   BASE ELEMENTS
   =========================== */

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--rj-bg);
  color: var(--rj-text);
  font-family: var(--rj-font-sans);
  font-size: var(--rj-font-size-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--rj-header-h, 72px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rj-font-heading);
  color: var(--rj-text);
  margin: 0 0 0.75em;
}

h1 { font-size: var(--rj-font-size-4xl); }
h2 { font-size: var(--rj-font-size-3xl); }
h3 { font-size: var(--rj-font-size-2xl); }
h4 { font-size: var(--rj-font-size-xl); }

a {
  color: var(--rj-secondary);
  text-decoration: none;
  transition: color var(--rj-transition-fast);
}

a:hover {
  color: var(--rj-primary);
}

/* Layout helpers */
.rj-container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.rj-section {
  background-color: var(--rj-bg-alt);
  padding-block: 4rem;
}

.rj-card {
  background-color: var(--rj-surface);
  border-radius: var(--rj-radius-lg);
  border: 1px solid var(--rj-border-subtle);
  box-shadow: var(--rj-shadow-subtle);
  padding: 1.75rem;
}

/* Buttons */
.rj-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.9rem;
  border-radius: var(--rj-radius-pill);
  border: none;
  background-color: var(--rj-primary);
  color: var(--rj-text-on-primary);
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color var(--rj-transition-fast),
    box-shadow var(--rj-transition-fast),
    transform var(--rj-transition-fast);
}

.rj-btn-primary:hover {
  background-color: var(--rj-primary-hover);
  box-shadow: var(--rj-shadow-soft);
  transform: translateY(-1px);
}

.rj-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.9rem;
  border-radius: var(--rj-radius-pill);
  border: 1px solid var(--rj-border-subtle);
  background-color: transparent;
  color: var(--rj-text);
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color var(--rj-transition-fast),
    border-color var(--rj-transition-fast),
    color var(--rj-transition-fast);
}

.rj-btn-ghost:hover {
  background-color: rgba(15, 23, 42, 0.9);
  border-color: var(--rj-primary);
  color: var(--rj-primary);
}

/* Small text utilities */
.rj-eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--rj-font-size-xs);
  color: var(--rj-text-soft);
}

.rj-muted {
  color: var(--rj-text-muted);
}

.rj-site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

  background-color: var(--rj-bg-alt);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rj-border-subtle);

  transition-property: transform, box-shadow, border-color;
  transform: translate3d(0,0,0);
  will-change: transform;
  transition: transform 320ms cubic-bezier(.22,.61,.36,1), box-shadow 220ms ease, border-color 220ms ease !important;
}

.rj-site-header.is-hidden{
  transform: translate3d(0,-110%,0);
}

.rj-site-header.is-scrolled{
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.rj-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1120px;
  margin-inline: auto;
}

.rj-logo {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--rj-text);
  font-weight: 600;
}

.rj-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 10% 0, var(--rj-primary-soft), transparent),
              radial-gradient(circle at 90% 100%, var(--rj-secondary-soft), transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
}

.rj-nav-list {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.rj-nav-list a {
  font-size: var(--rj-font-size-sm);
  color: var(--rj-text-soft);
}

.rj-nav-list a:hover,
.rj-nav-list .current-menu-item > a {
  color: var(--rj-primary);
}

/* Theme toggle + hamburger placeholders */
.rj-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rj-theme-toggle {
  border-radius: var(--rj-radius-pill);
  border: 1px solid var(--rj-border-subtle);
  background: var(--rj-surface-alt);
  color: var(--rj-text-soft);
  padding: 0.35rem 0.75rem;
  cursor: pointer;
}

.rj-theme-toggle__icon { display:inline-flex; line-height:0; }

.rj-menu-toggle {
  width: 34px;
  height: 34px;
  border-radius: var(--rj-radius-pill);
  border: 1px solid var(--rj-border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  cursor: pointer;
}

.rj-menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--rj-text-soft);
}

body,
.rj-section,
.rj-card,
.rj-site-header,
.rj-site-footer {
  transition:
    background-color var(--rj-transition-med),
    color var(--rj-transition-med),
    border-color var(--rj-transition-med);
}

/* Footer shell */
.rj-site-footer{
  background: var(--rj-surface-alt);
  border-top: 1px solid var(--rj-border-subtle);
  padding: 2.4rem 1.5rem 1.2rem;
  color: var(--rj-text-soft);
}

.rj-footer-inner{
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 2.25rem;
  align-items: start;
}

/* Left brand block */
.rj-footer-logo{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--rj-text);
}

.rj-footer-logo-text{ display: grid; gap: .15rem; }
.rj-footer-name{ font-size: 1.05rem; line-height: 1.1; letter-spacing: .2px; }
.rj-footer-tagline{ font-size: .9rem; color: var(--rj-text-soft); }

.rj-footer-desc{
  margin: .9rem 0 1.05rem;
  max-width: 46ch;
  line-height: 1.65;
  color: var(--rj-text-soft);
}

/* Social buttons – smaller + cleaner */
.rj-footer-social{ display:flex; gap:.55rem; flex-wrap:wrap; }
.rj-social{
  width: 36px; height: 36px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 999px;
  border: 1px solid var(--rj-border-subtle);
  background: transparent;
  color: var(--rj-text);
  text-decoration:none;
  font-weight: 650;
  transition: transform .16s ease, border-color .16s ease, color .16s ease, background .16s ease;
}
.rj-social:hover{
  transform: translateY(-2px);
  border-color: var(--rj-primary-soft);
  color: var(--rj-primary);
  background: var(--rj-bg-alt);
}

/* Right side: 3 columns, no heavy cards */
.rj-footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
}

/* Section styling (desktop): no card, just headings + content */
.rj-footer-section{
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.rj-footer-section__head{
  padding: 0;
  margin: 0 0 .75rem;
  width: auto;
  border: 0;
  background: transparent;
  color: var(--rj-text);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .2px;
  cursor: default;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

/* Hide chevron on desktop (looks like dropdown UI) */
.rj-footer-section__chev{ display:none; }

.rj-footer-section__body{
  padding: 0;
}

/* Quick links list */
.rj-footer-nav{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: .35rem;
}

.rj-footer-nav a{
  text-decoration:none;
  color: var(--rj-text-soft);
  padding: .25rem 0;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  transition: color .15s ease;
}

.rj-footer-nav a:hover,
.rj-footer-nav .current-menu-item > a{
  color: var(--rj-primary);
}

/* Contact */
.rj-footer-contact{
  display:grid;
  gap:.55rem;
}

.rj-footer-contact__item{
  display:flex;
  gap:.6rem;
  align-items:center;
  text-decoration:none;
  color: var(--rj-text-soft);
  transition: color .15s ease;
}

.rj-footer-contact__item:hover{ color: var(--rj-primary); }

.rj-ico{
  width: 30px; height: 30px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 999px;
  border: 1px solid var(--rj-border-subtle);
  background: var(--rj-bg-alt);
}

/* Newsletter – tighter + cleaner */
.rj-footer-newsletter{ display:grid; gap:.65rem; }
.rj-footer-newsletter input{
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--rj-border-subtle);
  background: var(--rj-bg-alt);
  color: var(--rj-text);
  padding: 0 .85rem;
}
.rj-footer-newsletter button{
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: var(--rj-primary);
  color: var(--rj-bg);
  font-weight: 700;
  cursor: pointer;
}
.rj-footer-note{
  margin-top:.1rem;
  color: var(--rj-text-soft);
  font-size: .88rem;
}

/* Bottom bar */
.rj-footer-bottom{
  max-width: 1120px;
  margin: 1.6rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--rj-border-subtle);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}

.rj-footer-bottom p {
    margin: 0;
    font-size: 0.8em;
}

.rj-footer-bottom-left{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  flex-wrap: wrap;
}

.rj-footer-copy{
  margin: 0;
  color: var(--rj-text-soft);
  font-size: .92rem;
}

.rj-footer-copy a{
  color: var(--rj-text);
  text-decoration: none;
}
.rj-footer-copy a:hover{ color: var(--rj-primary); }

.rj-footer-legal{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .92rem;
}

.rj-footer-legal a{
  color: var(--rj-text-soft);
  text-decoration: none;
  transition: color .15s ease;
}
.rj-footer-legal a:hover{
  color: var(--rj-primary);
}

.rj-legal-dot{
  color: var(--rj-border-subtle);
}
@media (max-width: 640px){
  .rj-footer-bottom-left{
    flex-direction: column;
    align-items: flex-start;
  }
}

.rj-backtop-float{
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 999;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--rj-primary);
  color: var(--rj-bg);

  border: 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;

  box-shadow:
    0 10px 30px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.95);

  transition:
    opacity .25s ease,
    transform .25s cubic-bezier(.22,.61,.36,1),
    box-shadow .2s ease;
}

/* Visible state */
.rj-backtop-float.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Hover */
.rj-backtop-float:hover{
  transform: translateY(-2px) scale(1);
  box-shadow:
    0 14px 36px rgba(0,0,0,.3),
    inset 0 0 0 1px rgba(255,255,255,.2);
}

/* Active (click) */
.rj-backtop-float:active{
  transform: scale(.96);
}

/* Mobile safe area (iOS) */
@supports (padding: max(0px)) {
  .rj-backtop-float{
    bottom: max(22px, env(safe-area-inset-bottom));
  }
}

/* Responsive: turn into accordion on mobile */
@media (max-width: 980px){
  .rj-footer-inner{ grid-template-columns: 1fr; }
  .rj-footer-grid{ grid-template-columns: 1fr; gap: .85rem; }

  /* Bring back “card” feel on mobile only (helps tap targets) */
  .rj-footer-section{
    border: 1px solid var(--rj-border-subtle);
    background: var(--rj-bg-alt);
    border-radius: 16px;
    overflow: hidden;
  }

  .rj-footer-section__head{
    width: 100%;
    padding: .95rem 1rem;
    margin: 0;
    cursor: pointer;
  }

  .rj-footer-section__chev{
    display:inline-block;
    color: var(--rj-text-soft);
    transition: transform .2s ease;
  }

  .rj-footer-section__body{
    padding: 0 1rem 1rem;
  }
}

/* HERO layout for Container-based Elementor */
.rj-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--rj-bg-alt);
  padding-block: 4rem;
  z-index: 0;
}

.rj-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  z-index: 1;
}

/* Use our width helper on this inner container */
.rj-hero-inner.rj-container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .rj-hero-inner {
    grid-template-columns: 1fr;
  }

  .rj-hero-right {
    order: -1; /* put photo on top on mobile if you want */
  }
}

.rj-hero-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0;
}

.rj-hero-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

/* Blobs */
.rj-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.rj-hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.75;
}

.rj-hero-blob--primary {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--rj-primary-soft), transparent 60%);
  top: -40px;
  left: -40px;
}

.rj-hero-blob--secondary {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--rj-secondary-soft), transparent 60%);
  bottom: -60px;
  right: -40px;
}

.rj-btn-primary .elementor-button,
.rj-btn-primary .elementor-button *,
.rj-btn-ghost .elementor-button,
.rj-btn-ghost .elementor-button * {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: var(--rj-radius-pill) !important;
  padding: 0 !important;
}

.rj-btn-primary .elementor-button-content-wrapper,
.rj-btn-ghost .elementor-button-content-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.9rem;
  border-radius: var(--rj-radius-pill);
  transition:
    background-color var(--rj-transition-fast),
    border-color var(--rj-transition-fast),
    color var(--rj-transition-fast),
    box-shadow var(--rj-transition-fast),
    transform var(--rj-transition-fast);
}

/* PRIMARY (solid gold) */
.rj-btn-primary .elementor-button-content-wrapper {
  background-color: var(--rj-primary);
  color: var(--rj-text-on-primary);
}

.rj-btn-primary .elementor-button-text {
  color: inherit;
  font-weight: 600;
}

.rj-btn-primary .elementor-button:hover .elementor-button-content-wrapper {
  background-color: var(--rj-primary-hover);
  box-shadow: var(--rj-shadow-soft);
  transform: translateY(-1px);
}

/* GHOST (single outline only) */
.rj-btn-ghost .elementor-button-content-wrapper {
  border: 1px solid var(--rj-primary);
  background-color: transparent;
  color: var(--rj-primary);
}

.rj-btn-ghost .elementor-button-text {
  color: inherit;
  font-weight: 500;
}

.rj-btn-ghost .elementor-button:hover .elementor-button-content-wrapper {
  background-color: var(--rj-primary-soft);
  box-shadow: var(--rj-shadow-subtle);
  transform: translateY(-1px);
}

/* HERO badge / pill */
.rj-hero-badge {
  margin-top: 1.75rem;
}

/* Base pill */
.rj-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1.1rem;
  border-radius: var(--rj-radius-pill);
  border: 1px solid var(--rj-border-subtle);
  font-size: var(--rj-font-size-sm);
  color: var(--rj-text-muted);
}

/* Animated gradient specifically for hero badge */
.rj-hero-badge.rj-pill {
  background: linear-gradient(
    120deg,
    rgba(251, 191, 36, 0.25),
    rgba(56, 189, 248, 0.25),
    rgba(251, 191, 36, 0.25)
  );
  background-size: 220% 220%;
  animation: rj-pill-gradient 7s ease-in-out infinite alternate;
}

/* make inner <p> inherit colour/size */
.rj-pill * {
  color: inherit !important;
  font-size: inherit !important;
  margin: 0;
}

@keyframes rj-pill-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.rj-highlights {
  background-color: var(--rj-bg);
}

.rj-highlights-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.rj-highlights-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.rj-section-title {
  margin: 0;
}

.rj-section-intro {
  max-width: 520px;
}

/* Grid for cards */
.rj-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch; /* important */
}

@media (max-width: 1024px) {
  .rj-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rj-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Card typography */
.rj-card-eyebrow {
  margin-bottom: 0.2rem;
}

.rj-card-title {
  font-size: var(--rj-font-size-lg);
  margin: 0 0 0.3rem;
}

.rj-card-body {
  font-size: var(--rj-font-size-sm);
}

.rj-liquid-card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #020617, var(--rj-surface));
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 190px;
  transition:
    transform var(--rj-transition-med),
    box-shadow var(--rj-transition-med),
    border-color var(--rj-transition-med),
    background var(--rj-transition-med);
}

/* Subtle border overlay */
.rj-liquid-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(148, 163, 184, 0.25);
  pointer-events: none;
}

/* make shimmer visible only on hover so it's not too loud */
.rj-liquid-card:hover::after {
  opacity: 0.9;
}

.rj-liquid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  background: radial-gradient(circle at top left, #020617, #020617);
  border-color: rgba(251, 191, 36, 0.45);
}

/* Ensure card content stays above liquid bg */
.rj-liquid-card > .elementor-widget-container,
.rj-liquid-card > *:not(.rj-liquid-bg) {
  position: relative;
  z-index: 1;
}

.rj-card-icon {
  margin-bottom: 0.9rem;
}

.rj-card-icon .elementor-icon {
  background-color: rgba(15, 23, 42, 0.95);
  border-radius: 999px;
  padding: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--rj-primary);
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.rj-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: none;
  fill: var(--rj-primary);
  opacity: .95;
}

.rj-card-icon .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .35);

  background: rgba(15, 23, 42, .9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .55);

  transition: border-color .25s ease, transform .25s ease;
}

/* Slight hover micro-movement */
.rj-liquid-card:hover .rj-card-icon .elementor-icon {
  border-color: rgba(251, 191, 36, .7);
  transform: translateY(-1px);
}

/* ===========================
   EXPERIENCE SECTION
   =========================== */

.rj-experience {
  background-color: var(--rj-bg-alt);
}

.rj-experience-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rj-experience-list > .e-con-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.rj-experience-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.rj-experience-list {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .rj-experience-list {
    width: 80%;
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .rj-experience-list {
    width: 70%;
    padding: 0 50px;
  }
}

.rj-exp-card {
  width: 100%;
  perspective: 800px;
  margin-bottom: 50px;
}

.rj-exp-card:last-child {
  margin-bottom: 0;
}

.rj-exp-card.rj-card {
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

/* Typography inside cards */
.rj-exp-tag {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 0.15rem;
}

.rj-exp-title {
  font-size: var(--rj-font-size-lg);
  margin: 0 0 0.25rem;
}

.rj-exp-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.rj-exp-body {
  font-size: var(--rj-font-size-sm);
  margin-top: 0.4rem;
}

/* ===========================
   CONSULTING PROCESS SECTION
   =========================== */

.rj-process {
  background-color: var(--rj-bg);
}

.rj-process-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

/* Left copy column */
.rj-process-copy {
  flex: 1 1 260px;
  max-width: 420px;
}

.rj-process-grid.e-con {
  flex: 1 1 300px;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  perspective: 1200px;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Stack to one column on smaller screens */
@media (max-width: 900px) {
  .rj-process-grid.e-con {
    grid-template-columns: 1fr;
  }
}

/* Individual step card */
.rj-process-step {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}

.rj-process-step.rj-card {
  padding: 1.4rem 1.5rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Slight glow when cards are tilted (works with 3D) */
.rj-process-step.rj-card {
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

/* Typography */
.rj-process-step-tag {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 0.15rem;
}

.rj-process-step-title {
  font-size: var(--rj-font-size-md);
  margin: 0 0 0.25rem;
}

.rj-process-step-body {
  font-size: var(--rj-font-size-sm);
  margin: 0;
}

/* CTA section: force all colors to come from your theme variables */
.rj-cta{
  background: var(--rj-bg-alt) !important;
  border: 1px solid var(--rj-border-subtle);
  color: var(--rj-text);
}

/* Text inside CTA */
.rj-cta .elementor-heading-title{
  color: var(--rj-text) !important;
}

.rj-cta .elementor-widget-text-editor,
.rj-cta .elementor-widget-text-editor p{
  color: var(--rj-text-soft) !important;
}

/* Icon list */
.rj-cta .elementor-icon-list-text{
  color: var(--rj-text-soft) !important;
}

.rj-cta .elementor-icon-list-icon svg{
  fill: var(--rj-primary) !important;
}

/* Rating stars */
.rj-cta .e-rating .e-icon-wrapper svg{
  fill: var(--rj-primary) !important;
}

/* “100+ Projects Delivered” */
.rj-cta .elementor-element-2d8ecde .elementor-heading-title{
  color: var(--rj-text-soft) !important;
}

/* Form card area */
.rj-cta-form{
  background: var(--rj-surface-alt) !important;
  border: 1px solid var(--rj-border-subtle);
  border-radius: 18px;
  padding: 18px;
}

/* Inputs/selects/textarea */
.rj-cta-form .elementor-field,
.rj-cta-form .elementor-field-textual{
  background: var(--rj-bg) !important;
  color: var(--rj-text) !important;
  border: 1px solid var(--rj-border-subtle) !important;
}

.rj-cta-form .elementor-field::placeholder{
  color: var(--rj-text-soft) !important;
  opacity: .8;
}

/* Select caret */
.rj-cta-form .select-caret-down-wrapper svg{
  fill: var(--rj-text-soft) !important;
}

/* Button */
.rj-cta-form .elementor-button{
  background: var(--rj-primary) !important;
  color: var(--rj-bg) !important;
  border: 0 !important;
}

.rj-cta-form .elementor-button:hover{
  filter: brightness(1.05);
}
/* Section background + base text */
.rj-reviews{
  background: var(--rj-bg) !important;
  color: var(--rj-text);
}

/* Section heading */
.rj-reviews .elementor-heading-title{
  color: var(--rj-text) !important;
}

/* Testimonial “card” */
.rj-reviews .elementor-testimonial{
  background: var(--rj-surface-alt) !important;
  border: 1px solid var(--rj-border-subtle);
  border-radius: 18px;
  padding: 18px;
}

/* Name + title */
.rj-reviews .elementor-testimonial__name{
  color: var(--rj-text) !important;
  font-weight: 600;
}
.rj-reviews .elementor-testimonial__title{
  color: var(--rj-text-soft) !important;
}

/* Review text */
.rj-reviews .elementor-testimonial__text{
  color: var(--rj-text-soft) !important;
}

/* Optional: icon in header (twitter) */
.rj-reviews .elementor-testimonial__icon svg{
  fill: var(--rj-text-soft) !important;
  opacity: .8;
}
.rj-reviews .elementor-testimonial__icon:hover svg{
  fill: var(--rj-primary) !important;
  opacity: 1;
}

/* Stars */
.rj-reviews .elementor-star-rating i{
  color: var(--rj-primary) !important;
}

/* Pagination bullets */
.rj-reviews .swiper-pagination-bullet{
  background: var(--rj-border-subtle) !important;
  opacity: 1 !important;
}
.rj-reviews .swiper-pagination-bullet-active{
  background: var(--rj-primary) !important;
}

/* Images (optional border) */
.rj-reviews .elementor-testimonial__image img{
  border-radius: 999px;
  border: 1px solid var(--rj-border-subtle);
}
.rj-reviews .elementor-widget-reviews .swiper-slide {
  background:none;
  border:none;
}

/* Offcanvas shell */
.rj-offcanvas{
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.rj-offcanvas.is-open{
  pointer-events: auto;
}

/* Backdrop */
.rj-offcanvas__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s ease;
}

.rj-offcanvas.is-open .rj-offcanvas__backdrop{
  opacity: 1;
}

/* Panel */
.rj-offcanvas__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: var(--rj-bg-alt);
  border-left: 1px solid var(--rj-border-subtle);
  transform: translateX(100%);
  transition: transform .22s ease;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1rem;
}

.rj-offcanvas.is-open .rj-offcanvas__panel{
  transform: translateX(0);
}

/* Top bar */
.rj-offcanvas__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rj-offcanvas__title{
  font-weight: 600;
  color: var(--rj-text);
}

.rj-offcanvas__close{
  width: 34px;
  height: 34px;
  border-radius: var(--rj-radius-pill);
  border: 1px solid var(--rj-border-subtle);
  background: var(--rj-surface-alt);
  color: var(--rj-text-soft);
  cursor: pointer;
}

/* Menu list */
.rj-offcanvas__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.rj-offcanvas__list a{
  display: block;
  padding: .75rem .6rem;
  border-radius: 12px;
  color: var(--rj-text);
  text-decoration: none;
}

.rj-offcanvas__list a:hover,
.rj-offcanvas__list .current-menu-item > a{
  background: var(--rj-surface-alt);
  color: var(--rj-primary);
}
/* 
@media (min-width: 980px){
  .rj-menu-toggle { display: none; }
  .rj-header-nav { display: block; }
}
@media (max-width: 979px){
  .rj-header-nav { display: none; }
} */
/* Brand row */
.rj-offcanvas__brand-link{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--rj-text);
}

.rj-offcanvas__brand-text{
  display: grid;
  gap: .1rem;
}

.rj-offcanvas__name{
  font-size: 0.98rem;
  line-height: 1.1;
}

.rj-offcanvas__tagline{
  font-size: var(--rj-font-size-sm);
  color: var(--rj-text-soft);
}

/* Optional logo img */
.rj-offcanvas__logo{
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

/* Short description */
.rj-offcanvas__desc{
  margin-top: .25rem;
  padding: .75rem .85rem;
  border: 1px solid var(--rj-border-subtle);
  background: var(--rj-surface-alt);
  border-radius: 16px;
}

.rj-offcanvas__desc p{
  margin: 0;
  color: var(--rj-text-soft);
  font-size: var(--rj-font-size-sm);
  line-height: 1.5;
}

/* Footer block */
.rj-offcanvas__footer{
  margin-top: auto; /* pushes footer to bottom */
  display: grid;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--rj-border-subtle);
}

/* Contact items */
.rj-offcanvas__contact{
  display: grid;
  gap: .4rem;
}

.rj-offcanvas__contact-item{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .65rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--rj-text);
}

.rj-offcanvas__contact-item:hover{
  background: var(--rj-surface-alt);
  color: var(--rj-primary);
}

.rj-ico{
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rj-surface-alt);
  border: 1px solid var(--rj-border-subtle);
  color: var(--rj-text-soft);
  font-size: .9rem;
}

/* Social row */
.rj-offcanvas__social{
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.rj-social-btn{
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--rj-border-subtle);
  background: var(--rj-surface-alt);
  color: var(--rj-text);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
}

.rj-social-btn:hover{
  color: var(--rj-primary);
  border-color: var(--rj-primary-soft);
}
