
.alert-box {
  background: #fff3cd;
  color: #856404;
  padding: 16px 20px;
  border-left: 5px solid #ffca2c;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  max-width: 700px;
  margin: 20px auto;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.alert-box p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
}
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  font-family: "Inter", sans-serif;
}

.page-context {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

h1 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 span {
  color: #6c63ff;
}


.headline-icons {
  display: flex;
  gap: 0.75rem;
}

.headline-icons i {
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  padding: 0.4rem;
  border: 1px solid #f2f2f2;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.headline-icons i:hover {

  transform: scale(1.1);
}

.headline-icons i:hover {
 
  transform: scale(1.1);
}

.on-this-page {
  border-left: 3px solid #6c63ff;
  padding-left: 1rem;
  margin: 2rem 0;
}

.on-this-page h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c63ff;
  margin-bottom: 0.5rem;
}

.on-this-page ul {
  list-style: none;
  margin: 0px;
  padding: 0;
}

.on-this-page li {
  margin: 2.9rem 0;
  
}

.on-this-page a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.on-this-page a:hover {
  color: #6c63ff;
}

.authors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.author p {
  font-weight: 500;
  color: #333;
}

.case-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.7;
  color: #222;
}

.case-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.case-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.case-content p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.case-content a {
  color: #6c63ff;
  text-decoration: none;
  border-bottom: 1px dotted #6c63ff;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.case-content a:hover {
  color: #5548e0;
  border-color: #5548e0;
}

.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;
  border: 2px solid #00e0c6;
  background: #00e0c6;
  border-radius: 10px;
  color: #222;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.jj-nav-btn:hover {
 
  transform: translateY(-2px);
}
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;
  color: #444;
}
 * {
      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 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!important;
}
.jj-follow-label{
    color:#000!important;
}

.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;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .jj-menu-btn,
  .jj-close-btn {
    display: none;
  }

  .jj-nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    transform: none;
    padding: 0;
  }

  .jj-nav-links {
    flex-direction: row;
    gap: 1.5rem;
  }

  .jj-dropdown-content {
    display: none;
    position: absolute;
    background: #111;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
  }

  .jj-dropdown:hover .jj-dropdown-content {
    display: flex;
  }
}
.jj-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;     /* adjust size */
    width: 100px;
}