h1, h2, h3 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}
/* ===== LOGIN BUTTON ===== */
.jj-login-btn {
  background: none;
  border: none;
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  margin-right:3px;
}

.jj-login-btn:hover {
  color: #5548e0; /* Accent hover color */
}
.jj-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 1rem auto;
}

.jj-nav-btn {
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1rem;
  background:#00e0c6 ;
  border-radius: 10px;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jj-nav-btn:hover {

  transform: translateY(-2px);
}

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    :root {
      --accent: #6c63ff;
      --accent-dark: #5548e0;
    }

    body {
      background: #fff;
      color: #222;
      overflow-x: hidden;
    }

  /* ===== HEADER ===== */
.jj-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: "Poppins", sans-serif;
}

.jj-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent, #6c63ff);
}

.jj-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}


/* ===== HAMBURGER ICON ===== */
.jj-menu-btn {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #111;
  cursor: pointer;
  transition: transform 0.4s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  position: relative;
}

.jj-menu-btn:hover {
  color: var(--accent-dark, #5548e0);
  transform: scale(1.15);
}

.jj-menu-btn i {
  position: absolute;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.jj-menu-btn .fa-xmark {
  transform: rotate(-90deg) scale(0.5);
  opacity: 0;
}

.jj-menu-btn.active .fa-bars {
  transform: rotate(90deg) scale(0.5);
  opacity: 0;
}

.jj-menu-btn.active .fa-xmark {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* ===== NAV MENU (DStudio Style) ===== */
.jj-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100vh;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 9999;
  overflow-y: auto;
}

.jj-nav-menu.active {
  transform: translateX(0);
}

/* ===== MENU HEADER ===== */
.jj-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 2rem;
}

.jj-menu-header h2 {
  font-size: 1.3rem;
}

.jj-close-btn {
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity 0.3s;
  color: #111;
}

.jj-close-btn:hover {
  opacity: 0.6;
}

/* ===== NAV LINKS ===== */
.jj-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.jj-nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.jj-nav-links a:hover {
  color: #d4af37; /* gold hover */
}

/* ===== DROPDOWN ===== */
.jj-dropdown {
  position: relative;
}

.jj-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-left: 0.8rem;
}

.jj-dropdown.active .jj-dropdown-content {
  display: flex;
}

.jj-dropdown-content a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}

.jj-dropdown-content a:hover {
  opacity: 1;
  color: #fff;
}

/* ===== MENU FOOTER ===== */
.jj-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

.jj-socials {
  display: flex;
  gap: 1.5rem;
}

.jj-socials i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #aaa;
}

.jj-socials i:hover {
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f0f9ff;
  color: #111;
}

.hero {
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: #fff;
  padding: 6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
  max-width: 800px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cna-btn {
  background: #00e0c6;
  color: #f5f5f5;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.cta-btn:hover {
  background: #17a765;
}

/* ===== MOBILE-FIRST ADJUSTMENTS ===== */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}
:root {
  --accent: #6c63ff;
  --accent-dark: #333;
  --text: #222;
  --subtext: #555;
  --bg: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}
.about-modern {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 1.5rem;
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.about-content h4 {
  color: #333;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.about-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: #333;
}

.about-checklist i {
  color: #1dbf73;
}



@media (min-width: 768px) {
  .about-modern {
    flex-direction: row;
    align-items: center;
  }
  .about-image img {
    width: 450px;
    height: 400px;
  }
  .about-content {
    flex: 1;
    padding-left: 2rem;
  }
}

/* WORKFLOW (mobile-first) */
.workflow {
  padding: 2.5rem 1.5rem;
  background: #fff; /* keep consistent with page */
  color: var(--text, #1a1a1a);
  text-align: left;
}

.workflow h2 {
  color: var(--accent-dark, #5548e0);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.workflow-lead {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

/* ordered list styled as vertical stepper */
.workflow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

/* each step: index (left) + body (right) on wide screens, stacked on mobile */
.workflow-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-left: 3px solid rgba(97,79,255,0.06);
  background: linear-gradient(180deg, rgba(246,244,255,0.6), #fff);
  border-radius: 6px;
}

/* circular index */
.step-index {
  flex: 0 0 44px;
  height: 44px;
  min-width: 44px;
  background:#007bff;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(108,99,255,0.12);
}

/* step text */
.step-body h3 {
  margin: 0;
  color: #333;
  font-size: 1.02rem;
  font-weight: 600;
}

.step-body p {
  margin: 0.4rem 0 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 60ch;
}

/* desktop: horizontal stepper with connectors */
@media (min-width: 900px) {
  .workflow-list {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .workflow-step {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-left: none;
    border-top: 3px solid rgba(97,79,255,0.06);
    text-align: center;
  }

  .step-index {
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(108,99,255,0.12);
  }

  /* connector line between steps */
  .workflow-list::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(108,99,255,0.18), rgba(108,99,255,0.06));
    top: calc(50% - 1px);
    z-index: 0;
  }

  .workflow {
    position: relative;
    padding: 3rem 6%;
  }
}

.industries {
  background: #fff;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.industries h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.industries .subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* GRID */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

/* ITEM */
.industry {
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  color: #007bff;
}

.industry i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 18px;
}

.industry h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.industry p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  max-width: 450px;
  margin: 0 auto;
}

/* DESKTOP */
@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .industries h2 {
    font-size: 2rem;
  }
}
.mission-vision {
  background: #fff;
  padding: 4rem 1.5rem;
}

.mission-vision .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-box {
  text-align: left;
}

.mv-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.mv-content h2 {
  font-size: 1.8rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
}

.mv-content p {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 700px;
}

/* For larger screens */
@media (min-width: 768px) {
  .mission-vision .container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.why-jj {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-jj h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: #fff;
  border: 2px solid #dfe3e8;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.3s ease;
  border-radius: 0;
}

.why-card:hover {
  background: #007bff;
  border-color: #007bff;
}

.why-card:hover h3,
.why-card:hover p,
.why-card:hover i {
  color: #fff;
}

.icon {
  font-size: 3.2rem;
  color: #007bff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.why-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.cta-btn {
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid #6c63ff ;
  color:#6c63ff ;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #6c63ff;
  color: #fff;
}


.footer-github {
  background: #0d1117;
  color: #c9d1d9;
  padding: 60px 20px;   /* ← removed the left/right padding */
  font-family: Arial, sans-serif;
  overflow-x:hidden ;
  
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* BRAND SECTION */
.footer-brand {
  max-width: 260px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.newsletter-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-text {
  font-size: 13px;
  color: #8b949e;
  margin-bottom: 20px;
}

.subscribe-btl {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid #8b949e;
  color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
}

/* 2x2 COLUMN LAYOUT */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 40px 0px;
}

.footer-col h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b949e;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #c9d1d9;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

/* BOTTOM SECTION */
.footer-bottom {
  
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #8b949e;
}

.footer-legal a {
  margin-right: 2px;
  font-size: 13px;
  color: #8b949e;
}

.footer-social a {
  margin-left: 20px;
  margin-right:30px;
  font-size: 18px;
  color: #8b949e;
}

.footer-social a:hover {
  color: white;
}


.metrics-section {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.metrics-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d1730;
}

.metrics-section p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.metrics-section #barGraph {
  max-width: 700px;
  margin: 0 auto;
  perspective: 900px;
  transform-style: preserve-3d;
}

/* 3D effect for bars */
.metrics-section .apexcharts-bar-series .apexcharts-series path {
  filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.2));
  transform: skewY(-4deg) rotateX(10deg);
  transform-origin: bottom;
}

/* Responsive */
@media (max-width: 600px) {
  .metrics-section h2 {
    font-size: 1.4rem;
  }

  .metrics-section p {
    font-size: 0.9rem;
  }
}
.jj-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;     /* adjust size */
    width: 100px;
}