@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Inter:wght@400;500&display=swap");

/* ============================================================
   DESIGN TOKENS — all colours live here.
   Dark mode just redefines these variables — no duplicate rules.
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-page:      #ffffff;
  --bg-section:   #f5f5f7;
  --bg-card:      #ffffff;
  --bg-card-alt:  #fafafa;
  --bg-input:     #f9fafb;
  --bg-hero-card: #fbfcfa;
  --bg-container: #ffffff;
  --bg-inner:     #ffffff;

  /* Text */
  --text-heading: #0b2c3d;
  --text-body:    #444444;
  --text-muted:   #6b6b6b;
  --text-subtle:  #555555;

  /* Accent */
  --accent:       #d4af37;
  --accent-hover: #b8860b;
  --accent-nav:   #c6a052;

  /* Borders */
  --border:       rgba(0, 0, 0, 0.06);
  --border-input: #e5e7eb;

  /* Misc */
  --shadow-card:  0 10px 30px rgba(0, 0, 0, 0.06);
  --radius:       14px;
}

/* ── DARK MODE: redefine variables only ── */
body.dark-mode {
  --bg-page:      #1e262e;
  --bg-section:   #1e262e;
  --bg-card:      #29343f;
  --bg-card-alt:  #29343f;
  --bg-input:     #29343f;
  --bg-hero-card: #29343f;
  --bg-container: #29343f;
  --bg-inner:     #29343f;

  --text-heading: #e2e8f0;
  --text-body:    #c9d1d9;
  --text-muted:   #8b9db0;
  --text-subtle:  #b0bec5;

  --border:       rgba(255, 255, 255, 0.07);
  --border-input: rgba(255, 255, 255, 0.15);

  --shadow-card:  0 10px 30px rgba(0, 0, 0, 0.4);

  /* Old variable names used across many rules — must also flip */
  --primary:      #e2e8f0;
  --text-dark:    #e2e8f0;
  --text-light:   #8b9db0;
  --bg-light:     #1e262e;
  --card-bg:      #29343f;
  --shadow-soft:  0 10px 30px rgba(0, 0, 0, 0.4);
  --accent-gold:  #d4af37;

  /* Top-level page background & text colour */
  background-color: #1e262e;
  color: #e2e8f0;
}

/* ── Inputs in dark mode ── */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  color: #e2e8f0;
}
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder { color: rgba(226,232,240,0.45); }
body.dark-mode input:focus,
body.dark-mode textarea:focus {
  border-color: var(--accent-nav);
  box-shadow: 0 0 0 2px rgba(201,162,39,0.3);
}

/* ── Nav in dark mode ── */
body.dark-mode .site-header       { background: var(--bg-page) !important; border-bottom-color: var(--accent-nav) !important; }
body.dark-mode .site-header.fixed { background: rgba(30,38,46,0.97) !important; border-bottom: 1px solid var(--accent-nav) !important; }
body.dark-mode .primary-nav       { background: rgba(30,38,46,0.97); border: 1px solid var(--accent-nav); }
body.dark-mode .nav-item          { color: #e2e8f0; }
body.dark-mode .nav-item:hover    { color: var(--accent-nav); }
body.dark-mode .nav-cta           { background: linear-gradient(180deg, var(--accent-nav), #a8843e); color: #fff !important; }
body.dark-mode .theme-toggle      { color: #e2e8f0; }
body.dark-mode .theme-toggle:hover{ background: rgba(255,255,255,0.1); color: var(--accent-nav); }

/* ── Dropdown in dark mode ── */
body.dark-mode .dropdown          { background: rgba(30,38,46,0.98); border: 1px solid var(--accent-nav); }
body.dark-mode .dropdown li a     { color: #e2e8f0; }
body.dark-mode .dropdown li a:hover { background: rgba(198,160,82,0.15); color: var(--accent-nav); }

/* ── Cards with gradient borders (background-image trick can't use vars) ── */
body.dark-mode .credentials-card,
body.dark-mode .revenue-card {
  background: var(--bg-card) !important;
  background-image: none !important;
  border: 1px solid rgba(198,160,82,0.35) !important;
}

/* ── SVG wheel centre ── */
body.dark-mode .center-circle { fill: var(--bg-card); }
body.dark-mode .center-text   { fill: #e2e8f0; }
body.dark-mode .info-panel    { border-left-color: var(--border); }
body.dark-mode #info-title,
body.dark-mode #info-content  { color: #e2e8f0 !important; }

/* ── Technology CTA gradient border wrapper ── */
body.dark-mode .technology-cta-section { background: linear-gradient(135deg, var(--accent-nav), #a8843e, var(--accent-nav)); }
body.dark-mode .technology-cta-inner   { background: var(--bg-card) !important; background-image: none !important; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}
ul {margin: 0;}

/* FONTS */
.heading3 {
  font-size: 50px;
  font-weight: 100;
  line-height: 1;
  text-align: center;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* ============common text styles======================= */
h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-heading);
  margin-top: 12px;
}

.left50 {
  margin-left: 50px;
}

/* ====================== */

.mainBx1 {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*=======ACCOFINEX TEXT===============================*/
.bx1 .brand {
  font-family: "playfair display", serif;
  color: #f5f5f7;
  font-size: 48px;
  font-weight: 500;
}

.bx2 {
  margin-top: 20px;
  margin-right: 20px;
}

.bx1 {
  display: flex;
  align-items: center;
}

.hero-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* ================= NAV CONTAINER ================= */

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  background: rgba(220, 223, 220, 0.88);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ===============================
   WHITEPAPERS – PREMIUM THEME
=================================*/

.whitepapers-page {
  background: var(--bg-section);
  font-family: "Poppins", sans-serif;
}

.whitepapers-section {  
  margin: auto;
  padding: 4rem 2rem;
}

.whitepapers-header h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--text-heading);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.gold-underline {
  width: 70px;
  height: 3px;
  background: #c6a052;
  margin-bottom: 50px;
}

/* GRID */
.whitepapers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.whitepaper-card {
  background: var(--bg-card);
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.whitepaper-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* LABEL */
.whitepaper-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c6a052;
  font-weight: 500;
  margin-bottom: 18px;
}

/* TITLE */
.whitepaper-title {
  font-size: 24px;
  font-weight: 200;
  color: var(--text-heading);
  line-height: 1.5;
  margin-bottom: 35px;
}

/* SECTION BLOCK */
.whitepaper-block {
  margin-bottom: 30px;
}

.whitepaper-block h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.whitepaper-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

.whitepaper-block ul {
  padding-left: 18px;
}

.whitepaper-block li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .whitepapers-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================dark mode lightmode theme */
/* ================= THEME TOGGLE BUTTON ================= */
.theme-toggle {
  background: transparent;
  border: none;
  color: #13272e;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #081822;
}

/* ── Dark mode: handled by CSS variables at top of file ── */

/* ================= LINKS ================= */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #13272e;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.25s ease;
}

/* soft baseline indicator (very custom, very subtle) */
.nav-item::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(15, 30, 36, 0.45),
      transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-item:hover {
  color: #081822;
}

.nav-item:hover::after {
  opacity: 1;
}

.primary-nav .nav-links .nav-item a {
  color: inherit;
  text-decoration: none;
}

/* ================= DROPDOWN HINT ================= */

.has-menu::before {
  content: "";
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  opacity: 0.35;
}

/* ================= CTA ================= */

.nav-cta {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f1e24, #0a1418);
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* HERO  */

/* HERO OWNS THE IMAGE */
.hero {
  min-height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85)),
    /* url("../Img/blogmain.jpg"); */
    url("../Img/service2.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

/* NAV FLOATS OVER IMAGE */
.site-header {
  position: relative;
  /* NOT absolute */
  width: 100%;
  padding: 18px 0px;
  background: transparent;
  z-index: 1000;
  margin-left: auto;
  margin-right: auto;
}

/* HERO CONTENT */
.hero-content {  
  padding: 6rem 0rem;
  display: grid;
  row-gap: 32px;
  margin-left: auto;
  margin-right: auto;
}

/* TYPOGRAPHY */
.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d6d6d6;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.02;
  font-weight: 100;
  font-family: "poppins", sans-serif;
}

.hero-pillars {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "poppins", sans-serif;
}

.hero-pillars span {
  opacity: 0.4;
  margin: 0 18px;
}

.hero-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  /* gap: 80px; */
  /* max-width: 1200px; */
  font-family: "poppins", sans-serif;
  font-weight: 200;
}

.hero-bottom p {
  font-size: 18px;
  line-height: 1.7;
  color: #e0e0e0;
}

/* 
=======================section-2 */
.serve-section {
  padding: 120px 80px;
  background: var(--bg-page);
}

.serve-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.serve-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.serve-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.serve-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.serve-card:hover {
  transform: translateY(-6px);
}

.serve-icon {
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9b8cf7, #5bb4f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.serve-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-heading);
}

.serve-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* SECTION 2 */
.product-section {
  padding: 4rem 0rem;
  /* background: #e7ebe4; */
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.product-header {
  display: flex;
  flex-direction: column;
  align-items: center;  
}

.product-header h2 {
  font-size: 50px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 24px;
}

.product-header h3 {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
}

/*     */
/* SECTION */
.who-we-serve {
  background: #eef1ea;
  /* soft sage */
  padding: 90px 6%;
}

/* FLEX CONTAINER */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
  gap: 20px;
}

.cards .product-card {
  height: 450px;
}

/* CARD */
.product-card {
  display: flex;
  flex-direction: column;
  width: 280px;
  background: var(--bg-hero-card);
  border-radius: 26px;
  overflow: hidden;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
  box-shadow: 0 10px 28px rgba(40, 60, 50, 0.08);
}

/* HOVER */
.product-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 26px 55px rgba(40, 60, 50, 0.12);
}

/* IMAGE AREA */
.img-box {
  height: 190px;
  background: linear-gradient(135deg, #9fa9ff, #6aaeff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.product-card:hover .img-box img {
  transform: scale(1.08);
  opacity: 1;
}

/* CONTENT */
.card-content {
  flex: 1;
  padding: 28px 26px 34px;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.card-content h3 {
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--text-heading);
}

/* TEXT */
.card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.product-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* HOVERRR */
/* TITLE BASE */
.card-content h3 {
  border-bottom: 1px solid #d4af37;
  position: relative;
  overflow: hidden;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

/* UNDERLINE SLIDE */
.card-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6aaeff, #9fa9ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.product-card:hover .card-content h3 {
  /* color: #4f78ff; */
  color: #d4af37;
  transform: translateY(-3px);
}

.product-card:hover .card-content h3::after {
  transform: scaleX(1);
}

/* MOBILE */

/* Card hover effect` */
.product-card {
  position: relative;
  width: 306px;
  border-radius: 18px;
  overflow: hidden;
  /* cursor: pointer; */
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

/* Overlay text */
.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* ✨ Hover drama */
.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

.product-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

/* =======================================SECTION-3+++++++++++++++++ */
.info-head {
  display: flex;
  text-align: center;  
  justify-content: center;
  /* max-width: 1200px; */
}

.info-head h2 {
  max-width: 1000px;
}

/* Ensure global variables are available if running standalone */
:root {
  --accent-gold: #d4af37;
  --text-dark: #333333;
  /* --text-secondary: #555555; */
  /* --bg-light-grey: #f8f9fa; */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Container for presentation (Enterprise Page) */
.template-2-light-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 20px;
}

/* == GSAP TIMELINE CONFIGURATION == */
.gsap-timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px 0;
}

/* The vertical timeline */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--border);
  transform: translateX(-50%);
  border-radius: 4px;
  overflow: hidden;
}

/* The glowing progress line that fills down */
.timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0; /* Animated by GSAP */
  background: linear-gradient(to bottom, #f6e27a, var(--accent-gold));
  box-shadow: 0 0 10px var(--accent-gold);
}

/* Timeline wrappers */
.timeline-node {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.timeline-node:last-child {
  margin-bottom: 0;
}

/* Align right cards */
.timeline-node.right {
  justify-content: flex-end;
}

/* The glowing dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--accent-gold);
  border: 4px solid var(--bg-page);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0); /* Scaling animated by GSAP */
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  z-index: 2;
}

/* The card inside the timeline */
.timeline-node .timeline-card {
  width: 45%; /* Occupies just under half the width */
  max-width: none;
  position: relative;
  z-index: 1;
}

/* Connecting small lines from dot to card */
.timeline-node.left .timeline-card::after {
  content: '';
  position: absolute;
  right: -11%;
  top: 20%;
  width: 11%;
  height: 2px;
  background: var(--border);
  z-index: -1;
  opacity: 0.5;
}

.timeline-node.right .timeline-card::after {
  content: '';
  position: absolute;
  left: -11%;
  top: 20%;
  width: 11%;
  height: 2px;
  background: var(--border);
  z-index: -1;
  opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }
  .timeline-dot {
    left: 22px;
  }
  .timeline-node {
    justify-content: flex-end;
  }
  .timeline-node .timeline-card {
    width: calc(100% - 60px); 
  }
  .timeline-node.left .timeline-card::after,
  .timeline-node.right .timeline-card::after {
    display: none;
  }
}

/* The Card */
.light-card {
  background: var(--bg-card);
  border-radius: 16px;
  flex: 1 1 350px;
  max-width: 400px;
  color: var(--text-dark);
  /* Soft shadow for light mode */
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border definition */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.light-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.light-card-top {
  padding: 25px;
  background: var(--bg-card-alt);
  border-radius: 16px 16px 0 0;
}

/* The Gold separator line */
.accent-border-gold {
  border-bottom: 3px solid var(--accent-gold);
}

.light-card h3 {
  /* text-align: ; */
  margin: 0;
  color: var(--text-dark);
  font-weight: 400;
  font-size: 1.2rem;
}

/* Subheader and Content */
.light-card-content {
  padding: 30px;
}

.gold-subhead {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

/* The Checklist */
.gold-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gold-checklist li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-weight: 400;
  /* Slightly heavier weight than dark mode for readability */
  color: var(--text-secondary);
}

/* Custom gold checkmark bullet */
.gold-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  /* slight alignment adjustment */
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.light-card-content a {
  color: var(--text-dark);
  text-decoration: none;
}

/* ===================================REVENUE CYCLE SECTION */
/* Wheel Styling */
.wheel-container {
  flex: 1;
  position: relative;
}

svg {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
  /* Adjust starting point to the top */
}

.segment {
  cursor: pointer;
  transition:
    opacity 0.3s,
    transform 0.3s;
  stroke: white;
  stroke-width: 2;
}

.segment:hover {
  opacity: 0.8;
  transform: scale(1.02);
  transform-origin: center;
}

.center-circle {
  fill: white;
}

.center-text {
  fill: #1a365d;
  font-weight: bold;
  font-size: 24px;
  text-anchor: middle;
  dominant-baseline: middle;
}

/* Info Styling */
.info-panel {
  flex: 1;
  padding: 20px;
  border-left: 2px solid #eee;
  min-height: 300px;
}

#info-title {
  color: var(--text-heading);
  margin-top: 0;
  font-size: 24px;
  border-bottom: 3px solid #7cb374;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

#info-content {
  line-height: 1.6;
  color: var(--text-body);
  font-size: 16px;
}

/* Label Styling inside SVG */
.label-text {
  font-size: 8.5px;
  fill: white;
  pointer-events: none;
  /* Let clicks pass through to the segment */
  text-anchor: middle;
}

/* ======================why choose us section */
:root {
  --primary: #0b2c3d;
  --accent: #d4af37;
  --text-dark: #1a1a1a;
  --text-light: #6b6b6b;
  --bg-light: #ffffff;
  --card-bg: #f9fafb;
  --radius: 14px;
}

/* ===== SECTION WRAPPER ===== */
.why-choose-us {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 0;
}

.why-choose-us-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: 4rem 0rem 0rem;
  background: var(--bg-page);
  align-items: center;
}

/* ===== LEFT CONTENT ===== */
.why-choose-us .eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-choose-us h2 {
  font-size: 44px;
  font-weight: 100;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-choose-us .intro {
  font-size: 16px;
  color: var(--text-light);
}

/* ===== FEATURES ===== */
.feature {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--bg-card-alt);
  margin-bottom: 18px;
  transition: all 0.35s ease;
  border-left: 3px solid transparent;
}

.feature:hover {
  transform: translateX(8px);
  border-left: 3px solid var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.feature h4 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.feature p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== RIGHT VISUAL ===== */
.why-right {
  height: 520px;
  border-radius: 22px;
  /* CSS file lives in /css so we need to go up one level to reach the Img folder */
  background: url("../Img/whyus.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.why-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(212, 175, 55, 0.25),
      transparent 55%);
}

/* =======================FOOTER */
.site-footer {
  background: linear-gradient(180deg, #0b2c3d 0%, #071e2a 100%);
  color: #dbe5ea;
  padding: 2rem 0;
}

.site-footer-inner {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #b9c9d3;
  max-width: 320px;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #d4af37;
}

/* LINKS */
.footer-links a {
  display: block;
  font-size: 14.5px;
  color: #cfdbe2;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

/* CONTACT */
.footer-contact p {
  font-size: 14.5px;
  color: #cfdbe2;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact span {
  color: #ffffff;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(212, 175, 55, 0.4),
      transparent);
  margin-bottom: 30px;
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 13.5px;
  color: #b9c9d3;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
  margin-left: 20px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* navnbar companay hover */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 12px 0;
  min-width: 240px;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.05);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #0f2f2f;
  transition: 0.25s ease;
}

.dropdown li a:hover {
  background: rgba(0, 60, 60, 0.08);
  border-radius: 10px;
  transform: translateX(4px);
}

.has-menu:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ====================== COMPANY INNER PAGE (WHITE & GOLD) ====================== */

.company-page {
  background: var(--bg-section);
  color: var(--text-dark);
}

.inner-hero-wrapper {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.inner-hero {  
  margin: 0 auto;  
  position: relative;
}

.inner-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.inner-hero-title {
  font-size: 58px;
  font-weight: 200;
  color: white;
  margin-bottom: 14px;
  padding-top: 160px;
  margin-right: 300px;
  font-size: 58px;
}

.inner-hero-subtitle {
  font-size: 25px;
  color: white;
  max-width: 640px;
  font-weight: 300;
}

.company-main {  
  margin: 0 auto;
  padding: 40px 80px 80px;
}

.company-section {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 40px 48px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.company-section-header {
  margin-bottom: 32px;
  text-align: center;
  /* Centering the header looks more premium with this layout */
}

.company-section-header h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin: 0;
  letter-spacing: 0.5px;
}

.company-section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

/* --- PREMIUM CORE VALUES ROW --- */
.company-values-boxes {
  display: flex;
  flex-wrap: nowrap;
  /* Forces all items onto a single line */
  gap: 16px;
  margin-top: 20px;
  justify-content: space-between;
}

.value-box {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  /* Stacks the letter and word vertically */
  align-items: center;
  justify-content: center;
  flex: 1;
  /* Ensures all boxes are exactly the same width */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.value-letter {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;

}

.value-word {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  /* Spacing out the letters feels very high-end */
  text-align: center;
}

/* Premium Hover Effect */
.value-box:hover {
  border-color: rgba(212, 175, 55, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.12);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .company-main {
    padding: 40px 40px;
  }

  .value-word {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 768px) {
  .company-main {
    padding: 24px 20px;
  }

  /* On mobile, 7 boxes in one line will squish. This allows horizontal scrolling. */
  .company-values-boxes {
    overflow-x: auto;
    padding-bottom: 16px;
    /* Room for the scrollbar */
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .value-box {
    flex: 0 0 120px;
    /* Fixed width for horizontal scrolling on phones */
  }
}

/* =========================================CREDENTIALS PAGE  */
.credentials-page {
  background: var(--bg-section);
  color: var(--text-dark);
}

.credentials-hero {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.credentials-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 30px;
}

.credentials-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.credentials-title {
  font-size: 40px;
  font-weight: 200;
  color: var(--primary);
  margin-bottom: 14px;
}

.credentials-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 640px;
}

.credentials-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 80px;
}

.credentials-section {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.credentials-section-header {
  margin-bottom: 16px;
}

.credentials-section-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.credentials-section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.credentials-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.credentials-card {
  background: var(--bg-card-alt);
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.credentials-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.credentials-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-subtle);
}

.credentials-values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.credentials-values-row span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.978);
}

@media (max-width: 900px) {
  .credentials-page .site-header {
    padding: 16px 20px;
  }

  .credentials-hero-content,
  .credentials-main {
    padding: 24px 20px 40px;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

.credentials-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 22px 24px;
  position: relative;

  /* Soft inner surface */
  background-clip: padding-box;

  /* Premium gold gradient border */
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--bg-card), var(--bg-card)),
    linear-gradient(135deg, #d4af37, #f6e27a, #b8860b, #f6e27a, #d4af37);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08);
  transition: all 0.4s ease;
}

.credentials-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(212, 175, 55, 0.25),
    0 0 20px rgba(212, 175, 55, 0.15);
}

/* =============================================revenue-cycle-page  */
.revenue-cycle-page {
  background: var(--bg-section);
  color: var(--text-dark);
}

.revenue-hero {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.revenue-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 30px;
}

.revenue-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.revenue-title {
  font-size: 40px;
  font-weight: 200;
  color: var(--primary);
  margin-bottom: 14px;
}

.revenue-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 640px;
}

.revenue-main {

  margin: 0 auto;
  padding: 40px 80px 80px;
}

.revenue-section {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.revenue-section-header {
  margin-bottom: 16px;
}

.revenue-section-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.revenue-section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.revenue-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.revenue-card {
  background: var(--bg-card-alt);
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.revenue-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.revenue-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-subtle);
}

.revenue-values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.revenue-values-row span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.978);
}

@media (max-width: 900px) {
  .revenue-page .site-header {
    padding: 16px 20px;
  }

  .revenue-hero-content,
  .revenue-main {
    padding: 24px 20px 40px;
  }

  .revenue-grid {
    grid-template-columns: 1fr;
  }
}

.revenue-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 22px 24px;

  /* Premium gradient gold border */
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(var(--bg-card), var(--bg-card)),
    linear-gradient(135deg, #d4af37, #f8e08e, #b8860b, #f8e08e, #d4af37);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.08);
  transition: all 0.4s ease;
}

.revenue-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 22px 50px rgba(212, 175, 55, 0.25),
    0 0 30px rgba(212, 175, 55, 0.15);

  border-color: transparent;
}

.revenue-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.revenue-card:hover::before {
  opacity: 0.4;
}

/* ========================================TECHNOLYGY PAGE 
 */
.technology-page {
  background: var(--bg-section);
  color: var(--text-dark);
}

.technology-hero {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.technology-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 30px;
}

.technology-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.technology-title {
  font-size: 40px;
  font-weight: 200;
  color: var(--primary);
  margin-bottom: 14px;
}

.technology-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 640px;
}

.technology-main {  
  margin: 0 auto;
  padding: 40px 80px 80px;
}

.technology-section {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.technology-section-header {
  margin-bottom: 16px;
}

.technology-section-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.technology-section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.technology-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.technology-card {
  background: var(--bg-card-alt);
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.technology-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.technology-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-subtle);
}

.technology-values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.technology-values-row span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.978);
}

@media (max-width: 900px) {
  .technology-page .site-header {
    padding: 16px 20px;
  }

  .technology-hero-content,
  .technology-main {
    padding: 24px 20px 40px;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }
}

/* Force 3 boxes in one row */
.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

/* Center button below cards */
.technology-cta-wrapper {
  text-align: center;
  margin-top: 32px;
}

/* Premium CTA Button */
.technology-cta-button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  background: black;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.technology-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(212, 175, 55, 0.35);
}

/* ================================= CTA BOX ================================= */

/* ================================= GOLD BORDER CTA ================================= */

.technology-cta-section {
  margin-top: 60px;
  border-radius: 20px;
  padding: 3px;
  /* This creates space for gradient border */

  /* Premium gold gradient border */
  background: linear-gradient(135deg,
      #d4af37,
      #f8e08e,
      #b8860b,
      #f8e08e,
      #d4af37);
}

.technology-cta-inner {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 70px 80px;
  text-align: center;
}

.technology-cta-title {
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 18px;
  color: var(--primary);
}

.technology-cta-text {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.technology-cta-highlight {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 35px;
  color: var(--primary);
}

/* Button */
.technology-cta-main-button {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.technology-cta-main-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.35);
}

/* ====================================Enterprise section
 */

.enterprise-page {
  color: var(--text-dark);
}

.enterprise-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px 30px;
}

.enterprise-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.enterprise-title {
  font-size: 40px;
  font-weight: 200;
  color: var(--primary);
  margin-bottom: 14px;
}

.enterprise-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 640px;
}

.enterprise-main {
  margin: 0 auto;
}

.enterprise-section {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.enterprise-section-header {
  margin-bottom: 16px;
}

.enterprise-section-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.enterprise-section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.enterprise-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

.enterprise-grid {
  gap: 24px;
  margin-top: 16px;
}

.enterprise-card {
  background: var(--bg-card-alt);
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.enterprise-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.enterprise-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-subtle);
}

.enterprise-values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.enterprise-values-row span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.978);
}

@media (max-width: 900px) {
  .enterprise-page .site-header {
    padding: 16px 20px;
  }

  .enterprise-hero-content,
  .enterprise-main {
    padding: 24px 20px 40px;
  }

  .enterprise-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================contact page  */

.cus-container {

  margin-left: auto;
  margin-right: auto;
  border: 1px solid red;
  width: 100%;
}

.info-card {  
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 2rem;
  padding: 4rem 0rem;
}

.revenueCycle {

  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 4rem 0rem;
}

/* ===========================logo  size*/
.logo {
  width: 50px;
  height: 50px;
  margin: 0%;
  padding: 0%;
}


.site-header {
  background: var(--bg-page);
  border-bottom: 5px solid var(--accent-nav);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.brand a {
  color: #ffffff;
  text-decoration: none;
}

.hero .site-header,
.blog-page .site-header,
.whitepapers-page .site-header,
.company-page .site-header {
  background: transparent;
  border-bottom: 0px solid #d4af37;
}



.inner-hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.brand a {
  color: white;
  transition: color 0.3s ease;
}

/* When header becomes fixed / scrolled */
.site-header.fixed .brand a,
.bx1.fixed .brand a {
  color: var(--text-heading);
}

/* Desktop fixed header */

/* .site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
} */
.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Optional border for glass edge */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  /* Soft shadow */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

/* Mobile fixed bx1 */

@media (max-width: 768px) {
  .bx1.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-page);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding: 1rem;
  }
}

/* =======================================PHOTO CLASSES */
.company-hero {
  background:
    linear-gradient(rgba(60, 50, 43, 0.1), rgba(0, 0, 0, 0.85)),
    /* url("../Img/blogmain.jpg"); */
    url("../Img/leader12.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.blog-hero {
  background: url(../Img/blogmain.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.whitepaper-hero {
  background: url(../Img/whitepaper.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.security-hero {
  background: url(../Img/security.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.leadership-hero {
  background: url(../Img/rcm3.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.credentialing-hero {
  background: url(../Img/credentialing.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.revenue-hero {
  background: url(../Img/ip8.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.technology-hero {
  background: url(../Img/itsupport.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

.enterprise-hero {
  background: url(../Img/enterprise.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 750px;
  position: relative;
}

/* == ROI CALCULATOR == */
.roi-calculator-section {
  padding: 80px 20px;
  background-color: var(--bg-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.roi-container {
  max-width: 1200px;
  margin: 0 auto;
}

.roi-header {
  text-align: center;
  margin-bottom: 50px;
}

.roi-header h2 {
  font-size: 2.5rem;
  color: var(--text-heading);
  margin-bottom: 15px;
}

.roi-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.roi-inputs {
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

body.dark-mode .roi-inputs {
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.slider-group {
  margin-bottom: 35px;
}

.slider-group:last-child {
  margin-bottom: 0;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.slider-labels label {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 1.1rem;
}

.slider-value {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Custom Range Sliders */
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.1s;
}

.roi-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Dashboard Output */
.roi-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roi-card {
  padding: 60px 30px 30px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.warning-card {
  border-left: 5px solid #e74c3c;
}

.success-card {
  border-left: 5px solid var(--accent-gold);
}

.roi-card h4 {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.roi-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.warning-card .roi-number {
  color: #e74c3c;
}

.roi-card p {
  margin: 10px 0 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Big Gold Card */
.main-glow {
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.15) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

body.dark-mode .main-glow {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.2) 100%);
}

.huge-glow {
  font-size: 3.5rem;
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.scalenex-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}


.accordion-link {
  background: #212529;
  color: #fff;
  border: none;
}

.accordion-link:hover {
  background: #343a40;
  color: #fff;
}


.menu-link {
  display: block;
  padding: 12px 10px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.menu-link i {
  margin-right: 10px;
}

.menu-link:hover {
  background: #343a40;
  color: #fff;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body a {
  display: block;
  padding: 8px 0;
  color: #ccc;
  text-decoration: none;
}

.accordion-body a:hover {
  color: #fff;
}

.row {border: 0px solid red;}

@media (max-width: 900px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .huge-glow {
    font-size: 2.2rem;
  }
  .scalenex-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: 15px;
  }
}