.alert {
  display: none; /* hidden by default */
  padding: 12px 16px;
  margin-top: 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.alert.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Success */
.alert.success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}

/* Error */
.alert.error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}
  /* ===== 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;
  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;
  }
}

/* HERO SECTION */
.pricing-hero {
  background: #0f172a;
  color: #fff;
  text-align: left;
  padding: 120px 5% 100px;
  font-family: 'Poppins', sans-serif;
}

.pricing-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.pricing-hero h1 span {
  color: #c5c5c5;
}

.pricing-hero p {
  margin: 15px auto 30px;
  max-width: 580px;
  color: #bbb;
  font-size: 1rem;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items:left; /* para centered bawat card */
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
/* Wrapper para sa card — para di siya dikit sa gilid */
.pricing-wrapper {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Optional: center vertically */
  min-height: 100vh;
  background: #fafafa;
  
}

/* Actual card */
.pricing-card {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  background: #fff;
  padding: 32px 28px;
  width: 320px;
  color: #111;
  align-items: center;
  
}

.plan-name {
  color: #2563eb; /* Blue accent */
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #444;
}

.plan-desc {
  color: #222;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.divider {
  border: none;
  height: 2px;
  background: #2563eb;
  margin: 12px 0 20px;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}


.features-list {
  list-style: none; /* removes the dot/bullet */
  padding: 0;
  margin: 0;
}


.features li {
  font-size: 0.9rem;
  color: #333;
  margin: 6px 0;
}

.credit {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.btn-blue {
  display: block;
  text-align: center;
  background: #2563eb;
  color: #fff;
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-blue:hover {
  background: #1d4ed8;
}
/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
  background: #CFF9EC;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #111;
  text-align:left;
}

.guarantee-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.guarantee-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  text-align:left;
}

.guarantee-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px; /* keeps it neat in center */
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
}

.guarantee-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 32px; /* spacing for check icon */
  text-align: left;
}

.guarantee-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color:#00e0c6 ;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-section {
  background: #fff; /* dark blue background */
  color: #222;
  padding: 3rem 1.5rem;
  border-radius: 0px;
  max-width: 800px;
  margin: 2rem auto;
  text-align:left;
}

.faq-section h2 {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 1px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.faq-question {
  width: 100%;
  text-align:left;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  color: #60a5fa; /* light blue accent */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  text-align:left;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.6rem;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg); /* turns plus into x */
}

/* ===== STAY UPDATED SECTION ===== */
.newsletter {
  background: #fff;
  text-align: left;
  padding: 1rem 1.5rem;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===== FORM ===== */
.newsletter-form {
  display: flex;
  justify-content:left;
  align-items:left;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  width: 100%;
  max-width: 320px;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: #5548e0; /* accent color */
}

/* ===== BUTTON ===== */
.subscribe-btn {
  background: #5548e0;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.subscribe-btn:hover {
  background: #3f37c9;
  transform: translateY(-2px);
}


.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;
}

.privacy-link a {
  text-decoration: none;     /* removes underline */
  color: #3b82f6;            /* change link color (blue but premium) */
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-link a:hover {
  color: #1d4ed8;            /* darker blue on hover */
}
/* IMAGE WRAPPER */
.guarantee-image {
  max-width: 800px;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
}

/* ACTUAL IMAGE */
.guarantee-image img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  border-radius: 16px;

  /* Optional premium effect */
  transition: transform 0.35s ease;
}

.guarantee-image img:hover {
  transform: scale(1.03);
}
.jj-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;     /* adjust size */
    width: 100px;
}